From fbb0f004d9eb1046a2bba7c85f21724c4bc9d8c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Herculano?= <228650+andresilveirah@users.noreply.github.com> Date: Tue, 5 May 2026 16:53:59 +0200 Subject: [PATCH 01/13] Update SharedNativeToCoreAdapters.swift --- .../SourcePointClient/Adapters/SharedNativeToCoreAdapters.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConsentViewController/Classes/SourcePointClient/Adapters/SharedNativeToCoreAdapters.swift b/ConsentViewController/Classes/SourcePointClient/Adapters/SharedNativeToCoreAdapters.swift index 307e54aee..198123495 100644 --- a/ConsentViewController/Classes/SourcePointClient/Adapters/SharedNativeToCoreAdapters.swift +++ b/ConsentViewController/Classes/SourcePointClient/Adapters/SharedNativeToCoreAdapters.swift @@ -32,7 +32,7 @@ extension KotlinFloat { extension SPError { func toCore() -> CoreSPError { return CoreSPError( - code: String(code), + code: spCode, description: description, cause: nil, campaignType: campaignType.toCore() From e1f419c60a5c3293911ee8f1155bf2872e1cabfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Herculano?= <228650+andresilveirah@users.noreply.github.com> Date: Tue, 5 May 2026 17:05:43 +0200 Subject: [PATCH 02/13] Update swift.yml --- .github/workflows/swift.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index b34577fdb..22f576c7d 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -19,9 +19,9 @@ jobs: runs-on: macos-15 steps: - uses: actions/checkout@v4 - - run: sudo xcode-select -s /Applications/Xcode_16.3.app + - run: sudo xcode-select -s /Applications/Xcode_26.3.app - name: Building Swift Package - run: xcodebuild clean build -scheme SPMBuild -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.4' + run: xcodebuild clean build -scheme SPMBuild -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 17,OS=26.2' - uses: actions/upload-artifact@v4 if: failure() name: Upload Swift Package build results @@ -31,16 +31,16 @@ jobs: runs-on: macos-15 steps: - uses: actions/checkout@v4 - - run: sudo xcode-select -s /Applications/Xcode_16.3.app + - run: sudo xcode-select -s /Applications/Xcode_26.3.app - name: Building Carthage Project run: cd ./SPCarthageTest && ./build.sh ObjC-ExampleApp-tests: runs-on: macos-15 steps: - uses: actions/checkout@v4 - - run: sudo xcode-select -s /Applications/Xcode_16.3.app - - name: ObjC-ExampleApp testing -> iPhone 16 (iOS 18.4) - run: xcodebuild test -scheme ObjC-ExampleApp -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.4' + - run: sudo xcode-select -s /Applications/Xcode_26.3.app + - name: ObjC-ExampleApp testing -> iPhone 17 (iOS 26.2) + run: xcodebuild test -scheme ObjC-ExampleApp -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 17,OS=26.2' - uses: actions/upload-artifact@v4 if: failure() name: Upload ObjCExampleApp tests results @@ -50,9 +50,9 @@ jobs: runs-on: macos-15 steps: - uses: actions/checkout@v4 - - run: sudo xcode-select -s /Applications/Xcode_16.3.app - - name: ConsentViewController testing -> iPhone 16 (iOS 18.4) - run: xcodebuild test -scheme ConsentViewController_Example -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.4' + - run: sudo xcode-select -s /Applications/Xcode_26.3.app + - name: ConsentViewController testing -> iPhone 17 (iOS 26.2) + run: xcodebuild test -scheme ConsentViewController_Example -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 17,OS=26.2' - uses: actions/upload-artifact@v4 if: failure() name: Upload ConsentViewController tests results @@ -62,9 +62,9 @@ jobs: runs-on: macos-15 steps: - uses: actions/checkout@v4 - - run: sudo xcode-select -s /Applications/Xcode_16.3.app - - name: ConsentViewController testing -> iPhone 16 (iOS 18.4) - run: xcodebuild test -scheme AuthExample -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.4' + - run: sudo xcode-select -s /Applications/Xcode_26.3.app + - name: ConsentViewController testing -> iPhone 17 (iOS 26.2) + run: xcodebuild test -scheme AuthExample -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 17,OS=26.2' - uses: actions/upload-artifact@v4 if: failure() name: Upload ConsentViewController tests results @@ -74,9 +74,9 @@ jobs: runs-on: macos-15 steps: - uses: actions/checkout@v4 - - run: sudo xcode-select -s /Applications/Xcode_16.3.app - - name: ConsentViewController testing -> Apple TV (tvOS 18.4) - run: xcodebuild test -scheme TVOSExampleApp -workspace ConsentViewController.xcworkspace -destination 'platform=tvOS Simulator,name=Apple TV,OS=18.4' + - run: sudo xcode-select -s /Applications/Xcode_26.3.app + - name: ConsentViewController testing -> Apple TV (tvOS 26.2) + run: xcodebuild test -scheme TVOSExampleApp -workspace ConsentViewController.xcworkspace -destination 'platform=tvOS Simulator,name=Apple TV,OS=26.2' - uses: actions/upload-artifact@v4 if: failure() name: Upload TVOSExampleApp tests results From d531236babbde1013ba90a7b14aca2f9a8446ad7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Herculano?= <228650+andresilveirah@users.noreply.github.com> Date: Tue, 5 May 2026 17:15:48 +0200 Subject: [PATCH 03/13] update GH runner for test actions --- .github/workflows/swift.yml | 44 ++++++++++++++++++------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 22f576c7d..080955a2d 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -10,73 +10,73 @@ defaults: working-directory: Example jobs: lint: - runs-on: macos-15 + runs-on: macos-26 steps: - uses: actions/checkout@v4 - run: brew install swiftlint - run: swiftlint lint BuildSwiftPackage: - runs-on: macos-15 + runs-on: macos-26 steps: - uses: actions/checkout@v4 - - run: sudo xcode-select -s /Applications/Xcode_26.3.app + - run: sudo xcode-select -s /Applications/Xcode_26.4.1.app - name: Building Swift Package - run: xcodebuild clean build -scheme SPMBuild -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 17,OS=26.2' + run: xcodebuild clean build -scheme SPMBuild -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 17,OS=26.4.1' - uses: actions/upload-artifact@v4 if: failure() name: Upload Swift Package build results with: path: /Users/runner/Library/Developer/Xcode/DerivedData/**/*.xcresult BuildCarthageProject: - runs-on: macos-15 + runs-on: macos-26 steps: - uses: actions/checkout@v4 - - run: sudo xcode-select -s /Applications/Xcode_26.3.app + - run: sudo xcode-select -s /Applications/Xcode_26.4.1.app - name: Building Carthage Project run: cd ./SPCarthageTest && ./build.sh ObjC-ExampleApp-tests: - runs-on: macos-15 + runs-on: macos-26 steps: - uses: actions/checkout@v4 - - run: sudo xcode-select -s /Applications/Xcode_26.3.app - - name: ObjC-ExampleApp testing -> iPhone 17 (iOS 26.2) - run: xcodebuild test -scheme ObjC-ExampleApp -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 17,OS=26.2' + - run: sudo xcode-select -s /Applications/Xcode_26.4.1.app + - name: ObjC-ExampleApp testing -> iPhone 17 (iOS 26.4.1) + run: xcodebuild test -scheme ObjC-ExampleApp -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 17,OS=26.4.1' - uses: actions/upload-artifact@v4 if: failure() name: Upload ObjCExampleApp tests results with: path: /Users/runner/Library/Developer/Xcode/DerivedData/**/*.xcresult ConsentViewController: - runs-on: macos-15 + runs-on: macos-26 steps: - uses: actions/checkout@v4 - - run: sudo xcode-select -s /Applications/Xcode_26.3.app - - name: ConsentViewController testing -> iPhone 17 (iOS 26.2) - run: xcodebuild test -scheme ConsentViewController_Example -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 17,OS=26.2' + - run: sudo xcode-select -s /Applications/Xcode_26.4.1.app + - name: ConsentViewController testing -> iPhone 17 (iOS 26.4.1) + run: xcodebuild test -scheme ConsentViewController_Example -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 17,OS=26.4.1' - uses: actions/upload-artifact@v4 if: failure() name: Upload ConsentViewController tests results with: path: /Users/runner/Library/Developer/Xcode/DerivedData/**/*.xcresult AuthExample-tests: - runs-on: macos-15 + runs-on: macos-26 steps: - uses: actions/checkout@v4 - - run: sudo xcode-select -s /Applications/Xcode_26.3.app - - name: ConsentViewController testing -> iPhone 17 (iOS 26.2) - run: xcodebuild test -scheme AuthExample -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 17,OS=26.2' + - run: sudo xcode-select -s /Applications/Xcode_26.4.1.app + - name: ConsentViewController testing -> iPhone 17 (iOS 26.4.1) + run: xcodebuild test -scheme AuthExample -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 17,OS=26.4.1' - uses: actions/upload-artifact@v4 if: failure() name: Upload ConsentViewController tests results with: path: /Users/runner/Library/Developer/Xcode/DerivedData/**/*.xcresult TVOSExampleApp: - runs-on: macos-15 + runs-on: macos-26 steps: - uses: actions/checkout@v4 - - run: sudo xcode-select -s /Applications/Xcode_26.3.app - - name: ConsentViewController testing -> Apple TV (tvOS 26.2) - run: xcodebuild test -scheme TVOSExampleApp -workspace ConsentViewController.xcworkspace -destination 'platform=tvOS Simulator,name=Apple TV,OS=26.2' + - run: sudo xcode-select -s /Applications/Xcode_26.4.1.app + - name: ConsentViewController testing -> Apple TV (tvOS 26.4.1) + run: xcodebuild test -scheme TVOSExampleApp -workspace ConsentViewController.xcworkspace -destination 'platform=tvOS Simulator,name=Apple TV,OS=26.4.1' - uses: actions/upload-artifact@v4 if: failure() name: Upload TVOSExampleApp tests results From 86a6cf4e7c7c4d3fe4238541d0492f21d934fbbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Herculano?= <228650+andresilveirah@users.noreply.github.com> Date: Wed, 6 May 2026 10:43:19 +0200 Subject: [PATCH 04/13] Update swift.yml --- .github/workflows/swift.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 080955a2d..00ffbfb1e 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -76,7 +76,7 @@ jobs: - uses: actions/checkout@v4 - run: sudo xcode-select -s /Applications/Xcode_26.4.1.app - name: ConsentViewController testing -> Apple TV (tvOS 26.4.1) - run: xcodebuild test -scheme TVOSExampleApp -workspace ConsentViewController.xcworkspace -destination 'platform=tvOS Simulator,name=Apple TV,OS=26.4.1' + run: xcodebuild test -scheme TVOSExampleApp -workspace ConsentViewController.xcworkspace -destination 'platform=tvOS Simulator,name=Apple TV,OS=26.4' - uses: actions/upload-artifact@v4 if: failure() name: Upload TVOSExampleApp tests results From 4ac62bec4ff16e6251c5cd9e5994a6c1d73cf69a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Herculano?= <228650+andresilveirah@users.noreply.github.com> Date: Wed, 6 May 2026 11:25:31 +0200 Subject: [PATCH 05/13] update gh actions fix objc sample app build --- .github/workflows/swift.yml | 9 ++- .../project.pbxproj | 66 +++++++++++++++++++ Example/ObjC-ExampleApp/Empty.swift | 9 +++ 3 files changed, 83 insertions(+), 1 deletion(-) create mode 100644 Example/ObjC-ExampleApp/Empty.swift diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 00ffbfb1e..d515a81cd 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -36,9 +36,16 @@ jobs: run: cd ./SPCarthageTest && ./build.sh ObjC-ExampleApp-tests: runs-on: macos-26 + env: + TOOLCHAINS: com.apple.dt.toolchain.XcodeDefault steps: - uses: actions/checkout@v4 - - run: sudo xcode-select -s /Applications/Xcode_26.4.1.app + - run: | + sudo xcode-select -s /Applications/Xcode_26.4.1.app + xcodebuild -version + xcrun --find swiftc + xcrun --show-sdk-path --sdk iphonesimulator + xcrun simctl list runtimes - name: ObjC-ExampleApp testing -> iPhone 17 (iOS 26.4.1) run: xcodebuild test -scheme ObjC-ExampleApp -workspace ConsentViewController.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 17,OS=26.4.1' - uses: actions/upload-artifact@v4 diff --git a/Example/ConsentViewController.xcodeproj/project.pbxproj b/Example/ConsentViewController.xcodeproj/project.pbxproj index 880c2d0f1..b5213a6a8 100644 --- a/Example/ConsentViewController.xcodeproj/project.pbxproj +++ b/Example/ConsentViewController.xcodeproj/project.pbxproj @@ -636,6 +636,7 @@ 820B08B12B6021A6004E77E8 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 820EF1782A0D28F9009D9941 /* After.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = After.swift; path = Helpers/After.swift; sourceTree = ""; }; 820EF17A2A0D296D009D9941 /* MessageUIDelegateMock.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageUIDelegateMock.swift; sourceTree = ""; }; + 8212000D2FAB4003001E0006 /* Empty.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Empty.swift; sourceTree = ""; }; 8214B277249CC13B00167BFE /* SPGDPRExampleAppUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SPGDPRExampleAppUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 8214B279249CC13B00167BFE /* SPGDPRExampleAppUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SPGDPRExampleAppUITests.swift; sourceTree = ""; }; 8214B27B249CC13B00167BFE /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; @@ -1545,6 +1546,7 @@ 6D8046EB25D1A87E0005002B /* ObjC-ExampleApp */ = { isa = PBXGroup; children = ( + 8212000D2FAB4003001E0006 /* Empty.swift */, 6D8046EC25D1A87E0005002B /* AppDelegate.h */, 6D8046ED25D1A87E0005002B /* AppDelegate.m */, 6D8046EF25D1A87E0005002B /* SceneDelegate.h */, @@ -2898,10 +2900,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp-resources.sh\"\n"; @@ -2937,10 +2943,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-resources.sh\"\n"; @@ -2954,10 +2964,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-resources.sh\"\n"; @@ -2971,10 +2985,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources.sh\"\n"; @@ -2988,10 +3006,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo-resources.sh\"\n"; @@ -3005,10 +3027,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-resources.sh\"\n"; @@ -3044,10 +3070,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-resources.sh\"\n"; @@ -3061,10 +3091,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-TVOSExampleAppUITests/Pods-TVOSExampleAppUITests-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-TVOSExampleAppUITests/Pods-TVOSExampleAppUITests-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-TVOSExampleAppUITests/Pods-TVOSExampleAppUITests-resources.sh\"\n"; @@ -3100,10 +3134,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example-resources.sh\"\n"; @@ -3161,10 +3199,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-resources.sh\"\n"; @@ -3275,10 +3317,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources.sh\"\n"; @@ -3402,10 +3448,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample-resources.sh\"\n"; @@ -3507,10 +3557,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-resources.sh\"\n"; @@ -3524,10 +3578,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-NativeMessageExample/Pods-Examples-NativeMessageExample-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-NativeMessageExample/Pods-Examples-NativeMessageExample-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Examples-NativeMessageExample/Pods-Examples-NativeMessageExample-resources.sh\"\n"; @@ -3541,10 +3599,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp-resources.sh\"\n"; @@ -3558,10 +3620,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-resources.sh\"\n"; diff --git a/Example/ObjC-ExampleApp/Empty.swift b/Example/ObjC-ExampleApp/Empty.swift new file mode 100644 index 000000000..fe4544013 --- /dev/null +++ b/Example/ObjC-ExampleApp/Empty.swift @@ -0,0 +1,9 @@ +// +// Empty.swift +// ConsentViewController +// +// Created by Andre Herculano on 06/05/2026. +// Copyright © 2026 CocoaPods. All rights reserved. + +import Foundation + From a2cd89b7880c85fcdedaa0d7b2433efc720bd679 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Herculano?= <228650+andresilveirah@users.noreply.github.com> Date: Mon, 11 May 2026 13:34:37 +0200 Subject: [PATCH 06/13] update SPDeviceSpec for iOS 26 --- Example/ConsentViewController_ExampleTests/SPDeviceSpec.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Example/ConsentViewController_ExampleTests/SPDeviceSpec.swift b/Example/ConsentViewController_ExampleTests/SPDeviceSpec.swift index 3396c5fef..1409e12c8 100644 --- a/Example/ConsentViewController_ExampleTests/SPDeviceSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPDeviceSpec.swift @@ -16,7 +16,9 @@ class SPDeviceSpec: QuickSpec { describe("osVersion") { it("should contain the major version in its return") { let version = SPDevice.standard.osVersion - if #available(iOS 18, *) { + if #available(iOS 26, *) { + expect(version).to(contain("26.")) + } else if #available(iOS 18, *) { expect(version).to(contain("18.")) } else if #available(iOS 17, *) { expect(version).to(contain("17.")) From b3655d9dfd7a1729a0e1812078073564cf7cb352 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Herculano?= <228650+andresilveirah@users.noreply.github.com> Date: Mon, 11 May 2026 14:42:05 +0200 Subject: [PATCH 07/13] update tvOS and Quick/Nimble --- .../CustomMatchers.swift | 14 +- .../TVOSExampleAppUITests/NativePMApp.swift | 28 -- .../NativePMUITests.swift | 316 +++++++++--------- 3 files changed, 164 insertions(+), 194 deletions(-) diff --git a/Example/TVOSExampleAppUITests/CustomMatchers.swift b/Example/TVOSExampleAppUITests/CustomMatchers.swift index 45c0792b4..7a85fc5ea 100644 --- a/Example/TVOSExampleAppUITests/CustomMatchers.swift +++ b/Example/TVOSExampleAppUITests/CustomMatchers.swift @@ -10,7 +10,7 @@ import Nimble import Quick import XCTest -public typealias Predicate = Nimble.Predicate +public typealias Predicate = Nimble.Matcher extension TimeInterval { init(dispatchTimeInterval: DispatchTimeInterval) { @@ -39,7 +39,7 @@ extension TimeInterval { public func containText(_ text: String) -> Predicate { Predicate.simple("contain text") { actualExpression in guard let actual = try? actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.label.contains(text)) + return MatcherStatus(bool: actual.label.contains(text)) } } @@ -48,8 +48,7 @@ public func containText(_ text: String) -> Predicate { public func showUp() -> Predicate { Predicate.simple("show up") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.waitForExistence(timeout: TimeInterval(dispatchTimeInterval: Nimble.AsyncDefaults.timeout) - )) + return MatcherStatus(bool: actual.waitForExistence(timeout: Nimble.PollingDefaults.timeout.timeInterval)) } } @@ -58,7 +57,7 @@ public func showUp() -> Predicate { public func showUp(in timeout: TimeInterval) -> Predicate { Predicate.simple("show up") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.waitForExistence(timeout: timeout)) + return MatcherStatus(bool: actual.waitForExistence(timeout: timeout)) } } @@ -68,8 +67,7 @@ public func disappear() -> Predicate { Predicate.simple("disappear") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } QuickSpec.current.expectation(for: NSPredicate(format: "exists == FALSE"), evaluatedWith: actual, handler: nil) - QuickSpec.current.waitForExpectations(timeout: TimeInterval(dispatchTimeInterval: Nimble.AsyncDefaults.timeout) - ) - return PredicateStatus(bool: !actual.exists) + QuickSpec.current.waitForExpectations(timeout: Nimble.PollingDefaults.timeout.timeInterval) + return MatcherStatus(bool: !actual.exists) } } diff --git a/Example/TVOSExampleAppUITests/NativePMApp.swift b/Example/TVOSExampleAppUITests/NativePMApp.swift index b7e3f82dc..4c18c4f3c 100644 --- a/Example/TVOSExampleAppUITests/NativePMApp.swift +++ b/Example/TVOSExampleAppUITests/NativePMApp.swift @@ -72,18 +72,6 @@ class NativePMApp: XCUIApplication { let gdprMessage = GDPRMessage() let ccpaMessage = CCPAMessage() - var doNotSellMyPersonalInformation: XCUIElement { - tables.cells.containing(.staticText, identifier: "Do Not Sell My Personal Information").firstMatch - } - - var category: XCUIElement { - tables.cells.containing(.staticText, identifier: "Purpose 1").firstMatch - } - - var category2: XCUIElement { - tables.cells.containing(.staticText, identifier: "Purpose 2").firstMatch - } - var storeAndAccessInformation: XCUIElement { tables.cells.containing(.staticText, identifier: "Store and/or access information on a device").firstMatch } @@ -92,22 +80,6 @@ class NativePMApp: XCUIApplication { tables.cells.containing(.staticText, identifier: "Create profiles for personalised advertising").firstMatch } - var justpremiumBV: XCUIElement { - tables.cells.containing(.staticText, identifier: "Justpremium BV").firstMatch - } - - var loopMe: XCUIElement { - tables.cells.containing(.staticText, identifier: "LoopMe Limited").firstMatch - } - - var googleCharts: XCUIElement { - tables.cells.containing(.staticText, identifier: "Google Charts").firstMatch - } - - var gameAccounts: XCUIElement { - tables.cells.containing(.staticText, identifier: "Game Accounts").firstMatch - } - var acceptButton: XCUIElement { buttons["Accept"] } diff --git a/Example/TVOSExampleAppUITests/NativePMUITests.swift b/Example/TVOSExampleAppUITests/NativePMUITests.swift index 95779fa01..78f24d500 100644 --- a/Example/TVOSExampleAppUITests/NativePMUITests.swift +++ b/Example/TVOSExampleAppUITests/NativePMUITests.swift @@ -14,7 +14,7 @@ import Quick import XCTest extension QuickSpec { - var remote: XCUIRemote { XCUIRemote.shared } + static var remote: XCUIRemote { XCUIRemote.shared } } extension XCUIElement { @@ -22,238 +22,238 @@ extension XCUIElement { } class NativePMUITests: QuickSpec { - var app: NativePMApp! - var timeout = 20 - var gdprCategoriesCount = 12 - var ccpaCategoriesCount = 3 - var gdprCategoriePlusSpecialFeatures = 12 - var gdprDefaultOnCategories = 3 + static var app: NativePMApp! + static var timeout = 20 + static var gdprCategoriesCount = 12 + static var ccpaCategoriesCount = 3 + static var gdprCategoriePlusSpecialFeatures = 12 + static var gdprDefaultOnCategories = 3 + static var gdprVendors = 4 override func setUp() { continueAfterFailure = false } - func waitFor(_ element: XCUIElement) { - _ = element.waitForExistence(timeout: TimeInterval(timeout)) + static func waitFor(_ element: XCUIElement) { + _ = element.waitForExistence(timeout: TimeInterval(NativePMUITests.timeout)) } - func checkForAllCategories(on element: XCUIElement, shouldBe onOrOf: String, totalCategories: Int) { + static func checkForAllCategories(on element: XCUIElement, shouldBe onOrOf: String, totalCategories: Int) { waitFor(element.staticTexts["Manage Preferences"].firstMatch) expect(element.tables.cells.staticTexts.containing(NSPredicate(format: "label MATCHES[c] %@", onOrOf)).count).toEventually(equal(totalCategories)) } - func checkForAllVendors(on element: XCUIElement, shouldBe onOrOf: String, totalVendors: Int) { + static func checkForAllVendors(on element: XCUIElement, shouldBe onOrOf: String, totalVendors: Int) { waitFor(element.staticTexts["Our Partners"].firstMatch) expect(element.tables.cells.staticTexts.containing(NSPredicate(format: "label MATCHES[c] %@", onOrOf)).count).toEventually(equal(totalVendors)) } - override func spec() { + override class func spec() { beforeSuite { - self.continueAfterFailure = false - self.app = NativePMApp() - Nimble.AsyncDefaults.timeout = .seconds(self.timeout) - Nimble.AsyncDefaults.pollInterval = .milliseconds(500) + app = NativePMApp() + Nimble.PollingDefaults.timeout = .seconds(timeout) + Nimble.PollingDefaults.pollInterval = .milliseconds(500) } afterSuite { - Nimble.AsyncDefaults.timeout = .seconds(1) - Nimble.AsyncDefaults.pollInterval = .milliseconds(100) + Nimble.PollingDefaults.timeout = .seconds(1) + Nimble.PollingDefaults.pollInterval = .milliseconds(100) } it("Accept all through CCPA & GDPR Privacy Manager") { - self.app.relaunch(clean: true) + app.relaunch(clean: true) // Accept all GDPR Message - self.waitFor(self.app.gdprMessage) - self.app.gdprMessage.acceptAllButton.remotePress() + waitFor(app.gdprMessage) + app.gdprMessage.acceptAllButton.remotePress() // Accept All CCPA Message - self.waitFor(self.app.ccpaMessage) - self.app.ccpaMessage.acceptAllButton.remotePress() + waitFor(app.ccpaMessage) + app.ccpaMessage.acceptAllButton.remotePress() // Wait for the messages to close and PM buttons to show - expect(self.app.sdkStatusLabel).toEventually(containText("(SDK done)")) + expect(app.sdkStatusLabel).toEventually(containText("(SDK done)")) - self.app.relaunch() + app.relaunch() // Assert sure no message shows up - expect(self.app.sdkStatusLabel).toEventually(containText("(SDK done)")) + expect(app.sdkStatusLabel).toEventually(containText("(SDK done)")) // Assert all GDPR categories are on - self.app.gdprPrivacyManagerButton.remotePress() - self.waitFor(self.app.gdprMessage) - self.app.gdprMessage.categoriesDetailsButton.remotePress() - self.checkForAllCategories(on: self.app.gdprMessage, shouldBe: "On", totalCategories: self.gdprCategoriesCount) + app.gdprPrivacyManagerButton.remotePress() + waitFor(app.gdprMessage) + app.gdprMessage.categoriesDetailsButton.remotePress() + checkForAllCategories(on: app.gdprMessage, shouldBe: "On", totalCategories: gdprCategoriesCount) - self.app.relaunch() + app.relaunch() // Assert all CCPA categories are on - self.app.ccpaPrivacyManagerButton.remotePress() - self.waitFor(self.app.ccpaMessage) - self.app.ccpaMessage.categoriesDetailsButton.remotePress() - self.checkForAllCategories(on: self.app.ccpaMessage, shouldBe: "On", totalCategories: self.ccpaCategoriesCount) + app.ccpaPrivacyManagerButton.remotePress() + waitFor(app.ccpaMessage) + app.ccpaMessage.categoriesDetailsButton.remotePress() + checkForAllCategories(on: app.ccpaMessage, shouldBe: "On", totalCategories: ccpaCategoriesCount) } it("Reject all through CCPA & GDPR Privacy Manager") { - self.app.relaunch(clean: true) + app.relaunch(clean: true) // Accept all GDPR Message - self.waitFor(self.app.gdprMessage) - self.app.gdprMessage.rejectAllButton.remotePress() + waitFor(app.gdprMessage) + app.gdprMessage.rejectAllButton.remotePress() // Accept All CCPA Message - self.waitFor(self.app.ccpaMessage) - self.app.ccpaMessage.rejectAllButton.remotePress() + waitFor(app.ccpaMessage) + app.ccpaMessage.rejectAllButton.remotePress() // Wait for the messages to close and PM buttons to show - expect(self.app.sdkStatusLabel).toEventually(containText("(SDK done)")) + expect(app.sdkStatusLabel).toEventually(containText("(SDK done)")) - self.app.relaunch() + app.relaunch() // Assert sure no message shows up - expect(self.app.sdkStatusLabel).toEventually(containText("(SDK done)")) + expect(app.sdkStatusLabel).toEventually(containText("(SDK done)")) // Assert all GDPR categories are on - self.app.gdprPrivacyManagerButton.remotePress() - self.waitFor(self.app.gdprMessage) - self.app.gdprMessage.categoriesDetailsButton.remotePress() - self.checkForAllCategories(on: self.app.gdprMessage, shouldBe: "Off", totalCategories: self.gdprCategoriePlusSpecialFeatures) + app.gdprPrivacyManagerButton.remotePress() + waitFor(app.gdprMessage) + app.gdprMessage.categoriesDetailsButton.remotePress() + checkForAllCategories(on: app.gdprMessage, shouldBe: "Off", totalCategories: gdprCategoriePlusSpecialFeatures) - self.app.relaunch() + app.relaunch() // Assert all CCPA categories are on - self.app.ccpaPrivacyManagerButton.remotePress() - self.waitFor(self.app.ccpaMessage) - self.app.ccpaMessage.categoriesDetailsButton.remotePress() - self.checkForAllCategories(on: self.app.ccpaMessage, shouldBe: "Off", totalCategories: self.ccpaCategoriesCount) + app.ccpaPrivacyManagerButton.remotePress() + waitFor(app.ccpaMessage) + app.ccpaMessage.categoriesDetailsButton.remotePress() + checkForAllCategories(on: app.ccpaMessage, shouldBe: "Off", totalCategories: ccpaCategoriesCount) } it("Do not sell button toggles on/off when rejecting / accepting all") { - self.app.relaunch(clean: true, gdpr: false, ccpa: true) - - expect(self.app.ccpaMessage).toEventually(showUp()) - self.app.remote.press(.right) - expect(self.app.ccpaMessage.doNotSellMyInfoButton.staticTexts["OFF"]).toEventually(showUp()) - self.app.ccpaMessage.doNotSellMyInfoButton.remotePress(extraMove: .right) - expect(self.app.ccpaMessage.doNotSellMyInfoButton.staticTexts["ON"]).toEventually(showUp()) - self.app.remote.press(.left) - self.app.ccpaMessage.saveAndExitButton.remotePress() - expect(self.app.sdkStatusLabel).toEventually(containText("(SDK done)")) - - self.app.relaunch(clean: false, gdpr: false, ccpa: true) - - self.app.ccpaPrivacyManagerButton.remotePress() - expect(self.app.ccpaMessage).toEventually(showUp()) - expect(self.app.ccpaMessage.doNotSellMyInfoButton.staticTexts["ON"]).toEventually(showUp()) - self.app.remote.press(.right) - self.app.ccpaMessage.doNotSellMyInfoButton.remotePress(extraMove: .right) - expect(self.app.ccpaMessage.doNotSellMyInfoButton.staticTexts["OFF"]).toEventually(showUp()) - self.app.remote.press(.left) - self.app.ccpaMessage.saveAndExitButton.remotePress() - expect(self.app.sdkStatusLabel).toEventually(containText("(SDK done)")) - - self.app.relaunch(clean: false, gdpr: false, ccpa: true) - - self.app.ccpaPrivacyManagerButton.remotePress() - expect(self.app.ccpaMessage.doNotSellMyInfoButton.staticTexts["OFF"]).toEventually(showUp()) + app.relaunch(clean: true, gdpr: false, ccpa: true) + + expect(app.ccpaMessage).toEventually(showUp()) + app.remote.press(.right) + expect(app.ccpaMessage.doNotSellMyInfoButton.staticTexts["OFF"]).toEventually(showUp()) + app.ccpaMessage.doNotSellMyInfoButton.remotePress(extraMove: .right) + expect(app.ccpaMessage.doNotSellMyInfoButton.staticTexts["ON"]).toEventually(showUp()) + app.remote.press(.left) + app.ccpaMessage.saveAndExitButton.remotePress() + expect(app.sdkStatusLabel).toEventually(containText("(SDK done)")) + + app.relaunch(clean: false, gdpr: false, ccpa: true) + + app.ccpaPrivacyManagerButton.remotePress() + expect(app.ccpaMessage).toEventually(showUp()) + expect(app.ccpaMessage.doNotSellMyInfoButton.staticTexts["ON"]).toEventually(showUp()) + app.remote.press(.right) + app.ccpaMessage.doNotSellMyInfoButton.remotePress(extraMove: .right) + expect(app.ccpaMessage.doNotSellMyInfoButton.staticTexts["OFF"]).toEventually(showUp()) + app.remote.press(.left) + app.ccpaMessage.saveAndExitButton.remotePress() + expect(app.sdkStatusLabel).toEventually(containText("(SDK done)")) + + app.relaunch(clean: false, gdpr: false, ccpa: true) + + app.ccpaPrivacyManagerButton.remotePress() + expect(app.ccpaMessage.doNotSellMyInfoButton.staticTexts["OFF"]).toEventually(showUp()) } it("Handles message translation via 1st layer") { - self.app.relaunch(clean: true, language: .Spanish) + app.relaunch(clean: true, language: .Spanish) // Message content is translated - expect(self.app.gdprMessage.headerTitle).toEventually(containText("Mensage GDPR")) + expect(app.gdprMessage.headerTitle).toEventually(containText("Mensage GDPR")) // as well as categories - expect(self.app.gdprMessage.categoriesList.staticTexts["Crear perfiles para publicidad personalizada"].exists).toEventually(beTrue()) + expect(app.gdprMessage.categoriesList.staticTexts["Crear perfiles para publicidad personalizada"].exists).toEventually(beTrue()) } it("Handles message translation when loading PM via function") { - self.app.relaunch(clean: true, gdpr: true, ccpa: false, language: .Spanish) + app.relaunch(clean: true, gdpr: true, ccpa: false, language: .Spanish) - self.waitFor(self.app.gdprMessage) - self.remote.press(.select) + waitFor(app.gdprMessage) + remote.press(.select) - self.app.gdprPrivacyManagerButton.remotePress() - self.waitFor(self.app.gdprMessage) + app.gdprPrivacyManagerButton.remotePress() + waitFor(app.gdprMessage) - expect(self.app.gdprMessage.headerTitle).toEventually(containText("Mensage GDPR")) - expect(self.app.gdprMessage.categoriesList.staticTexts["Crear perfiles para publicidad personalizada"].exists).toEventually(beTrue()) + expect(app.gdprMessage.headerTitle).toEventually(containText("Mensage GDPR")) + expect(app.gdprMessage.categoriesList.staticTexts["Crear perfiles para publicidad personalizada"].exists).toEventually(beTrue()) } it("Manage Preferences and Our Vendors through GDPR Privacy Manager with few consent purposes ON") { - self.app.relaunch(clean: true, gdpr: true, ccpa: false) - self.app.gdprPrivacyManagerButton.remotePress() - self.app.acceptButton.expectToHaveFocus() - - self.app.ourPartnersButton.remotePress() - self.checkForAllVendors(on: self.app.gdprMessage, shouldBe: "On", totalVendors: 0) - self.app.homeButton.remotePress() - - self.app.managePreferencesButton.remotePress() - expect(self.app.homeButton).toEventually(showUp()) - self.app.pressCategory(element: self.app.storeAndAccessInformation) - self.app.pressOnButtonInCategoryDetails() - self.app.backToHomeButton() - self.app.homeButton.remotePress() - self.app.ourPartnersButton.remotePress() - self.checkForAllVendors(on: self.app.gdprMessage, shouldBe: "On", totalVendors: 4) - self.app.homeButton.remotePress() - - self.app.managePreferencesButton.remotePress() - expect(self.app.homeButton).toEventually(showUp()) - self.app.pressCategory(element: self.app.createPersonalisedAdsProfile) - self.app.pressOnButtonInCategoryDetails() - self.app.backToHomeButton() - self.app.homeButton.remotePress() - self.app.ourPartnersButton.remotePress() - self.checkForAllVendors(on: self.app.gdprMessage, shouldBe: "On", totalVendors: 5) - self.remote.press(.down) - self.remote.press(.down) - self.app.saveAndExitInternalButton.remotePress() - - self.app.gdprPrivacyManagerButton.remotePress() - self.app.acceptButton.expectToHaveFocus() - self.app.managePreferencesButton.remotePress() - self.checkForAllCategories(on: self.app.gdprMessage, shouldBe: "On", totalCategories: 2) - self.app.homeButton.remotePress() - self.app.ourPartnersButton.remotePress() - self.checkForAllVendors(on: self.app.gdprMessage, shouldBe: "On", totalVendors: 5) + app.relaunch(clean: true, gdpr: true, ccpa: false) + app.gdprPrivacyManagerButton.remotePress() + app.acceptButton.expectToHaveFocus() + + app.ourPartnersButton.remotePress() + checkForAllVendors(on: app.gdprMessage, shouldBe: "On", totalVendors: 0) + app.homeButton.remotePress() + + app.managePreferencesButton.remotePress() + expect(app.homeButton).toEventually(showUp()) + app.pressCategory(element: app.storeAndAccessInformation) + app.pressOnButtonInCategoryDetails() + app.backToHomeButton() + app.homeButton.remotePress() + app.ourPartnersButton.remotePress() + checkForAllVendors(on: app.gdprMessage, shouldBe: "On", totalVendors: 3) + app.homeButton.remotePress() + + app.managePreferencesButton.remotePress() + expect(app.homeButton).toEventually(showUp()) + app.pressCategory(element: app.createPersonalisedAdsProfile) + app.pressOnButtonInCategoryDetails() + app.backToHomeButton() + app.homeButton.remotePress() + app.ourPartnersButton.remotePress() + checkForAllVendors(on: app.gdprMessage, shouldBe: "On", totalVendors: 3) + remote.press(.down) + remote.press(.down) + app.saveAndExitInternalButton.remotePress() + + app.gdprPrivacyManagerButton.remotePress() + app.acceptButton.expectToHaveFocus() + app.managePreferencesButton.remotePress() + checkForAllCategories(on: app.gdprMessage, shouldBe: "On", totalCategories: 2) + app.homeButton.remotePress() + app.ourPartnersButton.remotePress() + checkForAllVendors(on: app.gdprMessage, shouldBe: "On", totalVendors: 4) } it("Check default toggles status on Manage Preferences and Our Vendors through GDPR Privacy Manager") { - self.app.relaunch(clean: true, gdpr: true, ccpa: false) - self.app.acceptButton.expectToHaveFocus() - self.app.managePreferencesButton.remotePress() - self.checkForAllCategories(on: self.app.gdprMessage, shouldBe: "On", totalCategories: 0) - self.remote.press(.right) - self.remote.press(.right) - self.checkForAllCategories(on: self.app.gdprMessage, shouldBe: "On", totalCategories: self.gdprDefaultOnCategories) - self.app.backToHomeButton() - self.app.homeButton.remotePress() - self.app.ourPartnersButton.remotePress() - self.checkForAllVendors(on: self.app.gdprMessage, shouldBe: "On", totalVendors: 0) - self.remote.press(.right) - self.remote.press(.right) - self.checkForAllVendors(on: self.app.gdprMessage, shouldBe: "On", totalVendors: self.gdprDefaultOnCategories) - self.app.backToHomeButton() - self.remote.press(.down) - self.remote.press(.down) - self.app.saveAndExitInternalButton.remotePress() - self.app.gdprPrivacyManagerButton.remotePress() - self.app.acceptButton.expectToHaveFocus() - self.app.managePreferencesButton.remotePress() - self.checkForAllCategories(on: self.app.gdprMessage, shouldBe: "On", totalCategories: 0) - self.remote.press(.right) - self.remote.press(.right) - self.checkForAllCategories(on: self.app.gdprMessage, shouldBe: "On", totalCategories: self.gdprDefaultOnCategories) - self.app.backToHomeButton() - self.app.homeButton.remotePress() - self.app.ourPartnersButton.remotePress() - self.checkForAllVendors(on: self.app.gdprMessage, shouldBe: "On", totalVendors: 0) - self.remote.press(.right) - self.remote.press(.right) - self.checkForAllVendors(on: self.app.gdprMessage, shouldBe: "On", totalVendors: self.gdprDefaultOnCategories) + app.relaunch(clean: true, gdpr: true, ccpa: false) + app.acceptButton.expectToHaveFocus() + app.managePreferencesButton.remotePress() + checkForAllCategories(on: app.gdprMessage, shouldBe: "On", totalCategories: 0) + remote.press(.right) + remote.press(.right) + checkForAllCategories(on: app.gdprMessage, shouldBe: "On", totalCategories: gdprDefaultOnCategories) + app.backToHomeButton() + app.homeButton.remotePress() + app.ourPartnersButton.remotePress() + checkForAllVendors(on: app.gdprMessage, shouldBe: "On", totalVendors: 0) + remote.press(.right) + remote.press(.right) + checkForAllVendors(on: app.gdprMessage, shouldBe: "On", totalVendors: gdprDefaultOnCategories) + app.backToHomeButton() + remote.press(.down) + remote.press(.down) + app.saveAndExitInternalButton.remotePress() + app.gdprPrivacyManagerButton.remotePress() + app.acceptButton.expectToHaveFocus() + app.managePreferencesButton.remotePress() + checkForAllCategories(on: app.gdprMessage, shouldBe: "On", totalCategories: 0) + remote.press(.right) + remote.press(.right) + checkForAllCategories(on: app.gdprMessage, shouldBe: "On", totalCategories: gdprDefaultOnCategories) + app.backToHomeButton() + app.homeButton.remotePress() + app.ourPartnersButton.remotePress() + checkForAllVendors(on: app.gdprMessage, shouldBe: "On", totalVendors: 0) + remote.press(.right) + remote.press(.right) + checkForAllVendors(on: app.gdprMessage, shouldBe: "On", totalVendors: gdprDefaultOnCategories) } } } From 4325a4a808b59eef0a223be07f307fd0caa2277e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Herculano?= <228650+andresilveirah@users.noreply.github.com> Date: Mon, 11 May 2026 14:42:23 +0200 Subject: [PATCH 08/13] update quick/nimble dependencies for testing --- .../project.pbxproj | 6 +-- Example/Podfile | 8 ++-- Example/Podfile.lock | 38 ++++++++++++++----- 3 files changed, 35 insertions(+), 17 deletions(-) diff --git a/Example/ConsentViewController.xcodeproj/project.pbxproj b/Example/ConsentViewController.xcodeproj/project.pbxproj index b5213a6a8..9fd686338 100644 --- a/Example/ConsentViewController.xcodeproj/project.pbxproj +++ b/Example/ConsentViewController.xcodeproj/project.pbxproj @@ -2188,8 +2188,6 @@ dependencies = ( ); name = "SPMConsentViewController-tvOS"; - packageProductDependencies = ( - ); productName = ConsentViewController; productReference = 0B312EE52ABC4E4000B62E23 /* ConsentViewController.framework */; productType = "com.apple.product-type.framework"; @@ -5142,7 +5140,7 @@ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_STYLE = Automatic; DEBUG_INFORMATION_FORMAT = dwarf; - DEVELOPMENT_TEAM = 6KYEQLUC5A; + DEVELOPMENT_TEAM = ""; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = TVOSExampleAppUITests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 10.0; @@ -5177,7 +5175,7 @@ CLANG_WARN_DOCUMENTATION_COMMENTS = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_STYLE = Automatic; - DEVELOPMENT_TEAM = 6KYEQLUC5A; + DEVELOPMENT_TEAM = ""; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = TVOSExampleAppUITests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 10.0; diff --git a/Example/Podfile b/Example/Podfile index fb16ade4f..8a3012f83 100644 --- a/Example/Podfile +++ b/Example/Podfile @@ -31,8 +31,8 @@ abstract_target 'Examples' do end abstract_target 'Tests' do - pod 'Quick' - pod 'Nimble', '10.0.0' + pod 'Quick', '7.6.2' + pod 'Nimble', '13.7.0' target 'ConsentViewController_ExampleTests' target 'SPGDPRExampleAppUITests' @@ -44,8 +44,8 @@ abstract_target 'Tests' do target 'TVOSExampleAppUITests' do platform :tvos, '12.0' pod 'ConsentViewController', :path => '../' - pod 'Quick' - pod 'Nimble', '10.0.0' + pod 'Quick', '7.6.2' + pod 'Nimble', '13.7.0' end abstract_target 'FirebaseTests' do diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 14f4f4352..869d47eae 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -1,6 +1,15 @@ PODS: - - ConsentViewController (7.12.7-beta.4): + - ConsentViewController (7.12.7-rc.3): - SPMobileCore (= 0.1.13) + - CwlCatchException (2.2.1): + - CwlCatchExceptionSupport (~> 2.2.1) + - CwlCatchExceptionSupport (2.2.1) + - CwlMachBadInstructionHandler (2.2.2) + - CwlPosixPreconditionTesting (2.2.2) + - CwlPreconditionTesting (2.2.2): + - CwlCatchException (~> 2.2.1) + - CwlMachBadInstructionHandler (~> 2.2.2) + - CwlPosixPreconditionTesting (~> 2.2.2) - FirebaseAnalytics (11.13.0): - FirebaseAnalytics/AdIdSupport (= 11.13.0) - FirebaseCore (~> 11.13.0) @@ -123,9 +132,10 @@ PODS: - nanopb/encode (= 3.30910.0) - nanopb/decode (3.30910.0) - nanopb/encode (3.30910.0) - - Nimble (10.0.0) + - Nimble (13.7.0): + - CwlPreconditionTesting (~> 2.2.0) - PromisesObjC (2.4.0) - - Quick (5.0.1) + - Quick (7.6.2) - SPMobileCore (0.1.13) - SwiftLint (0.59.1) - Wormholy (1.7.0) @@ -135,13 +145,18 @@ DEPENDENCIES: - FirebaseAnalytics - IQKeyboardManagerSwift - JSONView - - Nimble (= 10.0.0) - - Quick + - Nimble (= 13.7.0) + - Quick (= 7.6.2) - SwiftLint - Wormholy SPEC REPOS: trunk: + - CwlCatchException + - CwlCatchExceptionSupport + - CwlMachBadInstructionHandler + - CwlPosixPreconditionTesting + - CwlPreconditionTesting - FirebaseAnalytics - FirebaseCore - FirebaseCoreInternal @@ -170,7 +185,12 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - ConsentViewController: f5a72b3c2ff72858314cc4df3a1200c33556656c + ConsentViewController: 902ee261f3416c50a915dadf2f28ecaca00e9546 + CwlCatchException: 7acc161b299a6de7f0a46a6ed741eae2c8b4d75a + CwlCatchExceptionSupport: 54ccab8d8c78907b57f99717fb19d4cc3bce02dc + CwlMachBadInstructionHandler: dae4fdd124d45c9910ac240287cc7b898f4502a1 + CwlPosixPreconditionTesting: ecd095aa2129e740b44301c34571e8d85906fb88 + CwlPreconditionTesting: 67a0047dd4de4382b93442c0e3f25207f984f35a FirebaseAnalytics: 630349facf4a114a0977e5d7570e104261973287 FirebaseCore: c692c7f1c75305ab6aff2b367f25e11d73aa8bd0 FirebaseCoreInternal: 29d7b3af4aaf0b8f3ed20b568c13df399b06f68c @@ -187,13 +207,13 @@ SPEC CHECKSUMS: IQTextView: ae13b4922f22e6f027f62c557d9f4f236b19d5c7 JSONView: ba9049102fae7ad70de40234d0b7c60986e61e4c nanopb: fad817b59e0457d11a5dfbde799381cd727c1275 - Nimble: 5316ef81a170ce87baf72dd961f22f89a602ff84 + Nimble: 0d202a1be6a346929560c212341240339875b6f0 PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47 - Quick: 749aa754fd1e7d984f2000fe051e18a3a9809179 + Quick: b8bec97cd4b9f21da0472d45580f763b801fc353 SPMobileCore: 2a77dd31b40f1457ef9df14a0e72163fa00d87c0 SwiftLint: 3d48e2fb2a3468fdaccf049e5e755df22fb40c2c Wormholy: ab1c8c2f02f58587a0941deb0088555ffbf039a1 -PODFILE CHECKSUM: 0526c634af9b52682b5f269cb432f44d2cb1ab1a +PODFILE CHECKSUM: 6af712623e87f48887fdfc1a2ee251a83706b428 COCOAPODS: 1.16.2 From 17740e1dce5be4c57dbcd8a4c418b6d9e8f77e3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Herculano?= <228650+andresilveirah@users.noreply.github.com> Date: Mon, 11 May 2026 14:43:08 +0200 Subject: [PATCH 09/13] update test pods --- Example/Pods/CwlCatchException/LICENSE.txt | 15 + Example/Pods/CwlCatchException/README.md | 31 + .../CwlCatchException/CwlCatchException.swift | 75 + .../Pods/CwlCatchExceptionSupport/LICENSE.txt | 15 + .../Pods/CwlCatchExceptionSupport/README.md | 31 + .../CwlCatchException.m | 4 +- .../include/CwlCatchException.h | 2 +- .../CwlMachBadInstructionHandler/LICENSE.txt | 15 + .../CwlMachBadInstructionHandler/README.md | 59 + .../CwlMachBadInstructionHandler.m | 2 +- .../include/CwlMachBadInstructionHandler.h | 2 +- .../mach_excServer.c | 2 +- .../mach_excServer.h | 2 +- .../CwlPosixPreconditionTesting/LICENSE.txt | 15 + .../CwlPosixPreconditionTesting/README.md | 59 + .../CwlCatchBadInstructionPosix.swift | 0 .../Pods/CwlPreconditionTesting/LICENSE.txt | 15 + Example/Pods/CwlPreconditionTesting/README.md | 59 + .../CwlBadInstructionException.swift | 6 +- .../CwlCatchBadInstruction.swift | 57 +- .../CwlDarwinDefinitions.swift | 2 +- .../ConsentViewController.podspec.json | 4 +- Example/Pods/Manifest.lock | 38 +- .../CwlCatchException/CwlCatchException.swift | 35 - Example/Pods/Nimble/README.md | 1741 +- .../Nimble/Adapters/AdapterProtocols.swift | 10 +- .../Adapters/AssertionRecorder+Async.swift | 83 + .../Nimble/Adapters/AssertionRecorder.swift | 27 +- .../Nimble/Adapters/NMBExpectation.swift | 105 +- .../Nimble/Adapters/NimbleEnvironment.swift | 1 + .../Adapters/NimbleSwiftTestingHandler.swift | 48 + .../Nimble/Adapters/NimbleXCTestHandler.swift | 40 +- .../Sources/Nimble/AsyncExpression.swift | 130 + .../Sources/Nimble/DSL+AsyncAwait.swift | 191 + .../Nimble/Sources/Nimble/DSL+Require.swift | 305 + .../Pods/Nimble/Sources/Nimble/DSL+Wait.swift | 88 +- Example/Pods/Nimble/Sources/Nimble/DSL.swift | 85 +- .../Nimble/Sources/Nimble/Expectation.swift | 290 +- .../Nimble/Sources/Nimble/Expression.swift | 60 +- .../Sources/Nimble/FailureMessage.swift | 2 +- .../Sources/Nimble/Matchers/AllPass.swift | 56 +- .../Sources/Nimble/Matchers/Async.swift | 232 - .../Nimble/Matchers/AsyncAllPass.swift | 64 + .../Nimble/Matchers/AsyncMatcher.swift | 118 + .../Sources/Nimble/Matchers/BeAKindOf.swift | 24 +- .../Nimble/Matchers/BeAnInstanceOf.swift | 26 +- .../Sources/Nimble/Matchers/BeCloseTo.swift | 134 +- .../Sources/Nimble/Matchers/BeEmpty.swift | 62 +- .../Nimble/Matchers/BeGreaterThan.swift | 30 +- .../Matchers/BeGreaterThanOrEqualTo.swift | 30 +- .../Nimble/Matchers/BeIdenticalTo.swift | 34 +- .../Sources/Nimble/Matchers/BeLessThan.swift | 30 +- .../Nimble/Matchers/BeLessThanOrEqual.swift | 30 +- .../Sources/Nimble/Matchers/BeLogical.swift | 54 +- .../Sources/Nimble/Matchers/BeNil.swift | 38 +- .../Sources/Nimble/Matchers/BeResult.swift | 103 +- .../Sources/Nimble/Matchers/BeVoid.swift | 26 +- .../Sources/Nimble/Matchers/BeWithin.swift | 12 +- .../Sources/Nimble/Matchers/BeginWith.swift | 26 +- .../Nimble/Matchers/BeginWithPrefix.swift | 22 +- .../Sources/Nimble/Matchers/Contain.swift | 56 +- .../Matchers/ContainElementSatisfying.swift | 61 +- .../Nimble/Matchers/ElementsEqual.swift | 22 +- .../Sources/Nimble/Matchers/EndWith.swift | 28 +- .../Sources/Nimble/Matchers/Equal+Tuple.swift | 121 +- .../Nimble/Matchers/Equal+TupleArray.swift | 204 + .../Sources/Nimble/Matchers/Equal.swift | 152 +- .../Sources/Nimble/Matchers/HaveCount.swift | 27 +- .../Nimble/Sources/Nimble/Matchers/Map.swift | 97 + .../Sources/Nimble/Matchers/Match.swift | 12 +- .../Sources/Nimble/Matchers/MatchError.swift | 18 +- .../Sources/Nimble/Matchers/Matcher.swift | 324 + .../Sources/Nimble/Matchers/Negation.swift | 37 + .../Nimble/Matchers/PostNotification.swift | 31 +- .../Sources/Nimble/Matchers/Predicate.swift | 289 - .../Nimble/Matchers/RaisesException.swift | 42 +- .../Nimble/Matchers/SatisfyAllOf.swift | 92 +- .../Nimble/Matchers/SatisfyAnyOf.swift | 124 +- .../Nimble/Matchers/ThrowAssertion.swift | 42 +- .../Sources/Nimble/Matchers/ThrowError.swift | 38 +- .../Sources/Nimble/Matchers/ToSucceed.swift | 10 +- Example/Pods/Nimble/Sources/Nimble/Nimble.h | 18 +- .../Sources/Nimble/Polling+AsyncAwait.swift | 600 + .../Sources/Nimble/Polling+Require.swift | 762 + .../Pods/Nimble/Sources/Nimble/Polling.swift | 353 + .../Nimble/Sources/Nimble/Requirement.swift | 210 + .../Sources/Nimble/Utils/AsyncAwait.swift | 344 + .../Nimble/Utils/AsyncTimerSequence.swift | 140 + .../Nimble/Utils/DispatchTimeInterval.swift | 45 - .../Nimble/Utils/NimbleTimeInterval.swift | 89 + .../Utils/{Await.swift => PollAwait.swift} | 194 +- .../Sources/Nimble/Utils/SourceLocation.swift | 22 +- .../Nimble/Sources/NimbleObjectiveC/DSL.m | 125 +- .../Sources/NimbleObjectiveC/NMBStringify.m | 4 + .../XCTestObservationCenter+Register.m | 4 + .../NimbleObjectiveC/{ => include}/DSL.h | 134 +- .../{ => include}/NMBExceptionCapture.h | 0 .../{ => include}/NMBStringify.h | 0 .../NimbleSharedTestHelpers/utils.swift | 293 + Example/Pods/Pods.xcodeproj/project.pbxproj | 13105 +++++++++------- Example/Pods/Quick/README.md | 23 +- .../Sources/Quick/Async/AsyncBehavior.swift | 19 + .../Quick/Async/AsyncExampleGroup.swift | 112 + .../Quick/Sources/Quick/Async/AsyncSpec.swift | 152 + .../Sources/Quick/Async/AsyncWorld.swift | 233 + .../Pods/Quick/Sources/Quick/Callsite.swift | 2 +- .../Configuration/QCKConfiguration.swift | 108 +- .../Configuration/QuickConfiguration.swift | 61 +- .../Quick/Sources/Quick/CurrentSpec.swift | 11 + .../Quick/Sources/Quick/DSL/AsyncDSL.swift | 289 + .../Sources/Quick/DSL/AsyncWorld+DSL.swift | 163 + .../Pods/Quick/Sources/Quick/DSL/DSL.swift | 668 +- .../Quick/Sources/Quick/DSL/World+DSL.swift | 166 +- .../Pods/Quick/Sources/Quick/Example.swift | 154 - .../Quick/Sources/Quick/ExampleGroup.swift | 53 +- .../Quick/Sources/Quick/ExampleMetadata.swift | 33 - .../Sources/Quick/Examples/AsyncExample.swift | 279 + .../Sources/Quick/Examples/Example.swift | 326 + .../Quick/Examples/ExampleMetadata.swift | 51 + Example/Pods/Quick/Sources/Quick/Filter.swift | 13 +- .../Quick/Hooks/AsyncExampleHooks.swift | 53 + .../Quick/Sources/Quick/Hooks/Closures.swift | 116 +- .../Sources/Quick/Hooks/ExampleHooks.swift | 20 +- .../Sources/Quick/Hooks/SuiteHooks.swift | 14 +- .../Sources/Quick/QuickTestObservation.swift | 51 +- .../Pods/Quick/Sources/Quick/StopTest.swift | 70 + .../Sources/Quick/SubclassDetection.swift | 41 + .../Quick/TestSelectorNameProvider.swift | 52 + .../Pods/Quick/Sources/Quick/TestState.swift | 59 + Example/Pods/Quick/Sources/Quick/World.swift | 88 +- .../QuickObjCRuntime/include/QuickSpecBase.h | 4 + .../AsyncSpec+testMethodSelectors.m | 28 + .../Configuration/QuickConfiguration.h | 4 + .../Sources/QuickObjectiveC/DSL/QCKDSL.h | 220 +- .../Sources/QuickObjectiveC/DSL/QCKDSL.m | 18 +- .../Quick/Sources/QuickObjectiveC/QuickSpec.h | 6 +- .../Quick/Sources/QuickObjectiveC/QuickSpec.m | 51 +- ...er-iOS-xcframeworks-input-files.xcfilelist | 2 + ...r-iOS-xcframeworks-output-files.xcfilelist | 1 + .../ConsentViewController-iOS-xcframeworks.sh | 115 + ...r-tvOS-xcframeworks-input-files.xcfilelist | 2 + ...-tvOS-xcframeworks-output-files.xcfilelist | 1 + ...ConsentViewController-tvOS-xcframeworks.sh | 114 + .../CwlCatchException-Info.plist | 26 + .../CwlCatchException-dummy.m | 5 + .../CwlCatchException-prefix.pch | 12 + .../CwlCatchException-umbrella.h | 16 + .../CwlCatchException.debug.xcconfig | 14 + .../CwlCatchException.modulemap | 6 + .../CwlCatchException.release.xcconfig | 14 + .../CwlCatchExceptionSupport-Info.plist | 26 + .../CwlCatchExceptionSupport-dummy.m | 5 + .../CwlCatchExceptionSupport-prefix.pch | 12 + .../CwlCatchExceptionSupport-umbrella.h | 17 + .../CwlCatchExceptionSupport.debug.xcconfig | 12 + .../CwlCatchExceptionSupport.modulemap | 6 + .../CwlCatchExceptionSupport.release.xcconfig | 12 + .../CwlMachBadInstructionHandler-Info.plist | 26 + .../CwlMachBadInstructionHandler-dummy.m | 5 + .../CwlMachBadInstructionHandler-prefix.pch | 12 + .../CwlMachBadInstructionHandler-umbrella.h | 18 + ...wlMachBadInstructionHandler.debug.xcconfig | 12 + .../CwlMachBadInstructionHandler.modulemap | 6 + ...MachBadInstructionHandler.release.xcconfig | 12 + .../CwlPosixPreconditionTesting-Info.plist | 26 + .../CwlPosixPreconditionTesting-dummy.m | 5 + .../CwlPosixPreconditionTesting-prefix.pch | 12 + .../CwlPosixPreconditionTesting-umbrella.h | 16 + ...CwlPosixPreconditionTesting.debug.xcconfig | 13 + .../CwlPosixPreconditionTesting.modulemap | 6 + ...lPosixPreconditionTesting.release.xcconfig | 13 + .../CwlPreconditionTesting-Info.plist | 26 + .../CwlPreconditionTesting-dummy.m | 5 + .../CwlPreconditionTesting-prefix.pch | 12 + .../CwlPreconditionTesting-umbrella.h | 16 + .../CwlPreconditionTesting.debug.xcconfig | 14 + .../CwlPreconditionTesting.modulemap | 6 + .../CwlPreconditionTesting.release.xcconfig | 14 + .../Nimble-iOS/Nimble-iOS-Info.plist | 2 +- .../Nimble-iOS/Nimble-iOS-umbrella.h | 3 - .../Nimble-iOS/Nimble-iOS.debug.xcconfig | 4 +- .../Nimble-iOS/Nimble-iOS.release.xcconfig | 4 +- .../Nimble-tvOS/Nimble-tvOS-Info.plist | 2 +- .../Nimble-tvOS/Nimble-tvOS-umbrella.h | 1 - ...thExampleUITests-acknowledgements.markdown | 95 + ...-AuthExampleUITests-acknowledgements.plist | 125 + ...ds-Tests-AuthExampleUITests.debug.xcconfig | 8 +- ...-Tests-AuthExampleUITests.release.xcconfig | 8 +- ...ler_ExampleTests-acknowledgements.markdown | 95 + ...roller_ExampleTests-acknowledgements.plist | 125 + ...ViewController_ExampleTests.debug.xcconfig | 8 +- ...ewController_ExampleTests.release.xcconfig | 8 +- ...irebaseDemoTests-acknowledgements.markdown | 95 + ...ntFirebaseDemoTests-acknowledgements.plist | 125 + ...ourcepointFirebaseDemoTests.debug.xcconfig | 8 +- ...rcepointFirebaseDemoTests.release.xcconfig | 8 +- ...ebaseDemoUITests-acknowledgements.markdown | 95 + ...FirebaseDemoUITests-acknowledgements.plist | 125 + ...rcepointFirebaseDemoUITests.debug.xcconfig | 8 +- ...epointFirebaseDemoUITests.release.xcconfig | 8 +- ...geExampleUITests-acknowledgements.markdown | 95 + ...ssageExampleUITests-acknowledgements.plist | 125 + ...NativeMessageExampleUITests.debug.xcconfig | 8 +- ...tiveMessageExampleUITests.release.xcconfig | 8 +- ...xampleAppUITests-acknowledgements.markdown | 95 + ...C-ExampleAppUITests-acknowledgements.plist | 125 + ...ests-ObjC-ExampleAppUITests.debug.xcconfig | 8 +- ...ts-ObjC-ExampleAppUITests.release.xcconfig | 8 +- ...xampleAppUITests-acknowledgements.markdown | 95 + ...PRExampleAppUITests-acknowledgements.plist | 125 + ...sts-SPGDPRExampleAppUITests.debug.xcconfig | 8 +- ...s-SPGDPRExampleAppUITests.release.xcconfig | 8 +- ...ntMetaAppUITests-acknowledgements.markdown | 95 + ...PointMetaAppUITests-acknowledgements.plist | 125 + ...s-SourcePointMetaAppUITests.debug.xcconfig | 8 +- ...SourcePointMetaAppUITests.release.xcconfig | 8 +- .../Quick-iOS/Quick-iOS-Info.plist | 2 +- .../Quick-iOS/Quick-iOS.debug.xcconfig | 3 - .../Quick-iOS/Quick-iOS.release.xcconfig | 3 - .../Quick-tvOS/Quick-tvOS-Info.plist | 2 +- 220 files changed, 19682 insertions(+), 9907 deletions(-) create mode 100644 Example/Pods/CwlCatchException/LICENSE.txt create mode 100644 Example/Pods/CwlCatchException/README.md create mode 100644 Example/Pods/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift create mode 100644 Example/Pods/CwlCatchExceptionSupport/LICENSE.txt create mode 100644 Example/Pods/CwlCatchExceptionSupport/README.md rename Example/Pods/{Nimble/Carthage/Checkouts/CwlCatchException => CwlCatchExceptionSupport}/Sources/CwlCatchExceptionSupport/CwlCatchException.m (93%) rename Example/Pods/{Nimble/Carthage/Checkouts/CwlCatchException => CwlCatchExceptionSupport}/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h (95%) create mode 100644 Example/Pods/CwlMachBadInstructionHandler/LICENSE.txt create mode 100644 Example/Pods/CwlMachBadInstructionHandler/README.md rename Example/Pods/{Nimble/Carthage/Checkouts/CwlPreconditionTesting => CwlMachBadInstructionHandler}/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m (98%) rename Example/Pods/{Nimble/Carthage/Checkouts/CwlPreconditionTesting => CwlMachBadInstructionHandler}/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h (98%) rename Example/Pods/{Nimble/Carthage/Checkouts/CwlPreconditionTesting => CwlMachBadInstructionHandler}/Sources/CwlMachBadInstructionHandler/mach_excServer.c (99%) rename Example/Pods/{Nimble/Carthage/Checkouts/CwlPreconditionTesting => CwlMachBadInstructionHandler}/Sources/CwlMachBadInstructionHandler/mach_excServer.h (99%) create mode 100644 Example/Pods/CwlPosixPreconditionTesting/LICENSE.txt create mode 100644 Example/Pods/CwlPosixPreconditionTesting/README.md rename Example/Pods/{Nimble/Carthage/Checkouts/CwlPreconditionTesting => CwlPosixPreconditionTesting}/Sources/CwlPosixPreconditionTesting/CwlCatchBadInstructionPosix.swift (100%) create mode 100644 Example/Pods/CwlPreconditionTesting/LICENSE.txt create mode 100644 Example/Pods/CwlPreconditionTesting/README.md rename Example/Pods/{Nimble/Carthage/Checkouts => }/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift (95%) rename Example/Pods/{Nimble/Carthage/Checkouts => }/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift (77%) rename Example/Pods/{Nimble/Carthage/Checkouts => }/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift (97%) delete mode 100644 Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder+Async.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleSwiftTestingHandler.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/AsyncExpression.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/DSL+AsyncAwait.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/DSL+Require.swift delete mode 100644 Example/Pods/Nimble/Sources/Nimble/Matchers/Async.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/Matchers/AsyncAllPass.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/Matchers/AsyncMatcher.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/Matchers/Equal+TupleArray.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/Matchers/Map.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/Matchers/Matcher.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/Matchers/Negation.swift delete mode 100644 Example/Pods/Nimble/Sources/Nimble/Matchers/Predicate.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/Polling+AsyncAwait.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/Polling+Require.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/Polling.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/Requirement.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/Utils/AsyncAwait.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/Utils/AsyncTimerSequence.swift delete mode 100644 Example/Pods/Nimble/Sources/Nimble/Utils/DispatchTimeInterval.swift create mode 100644 Example/Pods/Nimble/Sources/Nimble/Utils/NimbleTimeInterval.swift rename Example/Pods/Nimble/Sources/Nimble/Utils/{Await.swift => PollAwait.swift} (62%) rename Example/Pods/Nimble/Sources/NimbleObjectiveC/{ => include}/DSL.h (71%) rename Example/Pods/Nimble/Sources/NimbleObjectiveC/{ => include}/NMBExceptionCapture.h (100%) rename Example/Pods/Nimble/Sources/NimbleObjectiveC/{ => include}/NMBStringify.h (100%) create mode 100644 Example/Pods/Nimble/Sources/NimbleSharedTestHelpers/utils.swift create mode 100644 Example/Pods/Quick/Sources/Quick/Async/AsyncBehavior.swift create mode 100644 Example/Pods/Quick/Sources/Quick/Async/AsyncExampleGroup.swift create mode 100644 Example/Pods/Quick/Sources/Quick/Async/AsyncSpec.swift create mode 100644 Example/Pods/Quick/Sources/Quick/Async/AsyncWorld.swift create mode 100644 Example/Pods/Quick/Sources/Quick/CurrentSpec.swift create mode 100644 Example/Pods/Quick/Sources/Quick/DSL/AsyncDSL.swift create mode 100644 Example/Pods/Quick/Sources/Quick/DSL/AsyncWorld+DSL.swift delete mode 100644 Example/Pods/Quick/Sources/Quick/Example.swift delete mode 100644 Example/Pods/Quick/Sources/Quick/ExampleMetadata.swift create mode 100644 Example/Pods/Quick/Sources/Quick/Examples/AsyncExample.swift create mode 100644 Example/Pods/Quick/Sources/Quick/Examples/Example.swift create mode 100644 Example/Pods/Quick/Sources/Quick/Examples/ExampleMetadata.swift create mode 100644 Example/Pods/Quick/Sources/Quick/Hooks/AsyncExampleHooks.swift create mode 100644 Example/Pods/Quick/Sources/Quick/StopTest.swift create mode 100644 Example/Pods/Quick/Sources/Quick/SubclassDetection.swift create mode 100644 Example/Pods/Quick/Sources/Quick/TestSelectorNameProvider.swift create mode 100644 Example/Pods/Quick/Sources/Quick/TestState.swift create mode 100644 Example/Pods/Quick/Sources/QuickObjectiveC/AsyncSpec+testMethodSelectors.m create mode 100644 Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-xcframeworks-input-files.xcfilelist create mode 100644 Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-xcframeworks-output-files.xcfilelist create mode 100755 Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-xcframeworks.sh create mode 100644 Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-xcframeworks-input-files.xcfilelist create mode 100644 Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-xcframeworks-output-files.xcfilelist create mode 100755 Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-xcframeworks.sh create mode 100644 Example/Pods/Target Support Files/CwlCatchException/CwlCatchException-Info.plist create mode 100644 Example/Pods/Target Support Files/CwlCatchException/CwlCatchException-dummy.m create mode 100644 Example/Pods/Target Support Files/CwlCatchException/CwlCatchException-prefix.pch create mode 100644 Example/Pods/Target Support Files/CwlCatchException/CwlCatchException-umbrella.h create mode 100644 Example/Pods/Target Support Files/CwlCatchException/CwlCatchException.debug.xcconfig create mode 100644 Example/Pods/Target Support Files/CwlCatchException/CwlCatchException.modulemap create mode 100644 Example/Pods/Target Support Files/CwlCatchException/CwlCatchException.release.xcconfig create mode 100644 Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-Info.plist create mode 100644 Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-dummy.m create mode 100644 Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-prefix.pch create mode 100644 Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-umbrella.h create mode 100644 Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.debug.xcconfig create mode 100644 Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.modulemap create mode 100644 Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.release.xcconfig create mode 100644 Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-Info.plist create mode 100644 Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-dummy.m create mode 100644 Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-prefix.pch create mode 100644 Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-umbrella.h create mode 100644 Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.debug.xcconfig create mode 100644 Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.modulemap create mode 100644 Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.release.xcconfig create mode 100644 Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-Info.plist create mode 100644 Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-dummy.m create mode 100644 Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-prefix.pch create mode 100644 Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-umbrella.h create mode 100644 Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.debug.xcconfig create mode 100644 Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.modulemap create mode 100644 Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.release.xcconfig create mode 100644 Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-Info.plist create mode 100644 Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-dummy.m create mode 100644 Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-prefix.pch create mode 100644 Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-umbrella.h create mode 100644 Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.debug.xcconfig create mode 100644 Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.modulemap create mode 100644 Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.release.xcconfig diff --git a/Example/Pods/CwlCatchException/LICENSE.txt b/Example/Pods/CwlCatchException/LICENSE.txt new file mode 100644 index 000000000..693a2fe7d --- /dev/null +++ b/Example/Pods/CwlCatchException/LICENSE.txt @@ -0,0 +1,15 @@ +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/Example/Pods/CwlCatchException/README.md b/Example/Pods/CwlCatchException/README.md new file mode 100644 index 000000000..ef38cabff --- /dev/null +++ b/Example/Pods/CwlCatchException/README.md @@ -0,0 +1,31 @@ +# CwlCatchException + +A simple Swift wrapper around an Objective-C `@try`/`@catch` statement that selectively catches Objective-C exceptions by `NSException` subtype, rethrowing if any caught exception is not the expected subtype. + +Look at [CwlCatchExceptionTests.swift](https://github.com/mattgallagher/CwlCatchException/blob/master/Tests/CwlCatchExceptionTests/CwlCatchExceptionTests.swift) for syntax. + +## Requirements + +From version 2.0.0-beta.1, building CwlCatchException requires Swift 5 or newer, Swift Package Manager or CocoaPods. + +For use with older versions of Swift or other package managers, [use version 1.2.0 or older](https://github.com/mattgallagher/CwlCatchException/tree/1.2.0). + +## Adding to your project + +### Swift Package Manager + +Add the following to the `dependencies` array in your "Package.swift" file: + + .package(url: "https://github.com/mattgallagher/CwlCatchException.git", from: Version("2.0.0")) + +Or by adding `https://github.com/mattgallagher/CwlCatchException.git`, version 2.0.0 or later, to the list of Swift packages for any project in Xcode. + +### CocoaPods + +CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate CwlCatchException into your Xcode project using CocoaPods, specify it in your Podfile: + +pod 'CwlCatchException', '~> 2.0' + +## Thanks + +Includes contributions from @alexbaev, @dnkoutso and @ejensen. \ No newline at end of file diff --git a/Example/Pods/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift b/Example/Pods/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift new file mode 100644 index 000000000..642f45026 --- /dev/null +++ b/Example/Pods/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift @@ -0,0 +1,75 @@ +// +// CwlCatchException.swift +// CwlAssertionTesting +// +// Created by Matt Gallagher on 2016/01/10. +// Copyright © 2016 Matt Gallagher ( https://www.cocoawithlove.com ). All rights reserved. +// +// Permission to use, copy, modify, and/or distribute this software for any +// purpose with or without fee is hereby granted, provided that the above +// copyright notice and this permission notice appear in all copies. +// +// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +// SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +// IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +// + +import Foundation + +#if SWIFT_PACKAGE || COCOAPODS +import CwlCatchExceptionSupport +#endif + +private func catchReturnTypeConverter(_ type: Exception.Type, block: () -> Void) -> Exception? { + return catchExceptionOfKind(type, block) as? Exception +} + +extension NSException { + public static func catchException(in block: () -> Void) -> Self? { + return catchReturnTypeConverter(self, block: block) + } +} + +public func catchExceptionAsError(in block: (() throws -> Output)) throws -> Output { + var result: Result? + + let exception = NSException.catchException { + result = Result(catching: block) + } + + if let exception = exception { + throw ExceptionError(exception) + } + + return try result!.get() +} + +// Adding conformance so that ExceptionError is fully Sendable as part of CustomNSError +#if compiler(<6.0) +extension NSException: @unchecked Sendable { } +#else +// @retroactive not available until Xcode 16 / Swift 6 +extension NSException: @unchecked @retroactive Sendable { } +#endif + +public struct ExceptionError: CustomNSError { + public let exception: NSException + public let domain = "com.cocoawithlove.catch-exception" + public let errorUserInfo: [String: Any] + + public init(_ exception: NSException) { + self.exception = exception + + if let userInfo = exception.userInfo { + self.errorUserInfo = [String: Any](uniqueKeysWithValues: userInfo.map { pair in + (pair.key.description, pair.value) + }) + } else { + self.errorUserInfo = [:] + } + } +} diff --git a/Example/Pods/CwlCatchExceptionSupport/LICENSE.txt b/Example/Pods/CwlCatchExceptionSupport/LICENSE.txt new file mode 100644 index 000000000..693a2fe7d --- /dev/null +++ b/Example/Pods/CwlCatchExceptionSupport/LICENSE.txt @@ -0,0 +1,15 @@ +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/Example/Pods/CwlCatchExceptionSupport/README.md b/Example/Pods/CwlCatchExceptionSupport/README.md new file mode 100644 index 000000000..ef38cabff --- /dev/null +++ b/Example/Pods/CwlCatchExceptionSupport/README.md @@ -0,0 +1,31 @@ +# CwlCatchException + +A simple Swift wrapper around an Objective-C `@try`/`@catch` statement that selectively catches Objective-C exceptions by `NSException` subtype, rethrowing if any caught exception is not the expected subtype. + +Look at [CwlCatchExceptionTests.swift](https://github.com/mattgallagher/CwlCatchException/blob/master/Tests/CwlCatchExceptionTests/CwlCatchExceptionTests.swift) for syntax. + +## Requirements + +From version 2.0.0-beta.1, building CwlCatchException requires Swift 5 or newer, Swift Package Manager or CocoaPods. + +For use with older versions of Swift or other package managers, [use version 1.2.0 or older](https://github.com/mattgallagher/CwlCatchException/tree/1.2.0). + +## Adding to your project + +### Swift Package Manager + +Add the following to the `dependencies` array in your "Package.swift" file: + + .package(url: "https://github.com/mattgallagher/CwlCatchException.git", from: Version("2.0.0")) + +Or by adding `https://github.com/mattgallagher/CwlCatchException.git`, version 2.0.0 or later, to the list of Swift packages for any project in Xcode. + +### CocoaPods + +CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate CwlCatchException into your Xcode project using CocoaPods, specify it in your Podfile: + +pod 'CwlCatchException', '~> 2.0' + +## Thanks + +Includes contributions from @alexbaev, @dnkoutso and @ejensen. \ No newline at end of file diff --git a/Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m b/Example/Pods/CwlCatchExceptionSupport/Sources/CwlCatchExceptionSupport/CwlCatchException.m similarity index 93% rename from Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m rename to Example/Pods/CwlCatchExceptionSupport/Sources/CwlCatchExceptionSupport/CwlCatchException.m index ff35465d8..4530e923b 100644 --- a/Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m +++ b/Example/Pods/CwlCatchExceptionSupport/Sources/CwlCatchExceptionSupport/CwlCatchException.m @@ -18,9 +18,9 @@ // IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. // -#import "CwlCatchException.h" +#import -NSException* __nullable catchExceptionOfKind(Class __nonnull type, void (^ __nonnull inBlock)(void)) { +NSException* __nullable catchExceptionOfKind(Class __nonnull type, void (^ NS_NOESCAPE __nonnull inBlock)(void)) { @try { inBlock(); } @catch (NSException *exception) { diff --git a/Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h b/Example/Pods/CwlCatchExceptionSupport/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h similarity index 95% rename from Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h rename to Example/Pods/CwlCatchExceptionSupport/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h index eb42378f5..b93dcd26f 100644 --- a/Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h +++ b/Example/Pods/CwlCatchExceptionSupport/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h @@ -20,4 +20,4 @@ #import -NSException* __nullable catchExceptionOfKind(Class __nonnull type, void (^ __nonnull inBlock)(void)); +NSException* __nullable catchExceptionOfKind(Class __nonnull type, void (^ NS_NOESCAPE __nonnull inBlock)(void)); diff --git a/Example/Pods/CwlMachBadInstructionHandler/LICENSE.txt b/Example/Pods/CwlMachBadInstructionHandler/LICENSE.txt new file mode 100644 index 000000000..693a2fe7d --- /dev/null +++ b/Example/Pods/CwlMachBadInstructionHandler/LICENSE.txt @@ -0,0 +1,15 @@ +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/Example/Pods/CwlMachBadInstructionHandler/README.md b/Example/Pods/CwlMachBadInstructionHandler/README.md new file mode 100644 index 000000000..dd3fef111 --- /dev/null +++ b/Example/Pods/CwlMachBadInstructionHandler/README.md @@ -0,0 +1,59 @@ +# CwlPreconditionTesting + +A Mach exception handler, written in Swift and Objective-C, that allows `EXC_BAD_INSTRUCTION` (as raised by Swift's `assertionFailure`/`preconditionFailure`/`fatalError`) to be caught and tested. + +NOTE: the iOS code runs in the simulator *only*. It is for logic testing and cannot be deployed to the device due to the Mach exception API being private on iOS. + +For an extended discussion of this code, please see the Cocoa with Love article: + +[Partial functions in Swift, Part 2: Catching precondition failures](http://cocoawithlove.com/blog/2016/02/02/partial-functions-part-two-catching-precondition-failures.html) + +## Requirements + +From version 2.0.0-beta.1, building CwlPreconditionTesting requires Swift 5 or newer and the Swift Package Manager, or CocoaPods. + +For use with older versions of Swift or other package managers, [use version 1.2.0 or older](https://github.com/mattgallagher/CwlPreconditionTesting/tree/1.2.0). + +## Adding to your project + +### Swift Package Manager + +Add the following to the `dependencies` array in your "Package.swift" file: + + .package(url: "https://github.com/mattgallagher/CwlPreconditionTesting.git", from: Version("2.0.0")) + +Or by adding `https://github.com/mattgallagher/CwlPreconditionTesting.git`, version 2.0.0 or later, to the list of Swift packages for any project in Xcode. + +### CocoaPods + +CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate CwlPreconditionTesting into your Xcode project using CocoaPods, specify it in your Podfile: + +pod 'CwlPreconditionTesting', '~> 2.0' + +## Usage + +On macOS and iOS you can use the regular version: + +```swift +import CwlPreconditionTesting + +let e = catchBadInstruction { + precondition(false, "THIS PRECONDITION FAILURE IS EXPECTED") +} +``` + +on tvOS, Linux and other platforms, you can use the POSIX version: + +```swift +import CwlPosixPreconditionTesting + +let e = catchBadInstruction { + precondition(false, "THIS PRECONDITION FAILURE IS EXPECTED") +} +``` + +**Warning**: this POSIX version can't be used when lldb is attached since lldb's Mach exception handler blocks the SIGILL from ever occurring. You should disable the "Debug Executable" setting for the tests in Xcode. The POSIX version of the signal handler is also whole process (rather than correctly scoped to the thread where the "catch" occurs). + +## Thanks + +Includes contributions from @abbeycode, @dnkoutso, @jeffh and @ikesyo. Extra thanks to @saagarjha for help with the ARM64 additions. \ No newline at end of file diff --git a/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m b/Example/Pods/CwlMachBadInstructionHandler/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m similarity index 98% rename from Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m rename to Example/Pods/CwlMachBadInstructionHandler/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m index 168fa5b70..0af0e8e51 100644 --- a/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m +++ b/Example/Pods/CwlMachBadInstructionHandler/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m @@ -20,7 +20,7 @@ #ifdef __APPLE__ #import "TargetConditionals.h" -#if TARGET_OS_OSX || TARGET_OS_IOS +#if TARGET_OS_OSX || TARGET_OS_IOS || TARGET_OS_VISION #import "mach_excServer.h" #import "CwlMachBadInstructionHandler.h" diff --git a/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h b/Example/Pods/CwlMachBadInstructionHandler/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h similarity index 98% rename from Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h rename to Example/Pods/CwlMachBadInstructionHandler/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h index 6feabe5ad..ade03df71 100644 --- a/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h +++ b/Example/Pods/CwlMachBadInstructionHandler/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h @@ -20,7 +20,7 @@ #import -#if TARGET_OS_OSX || TARGET_OS_IOS +#if TARGET_OS_OSX || TARGET_OS_IOS || TARGET_OS_VISION #import diff --git a/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c b/Example/Pods/CwlMachBadInstructionHandler/Sources/CwlMachBadInstructionHandler/mach_excServer.c similarity index 99% rename from Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c rename to Example/Pods/CwlMachBadInstructionHandler/Sources/CwlMachBadInstructionHandler/mach_excServer.c index ccd8f84b8..c6f414176 100644 --- a/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c +++ b/Example/Pods/CwlMachBadInstructionHandler/Sources/CwlMachBadInstructionHandler/mach_excServer.c @@ -10,7 +10,7 @@ #define __MIG_check__Request__mach_exc_subsystem__ 1 #import "mach_excServer.h" -#if TARGET_OS_OSX || TARGET_OS_IOS +#if TARGET_OS_OSX || TARGET_OS_IOS || TARGET_OS_VISION #ifndef mig_internal #define mig_internal static __inline__ diff --git a/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h b/Example/Pods/CwlMachBadInstructionHandler/Sources/CwlMachBadInstructionHandler/mach_excServer.h similarity index 99% rename from Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h rename to Example/Pods/CwlMachBadInstructionHandler/Sources/CwlMachBadInstructionHandler/mach_excServer.h index 1f03d66c6..941b227cd 100644 --- a/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h +++ b/Example/Pods/CwlMachBadInstructionHandler/Sources/CwlMachBadInstructionHandler/mach_excServer.h @@ -1,6 +1,6 @@ #ifdef __APPLE__ #import "TargetConditionals.h" -#if TARGET_OS_OSX || TARGET_OS_IOS +#if TARGET_OS_OSX || TARGET_OS_IOS || TARGET_OS_VISION #ifndef _mach_exc_server_ #define _mach_exc_server_ diff --git a/Example/Pods/CwlPosixPreconditionTesting/LICENSE.txt b/Example/Pods/CwlPosixPreconditionTesting/LICENSE.txt new file mode 100644 index 000000000..693a2fe7d --- /dev/null +++ b/Example/Pods/CwlPosixPreconditionTesting/LICENSE.txt @@ -0,0 +1,15 @@ +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/Example/Pods/CwlPosixPreconditionTesting/README.md b/Example/Pods/CwlPosixPreconditionTesting/README.md new file mode 100644 index 000000000..dd3fef111 --- /dev/null +++ b/Example/Pods/CwlPosixPreconditionTesting/README.md @@ -0,0 +1,59 @@ +# CwlPreconditionTesting + +A Mach exception handler, written in Swift and Objective-C, that allows `EXC_BAD_INSTRUCTION` (as raised by Swift's `assertionFailure`/`preconditionFailure`/`fatalError`) to be caught and tested. + +NOTE: the iOS code runs in the simulator *only*. It is for logic testing and cannot be deployed to the device due to the Mach exception API being private on iOS. + +For an extended discussion of this code, please see the Cocoa with Love article: + +[Partial functions in Swift, Part 2: Catching precondition failures](http://cocoawithlove.com/blog/2016/02/02/partial-functions-part-two-catching-precondition-failures.html) + +## Requirements + +From version 2.0.0-beta.1, building CwlPreconditionTesting requires Swift 5 or newer and the Swift Package Manager, or CocoaPods. + +For use with older versions of Swift or other package managers, [use version 1.2.0 or older](https://github.com/mattgallagher/CwlPreconditionTesting/tree/1.2.0). + +## Adding to your project + +### Swift Package Manager + +Add the following to the `dependencies` array in your "Package.swift" file: + + .package(url: "https://github.com/mattgallagher/CwlPreconditionTesting.git", from: Version("2.0.0")) + +Or by adding `https://github.com/mattgallagher/CwlPreconditionTesting.git`, version 2.0.0 or later, to the list of Swift packages for any project in Xcode. + +### CocoaPods + +CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate CwlPreconditionTesting into your Xcode project using CocoaPods, specify it in your Podfile: + +pod 'CwlPreconditionTesting', '~> 2.0' + +## Usage + +On macOS and iOS you can use the regular version: + +```swift +import CwlPreconditionTesting + +let e = catchBadInstruction { + precondition(false, "THIS PRECONDITION FAILURE IS EXPECTED") +} +``` + +on tvOS, Linux and other platforms, you can use the POSIX version: + +```swift +import CwlPosixPreconditionTesting + +let e = catchBadInstruction { + precondition(false, "THIS PRECONDITION FAILURE IS EXPECTED") +} +``` + +**Warning**: this POSIX version can't be used when lldb is attached since lldb's Mach exception handler blocks the SIGILL from ever occurring. You should disable the "Debug Executable" setting for the tests in Xcode. The POSIX version of the signal handler is also whole process (rather than correctly scoped to the thread where the "catch" occurs). + +## Thanks + +Includes contributions from @abbeycode, @dnkoutso, @jeffh and @ikesyo. Extra thanks to @saagarjha for help with the ARM64 additions. \ No newline at end of file diff --git a/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPosixPreconditionTesting/CwlCatchBadInstructionPosix.swift b/Example/Pods/CwlPosixPreconditionTesting/Sources/CwlPosixPreconditionTesting/CwlCatchBadInstructionPosix.swift similarity index 100% rename from Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPosixPreconditionTesting/CwlCatchBadInstructionPosix.swift rename to Example/Pods/CwlPosixPreconditionTesting/Sources/CwlPosixPreconditionTesting/CwlCatchBadInstructionPosix.swift diff --git a/Example/Pods/CwlPreconditionTesting/LICENSE.txt b/Example/Pods/CwlPreconditionTesting/LICENSE.txt new file mode 100644 index 000000000..693a2fe7d --- /dev/null +++ b/Example/Pods/CwlPreconditionTesting/LICENSE.txt @@ -0,0 +1,15 @@ +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/Example/Pods/CwlPreconditionTesting/README.md b/Example/Pods/CwlPreconditionTesting/README.md new file mode 100644 index 000000000..dd3fef111 --- /dev/null +++ b/Example/Pods/CwlPreconditionTesting/README.md @@ -0,0 +1,59 @@ +# CwlPreconditionTesting + +A Mach exception handler, written in Swift and Objective-C, that allows `EXC_BAD_INSTRUCTION` (as raised by Swift's `assertionFailure`/`preconditionFailure`/`fatalError`) to be caught and tested. + +NOTE: the iOS code runs in the simulator *only*. It is for logic testing and cannot be deployed to the device due to the Mach exception API being private on iOS. + +For an extended discussion of this code, please see the Cocoa with Love article: + +[Partial functions in Swift, Part 2: Catching precondition failures](http://cocoawithlove.com/blog/2016/02/02/partial-functions-part-two-catching-precondition-failures.html) + +## Requirements + +From version 2.0.0-beta.1, building CwlPreconditionTesting requires Swift 5 or newer and the Swift Package Manager, or CocoaPods. + +For use with older versions of Swift or other package managers, [use version 1.2.0 or older](https://github.com/mattgallagher/CwlPreconditionTesting/tree/1.2.0). + +## Adding to your project + +### Swift Package Manager + +Add the following to the `dependencies` array in your "Package.swift" file: + + .package(url: "https://github.com/mattgallagher/CwlPreconditionTesting.git", from: Version("2.0.0")) + +Or by adding `https://github.com/mattgallagher/CwlPreconditionTesting.git`, version 2.0.0 or later, to the list of Swift packages for any project in Xcode. + +### CocoaPods + +CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate CwlPreconditionTesting into your Xcode project using CocoaPods, specify it in your Podfile: + +pod 'CwlPreconditionTesting', '~> 2.0' + +## Usage + +On macOS and iOS you can use the regular version: + +```swift +import CwlPreconditionTesting + +let e = catchBadInstruction { + precondition(false, "THIS PRECONDITION FAILURE IS EXPECTED") +} +``` + +on tvOS, Linux and other platforms, you can use the POSIX version: + +```swift +import CwlPosixPreconditionTesting + +let e = catchBadInstruction { + precondition(false, "THIS PRECONDITION FAILURE IS EXPECTED") +} +``` + +**Warning**: this POSIX version can't be used when lldb is attached since lldb's Mach exception handler blocks the SIGILL from ever occurring. You should disable the "Debug Executable" setting for the tests in Xcode. The POSIX version of the signal handler is also whole process (rather than correctly scoped to the thread where the "catch" occurs). + +## Thanks + +Includes contributions from @abbeycode, @dnkoutso, @jeffh and @ikesyo. Extra thanks to @saagarjha for help with the ARM64 additions. \ No newline at end of file diff --git a/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift b/Example/Pods/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift similarity index 95% rename from Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift rename to Example/Pods/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift index 9ec85da8a..61a3c9bc4 100644 --- a/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift +++ b/Example/Pods/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift @@ -18,11 +18,11 @@ // IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. // -#if (os(macOS) || os(iOS)) && (arch(x86_64) || arch(arm64)) +#if (os(macOS) || os(iOS) || os(visionOS)) && (arch(x86_64) || arch(arm64)) import Foundation -#if SWIFT_PACKAGE +#if SWIFT_PACKAGE || COCOAPODS import CwlMachBadInstructionHandler #endif @@ -32,7 +32,7 @@ var raiseBadInstructionException = { /// A simple NSException subclass. It's not required to subclass NSException (since the exception type is represented in the name) but this helps for identifying the exception through runtime type. @objc(BadInstructionException) -public class BadInstructionException: NSException { +public class BadInstructionException: NSException, @unchecked Sendable { static var name: String = "com.cocoawithlove.BadInstruction" init() { diff --git a/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift b/Example/Pods/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift similarity index 77% rename from Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift rename to Example/Pods/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift index 7232c24dd..833abc15d 100644 --- a/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift +++ b/Example/Pods/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift @@ -18,12 +18,13 @@ // IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. // -#if (os(macOS) || os(iOS)) && (arch(x86_64) || arch(arm64)) +#if (os(macOS) || os(iOS) || os(visionOS)) && (arch(x86_64) || arch(arm64)) import Foundation import Swift -#if SWIFT_PACKAGE +#if SWIFT_PACKAGE || COCOAPODS + import CwlCatchException import CwlMachBadInstructionHandler #endif @@ -90,51 +91,8 @@ private struct MachContext { /// A function for receiving mach messages and parsing the first with mach_exc_server (and if any others are received, throwing them away). private func machMessageHandler(_ arg: UnsafeMutableRawPointer) -> UnsafeMutableRawPointer? { let context = arg.assumingMemoryBound(to: MachContext.self).pointee - var request = request_mach_exception_raise_t() - var reply = reply_mach_exception_raise_state_t() - - var handledfirstException = false - repeat { do { - // Request the next mach message from the port - request.Head.msgh_local_port = context.currentExceptionPort - request.Head.msgh_size = UInt32(MemoryLayout.size) - let requestSize = request.Head.msgh_size - try kernCheck { request.withMsgHeaderPointer { requestPtr in - mach_msg(requestPtr, MACH_RCV_MSG | MACH_RCV_INTERRUPT, 0, requestSize, context.currentExceptionPort, 0, UInt32(MACH_PORT_NULL)) - } } - - // Prepare the reply structure - reply.Head.msgh_bits = MACH_MSGH_BITS(MACH_MSGH_BITS_REMOTE(request.Head.msgh_bits), 0) - reply.Head.msgh_local_port = UInt32(MACH_PORT_NULL) - reply.Head.msgh_remote_port = request.Head.msgh_remote_port - reply.Head.msgh_size = UInt32(MemoryLayout.size) - reply.NDR = mach_ndr_record() - - if !handledfirstException { - // Use the MiG generated server to invoke our handler for the request and fill in the rest of the reply structure - guard request.withMsgHeaderPointer(in: { requestPtr in reply.withMsgHeaderPointer { replyPtr in - mach_exc_server(requestPtr, replyPtr) - } }) != 0 else { throw MachExcServer.code(reply.RetCode) } - - handledfirstException = true - } else { - // If multiple fatal errors occur, don't handle subsquent errors (let the program crash) - reply.RetCode = KERN_FAILURE - } - - // Send the reply - let replySize = reply.Head.msgh_size - try kernCheck { reply.withMsgHeaderPointer { replyPtr in - mach_msg(replyPtr, MACH_SEND_MSG, replySize, 0, UInt32(MACH_PORT_NULL), 0, UInt32(MACH_PORT_NULL)) - } } - } catch let error as NSError where (error.domain == NSMachErrorDomain && (error.code == Int(MACH_RCV_PORT_CHANGED) || error.code == Int(MACH_RCV_INVALID_NAME))) { - // Port was already closed before we started or closed while we were listening. - // This means the controlling thread shut down. - return nil - } catch { - // Should never be reached but this is testing code, don't try to recover, just abort - fatalError("Mach message error: \(error)") - } } while true + mach_msg_server(unsafeBitCast(mach_exc_server as (@convention(c) (UnsafeMutablePointer, UnsafeMutablePointer) -> boolean_t), to: (@convention(c) (UnsafeMutablePointer?, UnsafeMutablePointer?) -> boolean_t).self), 4096, context.currentExceptionPort, MACH_MSG_OPTION_NONE) + return nil } /// Run the provided block. If a mach "BAD_INSTRUCTION" exception is raised, catch it and return a BadInstructionException (which captures stack information about the throw site, if desired). Otherwise return nil. @@ -170,7 +128,10 @@ public func catchBadInstruction(in block: @escaping () -> Void) -> BadInstructio } defer { // 7. Cleanup the mach port - mach_port_destroy(mach_task_self_, context.currentExceptionPort) + // When the reference count for the right goes down to 0, it triggers the right to be deallocated + mach_port_mod_refs(mach_task_self_, context.currentExceptionPort, MACH_PORT_RIGHT_RECEIVE, -1) + // All rights deallocated, can deallocate the name/port + mach_port_deallocate(mach_task_self_, context.currentExceptionPort) } try kernCheck { diff --git a/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift b/Example/Pods/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift similarity index 97% rename from Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift rename to Example/Pods/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift index ccce5c59d..ad01ccfe4 100644 --- a/Example/Pods/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift +++ b/Example/Pods/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift @@ -18,7 +18,7 @@ // IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. // -#if (os(macOS) || os(iOS)) && (arch(x86_64) || arch(arm64)) +#if (os(macOS) || os(iOS) || os(visionOS)) && (arch(x86_64) || arch(arm64)) import Darwin diff --git a/Example/Pods/Local Podspecs/ConsentViewController.podspec.json b/Example/Pods/Local Podspecs/ConsentViewController.podspec.json index 22bf3b75e..be0bd4e5d 100644 --- a/Example/Pods/Local Podspecs/ConsentViewController.podspec.json +++ b/Example/Pods/Local Podspecs/ConsentViewController.podspec.json @@ -1,6 +1,6 @@ { "name": "ConsentViewController", - "version": "7.12.7-beta.4", + "version": "7.12.7-rc.3", "summary": "SourcePoint's ConsentViewController to handle privacy consents.", "static_framework": true, "homepage": "https://www.sourcepoint.com", @@ -13,7 +13,7 @@ }, "source": { "git": "https://github.com/SourcePointUSA/ios-cmp-app.git", - "tag": "7.12.7-beta.4" + "tag": "7.12.7-rc.3" }, "swift_versions": "5.1", "source_files": "ConsentViewController/Classes/**/*", diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index 14f4f4352..869d47eae 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -1,6 +1,15 @@ PODS: - - ConsentViewController (7.12.7-beta.4): + - ConsentViewController (7.12.7-rc.3): - SPMobileCore (= 0.1.13) + - CwlCatchException (2.2.1): + - CwlCatchExceptionSupport (~> 2.2.1) + - CwlCatchExceptionSupport (2.2.1) + - CwlMachBadInstructionHandler (2.2.2) + - CwlPosixPreconditionTesting (2.2.2) + - CwlPreconditionTesting (2.2.2): + - CwlCatchException (~> 2.2.1) + - CwlMachBadInstructionHandler (~> 2.2.2) + - CwlPosixPreconditionTesting (~> 2.2.2) - FirebaseAnalytics (11.13.0): - FirebaseAnalytics/AdIdSupport (= 11.13.0) - FirebaseCore (~> 11.13.0) @@ -123,9 +132,10 @@ PODS: - nanopb/encode (= 3.30910.0) - nanopb/decode (3.30910.0) - nanopb/encode (3.30910.0) - - Nimble (10.0.0) + - Nimble (13.7.0): + - CwlPreconditionTesting (~> 2.2.0) - PromisesObjC (2.4.0) - - Quick (5.0.1) + - Quick (7.6.2) - SPMobileCore (0.1.13) - SwiftLint (0.59.1) - Wormholy (1.7.0) @@ -135,13 +145,18 @@ DEPENDENCIES: - FirebaseAnalytics - IQKeyboardManagerSwift - JSONView - - Nimble (= 10.0.0) - - Quick + - Nimble (= 13.7.0) + - Quick (= 7.6.2) - SwiftLint - Wormholy SPEC REPOS: trunk: + - CwlCatchException + - CwlCatchExceptionSupport + - CwlMachBadInstructionHandler + - CwlPosixPreconditionTesting + - CwlPreconditionTesting - FirebaseAnalytics - FirebaseCore - FirebaseCoreInternal @@ -170,7 +185,12 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - ConsentViewController: f5a72b3c2ff72858314cc4df3a1200c33556656c + ConsentViewController: 902ee261f3416c50a915dadf2f28ecaca00e9546 + CwlCatchException: 7acc161b299a6de7f0a46a6ed741eae2c8b4d75a + CwlCatchExceptionSupport: 54ccab8d8c78907b57f99717fb19d4cc3bce02dc + CwlMachBadInstructionHandler: dae4fdd124d45c9910ac240287cc7b898f4502a1 + CwlPosixPreconditionTesting: ecd095aa2129e740b44301c34571e8d85906fb88 + CwlPreconditionTesting: 67a0047dd4de4382b93442c0e3f25207f984f35a FirebaseAnalytics: 630349facf4a114a0977e5d7570e104261973287 FirebaseCore: c692c7f1c75305ab6aff2b367f25e11d73aa8bd0 FirebaseCoreInternal: 29d7b3af4aaf0b8f3ed20b568c13df399b06f68c @@ -187,13 +207,13 @@ SPEC CHECKSUMS: IQTextView: ae13b4922f22e6f027f62c557d9f4f236b19d5c7 JSONView: ba9049102fae7ad70de40234d0b7c60986e61e4c nanopb: fad817b59e0457d11a5dfbde799381cd727c1275 - Nimble: 5316ef81a170ce87baf72dd961f22f89a602ff84 + Nimble: 0d202a1be6a346929560c212341240339875b6f0 PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47 - Quick: 749aa754fd1e7d984f2000fe051e18a3a9809179 + Quick: b8bec97cd4b9f21da0472d45580f763b801fc353 SPMobileCore: 2a77dd31b40f1457ef9df14a0e72163fa00d87c0 SwiftLint: 3d48e2fb2a3468fdaccf049e5e755df22fb40c2c Wormholy: ab1c8c2f02f58587a0941deb0088555ffbf039a1 -PODFILE CHECKSUM: 0526c634af9b52682b5f269cb432f44d2cb1ab1a +PODFILE CHECKSUM: 6af712623e87f48887fdfc1a2ee251a83706b428 COCOAPODS: 1.16.2 diff --git a/Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift b/Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift deleted file mode 100644 index 2cb9b2918..000000000 --- a/Example/Pods/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift +++ /dev/null @@ -1,35 +0,0 @@ -// -// CwlCatchException.swift -// CwlAssertionTesting -// -// Created by Matt Gallagher on 2016/01/10. -// Copyright © 2016 Matt Gallagher ( https://www.cocoawithlove.com ). All rights reserved. -// -// Permission to use, copy, modify, and/or distribute this software for any -// purpose with or without fee is hereby granted, provided that the above -// copyright notice and this permission notice appear in all copies. -// -// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -// SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -// IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -// - -import Foundation - -#if SWIFT_PACKAGE -import CwlCatchExceptionSupport -#endif - -private func catchReturnTypeConverter(_ type: T.Type, block: @escaping () -> Void) -> T? { - return catchExceptionOfKind(type, block) as? T -} - -extension NSException { - public static func catchException(in block: @escaping () -> Void) -> Self? { - return catchReturnTypeConverter(self, block: block) - } -} diff --git a/Example/Pods/Nimble/README.md b/Example/Pods/Nimble/README.md index e92cbb2b6..f3b7ded3a 100644 --- a/Example/Pods/Nimble/README.md +++ b/Example/Pods/Nimble/README.md @@ -19,1653 +19,100 @@ expect(["Atlantic", "Pacific"]).toNot(contain("Mississippi")) expect(ocean.isClean).toEventually(beTruthy()) ``` -# How to Use Nimble +# Documentation - - -**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)* +Nimble's documentation is now lives in [Sources/Nimble/Nimble.docc](Sources/Nimble/Nimble.docc) +as a Documentation Catalog. You can easily browse it [quick.github.io/Nimble](https://quick.github.io/Nimble/documentation/nimble). -- [Some Background: Expressing Outcomes Using Assertions in XCTest](#some-background-expressing-outcomes-using-assertions-in-xctest) -- [Nimble: Expectations Using `expect(...).to`](#nimble-expectations-using-expectto) - - [Custom Failure Messages](#custom-failure-messages) - - [Type Safety](#type-safety) - - [Operator Overloads](#operator-overloads) - - [Lazily Computed Values](#lazily-computed-values) - - [C Primitives](#c-primitives) - - [Asynchronous Expectations](#asynchronous-expectations) - - [Objective-C Support](#objective-c-support) - - [Disabling Objective-C Shorthand](#disabling-objective-c-shorthand) -- [Built-in Matcher Functions](#built-in-matcher-functions) - - [Type Checking](#type-checking) - - [Equivalence](#equivalence) - - [Identity](#identity) - - [Comparisons](#comparisons) - - [Types/Classes](#typesclasses) - - [Truthiness](#truthiness) - - [Swift Assertions](#swift-assertions) - - [Swift Error Handling](#swift-error-handling) - - [Exceptions](#exceptions) - - [Collection Membership](#collection-membership) - - [Strings](#strings) - - [Collection Elements](#collection-elements) - - [Collection Count](#collection-count) - - [Notifications](#notifications) - - [Result](#result) - - [Matching a value to any of a group of matchers](#matching-a-value-to-any-of-a-group-of-matchers) - - [Custom Validation](#custom-validation) -- [Writing Your Own Matchers](#writing-your-own-matchers) - - [PredicateResult](#predicateresult) - - [Lazy Evaluation](#lazy-evaluation) - - [Type Checking via Swift Generics](#type-checking-via-swift-generics) - - [Customizing Failure Messages](#customizing-failure-messages) - - [Basic Customization](#basic-customization) - - [Full Customization](#full-customization) - - [Supporting Objective-C](#supporting-objective-c) - - [Properly Handling `nil` in Objective-C Matchers](#properly-handling-nil-in-objective-c-matchers) - - [Migrating from the Old Matcher API](#migrating-from-the-old-matcher-api) -- [Installing Nimble](#installing-nimble) - - [Installing Nimble as a Submodule](#installing-nimble-as-a-submodule) - - [Installing Nimble via CocoaPods](#installing-nimble-via-cocoapods) - - [Using Nimble without XCTest](#using-nimble-without-xctest) - - - -# Some Background: Expressing Outcomes Using Assertions in XCTest - -Apple's Xcode includes the XCTest framework, which provides -assertion macros to test whether code behaves properly. -For example, to assert that `1 + 1 = 2`, XCTest has you write: - -```swift -// Swift - -XCTAssertEqual(1 + 1, 2, "expected one plus one to equal two") -``` - -Or, in Objective-C: - -```objc -// Objective-C - -XCTAssertEqual(1 + 1, 2, @"expected one plus one to equal two"); -``` - -XCTest assertions have a couple of drawbacks: - -1. **Not enough macros.** There's no easy way to assert that a string - contains a particular substring, or that a number is less than or - equal to another. -2. **It's hard to write asynchronous tests.** XCTest forces you to write - a lot of boilerplate code. - -Nimble addresses these concerns. - -# Nimble: Expectations Using `expect(...).to` - -Nimble allows you to express expectations using a natural, -easily understood language: - -```swift -// Swift - -import Nimble - -expect(seagull.squawk).to(equal("Squee!")) -``` - -```objc -// Objective-C - -@import Nimble; - -expect(seagull.squawk).to(equal(@"Squee!")); -``` - -> The `expect` function autocompletes to include `file:` and `line:`, - but these parameters are optional. Use the default values to have - Xcode highlight the correct line when an expectation is not met. - -To perform the opposite expectation--to assert something is *not* -equal--use `toNot` or `notTo`: - -```swift -// Swift - -import Nimble - -expect(seagull.squawk).toNot(equal("Oh, hello there!")) -expect(seagull.squawk).notTo(equal("Oh, hello there!")) -``` - -```objc -// Objective-C - -@import Nimble; - -expect(seagull.squawk).toNot(equal(@"Oh, hello there!")); -expect(seagull.squawk).notTo(equal(@"Oh, hello there!")); -``` - -## Custom Failure Messages - -Would you like to add more information to the test's failure messages? Use the `description` optional argument to add your own text: - -```swift -// Swift - -expect(1 + 1).to(equal(3)) -// failed - expected to equal <3>, got <2> - -expect(1 + 1).to(equal(3), description: "Make sure libKindergartenMath is loaded") -// failed - Make sure libKindergartenMath is loaded -// expected to equal <3>, got <2> -``` - -Or the *WithDescription version in Objective-C: - -```objc -// Objective-C - -@import Nimble; - -expect(@(1+1)).to(equal(@3)); -// failed - expected to equal <3.0000>, got <2.0000> - -expect(@(1+1)).toWithDescription(equal(@3), @"Make sure libKindergartenMath is loaded"); -// failed - Make sure libKindergartenMath is loaded -// expected to equal <3.0000>, got <2.0000> -``` - -## Type Safety - -Nimble makes sure you don't compare two types that don't match: - -```swift -// Swift - -// Does not compile: -expect(1 + 1).to(equal("Squee!")) -``` - -> Nimble uses generics--only available in Swift--to ensure - type correctness. That means type checking is - not available when using Nimble in Objective-C. :sob: - -## Operator Overloads - -Tired of so much typing? With Nimble, you can use overloaded operators -like `==` for equivalence, or `>` for comparisons: - -```swift -// Swift - -// Passes if squawk does not equal "Hi!": -expect(seagull.squawk) != "Hi!" - -// Passes if 10 is greater than 2: -expect(10) > 2 -``` - -> Operator overloads are only available in Swift, so you won't be able - to use this syntax in Objective-C. :broken_heart: - -## Lazily Computed Values - -The `expect` function doesn't evaluate the value it's given until it's -time to match. So Nimble can test whether an expression raises an -exception once evaluated: - -```swift -// Swift - -// Note: Swift currently doesn't have exceptions. -// Only Objective-C code can raise exceptions -// that Nimble will catch. -// (see https://github.com/Quick/Nimble/issues/220#issuecomment-172667064) -let exception = NSException( - name: NSInternalInconsistencyException, - reason: "Not enough fish in the sea.", - userInfo: ["something": "is fishy"]) -expect { exception.raise() }.to(raiseException()) - -// Also, you can customize raiseException to be more specific -expect { exception.raise() }.to(raiseException(named: NSInternalInconsistencyException)) -expect { exception.raise() }.to(raiseException( - named: NSInternalInconsistencyException, - reason: "Not enough fish in the sea")) -expect { exception.raise() }.to(raiseException( - named: NSInternalInconsistencyException, - reason: "Not enough fish in the sea", - userInfo: ["something": "is fishy"])) -``` - -Objective-C works the same way, but you must use the `expectAction` -macro when making an expectation on an expression that has no return -value: - -```objc -// Objective-C - -NSException *exception = [NSException exceptionWithName:NSInternalInconsistencyException - reason:@"Not enough fish in the sea." - userInfo:nil]; -expectAction(^{ [exception raise]; }).to(raiseException()); - -// Use the property-block syntax to be more specific. -expectAction(^{ [exception raise]; }).to(raiseException().named(NSInternalInconsistencyException)); -expectAction(^{ [exception raise]; }).to(raiseException(). - named(NSInternalInconsistencyException). - reason("Not enough fish in the sea")); -expectAction(^{ [exception raise]; }).to(raiseException(). - named(NSInternalInconsistencyException). - reason("Not enough fish in the sea"). - userInfo(@{@"something": @"is fishy"})); - -// You can also pass a block for custom matching of the raised exception -expectAction(exception.raise()).to(raiseException().satisfyingBlock(^(NSException *exception) { - expect(exception.name).to(beginWith(NSInternalInconsistencyException)); -})); -``` - -## C Primitives - -Some testing frameworks make it hard to test primitive C values. -In Nimble, it just works: - -```swift -// Swift - -let actual: CInt = 1 -let expectedValue: CInt = 1 -expect(actual).to(equal(expectedValue)) -``` - -In fact, Nimble uses type inference, so you can write the above -without explicitly specifying both types: - -```swift -// Swift - -expect(1 as CInt).to(equal(1)) -``` - -> In Objective-C, Nimble only supports Objective-C objects. To - make expectations on primitive C values, wrap then in an object - literal: - -```objc -expect(@(1 + 1)).to(equal(@2)); -``` - -## Asynchronous Expectations - -In Nimble, it's easy to make expectations on values that are updated -asynchronously. Just use `toEventually` or `toEventuallyNot`: - -```swift -// Swift -DispatchQueue.main.async { - ocean.add("dolphins") - ocean.add("whales") -} -expect(ocean).toEventually(contain("dolphins", "whales")) -``` - - -```objc -// Objective-C - -dispatch_async(dispatch_get_main_queue(), ^{ - [ocean add:@"dolphins"]; - [ocean add:@"whales"]; -}); -expect(ocean).toEventually(contain(@"dolphins", @"whales")); -``` - -Note: toEventually triggers its polls on the main thread. Blocking the main -thread will cause Nimble to stop the run loop. This can cause test pollution -for whatever incomplete code that was running on the main thread. Blocking the -main thread can be caused by blocking IO, calls to sleep(), deadlocks, and -synchronous IPC. - -In the above example, `ocean` is constantly re-evaluated. If it ever -contains dolphins and whales, the expectation passes. If `ocean` still -doesn't contain them, even after being continuously re-evaluated for one -whole second, the expectation fails. - -You can also test that a value always or never matches throughout the length of the timeout. Use `toNever` and `toAlways` for this: - -```swift -// Swift -ocean.add("dolphins") -expect(ocean).toAlways(contain("dolphins")) -expect(ocean).toNever(contain("hares")) -``` - -```objc -// Objective-C -[ocean add:@"dolphins"] -expect(ocean).toAlways(contain(@"dolphins")) -expect(ocean).toNever(contain(@"hares")) -``` - -Sometimes it takes more than a second for a value to update. In those -cases, use the `timeout` parameter: - -```swift -// Swift - -// Waits three seconds for ocean to contain "starfish": -expect(ocean).toEventually(contain("starfish"), timeout: .seconds(3)) - -// Evaluate someValue every 0.2 seconds repeatedly until it equals 100, or fails if it timeouts after 5.5 seconds. -expect(someValue).toEventually(equal(100), timeout: .milliseconds(5500), pollInterval: .milliseconds(200)) -``` - -```objc -// Objective-C - -// Waits three seconds for ocean to contain "starfish": -expect(ocean).withTimeout(3).toEventually(contain(@"starfish")); -``` - -You can also provide a callback by using the `waitUntil` function: - -```swift -// Swift - -waitUntil { done in - ocean.goFish { success in - expect(success).to(beTrue()) - done() - } -} -``` - -```objc -// Objective-C - -waitUntil(^(void (^done)(void)){ - [ocean goFishWithHandler:^(BOOL success){ - expect(success).to(beTrue()); - done(); - }]; -}); -``` - -`waitUntil` also optionally takes a timeout parameter: - -```swift -// Swift - -waitUntil(timeout: .seconds(10)) { done in - ocean.goFish { success in - expect(success).to(beTrue()) - done() - } -} -``` - -```objc -// Objective-C - -waitUntilTimeout(10, ^(void (^done)(void)){ - [ocean goFishWithHandler:^(BOOL success){ - expect(success).to(beTrue()); - done(); - }]; -}); -``` - -Note: `waitUntil` triggers its timeout code on the main thread. Blocking the main -thread will cause Nimble to stop the run loop to continue. This can cause test -pollution for whatever incomplete code that was running on the main thread. -Blocking the main thread can be caused by blocking IO, calls to sleep(), -deadlocks, and synchronous IPC. - -In some cases (e.g. when running on slower machines) it can be useful to modify -the default timeout and poll interval values. This can be done as follows: - -```swift -// Swift - -// Increase the global timeout to 5 seconds: -Nimble.AsyncDefaults.timeout = .seconds(5) - -// Slow the polling interval to 0.1 seconds: -Nimble.AsyncDefaults.pollInterval = .milliseconds(100) -``` - -## Objective-C Support - -Nimble has full support for Objective-C. However, there are two things -to keep in mind when using Nimble in Objective-C: - -1. All parameters passed to the `expect` function, as well as matcher - functions like `equal`, must be Objective-C objects or can be converted into - an `NSObject` equivalent: - - ```objc - // Objective-C - - @import Nimble; - - expect(@(1 + 1)).to(equal(@2)); - expect(@"Hello world").to(contain(@"world")); - - // Boxed as NSNumber * - expect(2).to(equal(2)); - expect(1.2).to(beLessThan(2.0)); - expect(true).to(beTruthy()); - - // Boxed as NSString * - expect("Hello world").to(equal("Hello world")); - - // Boxed as NSRange - expect(NSMakeRange(1, 10)).to(equal(NSMakeRange(1, 10))); - ``` - -2. To make an expectation on an expression that does not return a value, - such as `-[NSException raise]`, use `expectAction` instead of - `expect`: - - ```objc - // Objective-C - - expectAction(^{ [exception raise]; }).to(raiseException()); - ``` - -The following types are currently converted to an `NSObject` type: - - - **C Numeric types** are converted to `NSNumber *` - - `NSRange` is converted to `NSValue *` - - `char *` is converted to `NSString *` - -For the following matchers: - -- `equal` -- `beGreaterThan` -- `beGreaterThanOrEqual` -- `beLessThan` -- `beLessThanOrEqual` -- `beCloseTo` -- `beTrue` -- `beFalse` -- `beTruthy` -- `beFalsy` -- `haveCount` - -If you would like to see more, [file an issue](https://github.com/Quick/Nimble/issues). - -## Disabling Objective-C Shorthand - -Nimble provides a shorthand for expressing expectations using the -`expect` function. To disable this shorthand in Objective-C, define the -`NIMBLE_DISABLE_SHORT_SYNTAX` macro somewhere in your code before -importing Nimble: - -```objc -#define NIMBLE_DISABLE_SHORT_SYNTAX 1 - -@import Nimble; - -NMB_expect(^{ return seagull.squawk; }, __FILE__, __LINE__).to(NMB_equal(@"Squee!")); -``` - -> Disabling the shorthand is useful if you're testing functions with - names that conflict with Nimble functions, such as `expect` or - `equal`. If that's not the case, there's no point in disabling the - shorthand. - -# Built-in Matcher Functions - -Nimble includes a wide variety of matcher functions. - -## Type Checking - -Nimble supports checking the type membership of any kind of object, whether -Objective-C conformant or not: - -```swift -// Swift - -protocol SomeProtocol{} -class SomeClassConformingToProtocol: SomeProtocol{} -struct SomeStructConformingToProtocol: SomeProtocol{} - -// The following tests pass -expect(1).to(beAKindOf(Int.self)) -expect("turtle").to(beAKindOf(String.self)) - -let classObject = SomeClassConformingToProtocol() -expect(classObject).to(beAKindOf(SomeProtocol.self)) -expect(classObject).to(beAKindOf(SomeClassConformingToProtocol.self)) -expect(classObject).toNot(beAKindOf(SomeStructConformingToProtocol.self)) - -let structObject = SomeStructConformingToProtocol() -expect(structObject).to(beAKindOf(SomeProtocol.self)) -expect(structObject).to(beAKindOf(SomeStructConformingToProtocol.self)) -expect(structObject).toNot(beAKindOf(SomeClassConformingToProtocol.self)) -``` - -```objc -// Objective-C - -// The following tests pass -NSMutableArray *array = [NSMutableArray array]; -expect(array).to(beAKindOf([NSArray class])); -expect(@1).toNot(beAKindOf([NSNull class])); -``` - -Objects can be tested for their exact types using the `beAnInstanceOf` matcher: - -```swift -// Swift - -protocol SomeProtocol{} -class SomeClassConformingToProtocol: SomeProtocol{} -struct SomeStructConformingToProtocol: SomeProtocol{} - -// Unlike the 'beKindOf' matcher, the 'beAnInstanceOf' matcher only -// passes if the object is the EXACT type requested. The following -// tests pass -- note its behavior when working in an inheritance hierarchy. -expect(1).to(beAnInstanceOf(Int.self)) -expect("turtle").to(beAnInstanceOf(String.self)) - -let classObject = SomeClassConformingToProtocol() -expect(classObject).toNot(beAnInstanceOf(SomeProtocol.self)) -expect(classObject).to(beAnInstanceOf(SomeClassConformingToProtocol.self)) -expect(classObject).toNot(beAnInstanceOf(SomeStructConformingToProtocol.self)) - -let structObject = SomeStructConformingToProtocol() -expect(structObject).toNot(beAnInstanceOf(SomeProtocol.self)) -expect(structObject).to(beAnInstanceOf(SomeStructConformingToProtocol.self)) -expect(structObject).toNot(beAnInstanceOf(SomeClassConformingToProtocol.self)) -``` - -## Equivalence - -```swift -// Swift - -// Passes if 'actual' is equivalent to 'expected': -expect(actual).to(equal(expected)) -expect(actual) == expected - -// Passes if 'actual' is not equivalent to 'expected': -expect(actual).toNot(equal(expected)) -expect(actual) != expected -``` - -```objc -// Objective-C - -// Passes if 'actual' is equivalent to 'expected': -expect(actual).to(equal(expected)) - -// Passes if 'actual' is not equivalent to 'expected': -expect(actual).toNot(equal(expected)) -``` - -Values must be `Equatable`, `Comparable`, or subclasses of `NSObject`. -`equal` will always fail when used to compare one or more `nil` values. - -## Identity - -```swift -// Swift - -// Passes if 'actual' has the same pointer address as 'expected': -expect(actual).to(beIdenticalTo(expected)) -expect(actual) === expected - -// Passes if 'actual' does not have the same pointer address as 'expected': -expect(actual).toNot(beIdenticalTo(expected)) -expect(actual) !== expected -``` - -It is important to remember that `beIdenticalTo` only makes sense when comparing -types with reference semantics, which have a notion of identity. In Swift, -that means types that are defined as a `class`. - -This matcher will not work when comparing types with value semantics such as -those defined as a `struct` or `enum`. If you need to compare two value types, -consider what it means for instances of your type to be identical. This may mean -comparing individual properties or, if it makes sense to do so, conforming your type -to `Equatable` and using Nimble's equivalence matchers instead. - - -```objc -// Objective-C - -// Passes if 'actual' has the same pointer address as 'expected': -expect(actual).to(beIdenticalTo(expected)); - -// Passes if 'actual' does not have the same pointer address as 'expected': -expect(actual).toNot(beIdenticalTo(expected)); -``` - -## Comparisons - -```swift -// Swift - -expect(actual).to(beLessThan(expected)) -expect(actual) < expected - -expect(actual).to(beLessThanOrEqualTo(expected)) -expect(actual) <= expected - -expect(actual).to(beGreaterThan(expected)) -expect(actual) > expected - -expect(actual).to(beGreaterThanOrEqualTo(expected)) -expect(actual) >= expected -``` - -```objc -// Objective-C - -expect(actual).to(beLessThan(expected)); -expect(actual).to(beLessThanOrEqualTo(expected)); -expect(actual).to(beGreaterThan(expected)); -expect(actual).to(beGreaterThanOrEqualTo(expected)); -``` - -> Values given to the comparison matchers above must implement - `Comparable`. - -Because of how computers represent floating point numbers, assertions -that two floating point numbers be equal will sometimes fail. To express -that two numbers should be close to one another within a certain margin -of error, use `beCloseTo`: - -```swift -// Swift - -expect(actual).to(beCloseTo(expected, within: delta)) -``` - -```objc -// Objective-C - -expect(actual).to(beCloseTo(expected).within(delta)); -``` - -For example, to assert that `10.01` is close to `10`, you can write: - -```swift -// Swift - -expect(10.01).to(beCloseTo(10, within: 0.1)) -``` - -```objc -// Objective-C - -expect(@(10.01)).to(beCloseTo(@10).within(0.1)); -``` - -There is also an operator shortcut available in Swift: - -```swift -// Swift - -expect(actual) ≈ expected -expect(actual) ≈ (expected, delta) - -``` -(Type option+x to get `≈` on a U.S. keyboard) - -The former version uses the default delta of 0.0001. Here is yet another way to do this: - -```swift -// Swift - -expect(actual) ≈ expected ± delta -expect(actual) == expected ± delta - -``` -(Type option+shift+= to get `±` on a U.S. keyboard) - -If you are comparing arrays of floating point numbers, you'll find the following useful: - -```swift -// Swift - -expect([0.0, 2.0]) ≈ [0.0001, 2.0001] -expect([0.0, 2.0]).to(beCloseTo([0.1, 2.1], within: 0.1)) - -``` - -> Values given to the `beCloseTo` matcher must conform to `FloatingPoint`. - -## Types/Classes - -```swift -// Swift - -// Passes if 'instance' is an instance of 'aClass': -expect(instance).to(beAnInstanceOf(aClass)) - -// Passes if 'instance' is an instance of 'aClass' or any of its subclasses: -expect(instance).to(beAKindOf(aClass)) -``` - -```objc -// Objective-C - -// Passes if 'instance' is an instance of 'aClass': -expect(instance).to(beAnInstanceOf(aClass)); - -// Passes if 'instance' is an instance of 'aClass' or any of its subclasses: -expect(instance).to(beAKindOf(aClass)); -``` - -> Instances must be Objective-C objects: subclasses of `NSObject`, - or Swift objects bridged to Objective-C with the `@objc` prefix. - -For example, to assert that `dolphin` is a kind of `Mammal`: - -```swift -// Swift - -expect(dolphin).to(beAKindOf(Mammal)) -``` - -```objc -// Objective-C - -expect(dolphin).to(beAKindOf([Mammal class])); -``` - -> `beAnInstanceOf` uses the `-[NSObject isMemberOfClass:]` method to - test membership. `beAKindOf` uses `-[NSObject isKindOfClass:]`. - -## Truthiness - -```swift -// Passes if 'actual' is not nil, true, or an object with a boolean value of true: -expect(actual).to(beTruthy()) - -// Passes if 'actual' is only true (not nil or an object conforming to Boolean true): -expect(actual).to(beTrue()) - -// Passes if 'actual' is nil, false, or an object with a boolean value of false: -expect(actual).to(beFalsy()) - -// Passes if 'actual' is only false (not nil or an object conforming to Boolean false): -expect(actual).to(beFalse()) - -// Passes if 'actual' is nil: -expect(actual).to(beNil()) -``` - -```objc -// Objective-C - -// Passes if 'actual' is not nil, true, or an object with a boolean value of true: -expect(actual).to(beTruthy()); - -// Passes if 'actual' is only true (not nil or an object conforming to Boolean true): -expect(actual).to(beTrue()); - -// Passes if 'actual' is nil, false, or an object with a boolean value of false: -expect(actual).to(beFalsy()); - -// Passes if 'actual' is only false (not nil or an object conforming to Boolean false): -expect(actual).to(beFalse()); - -// Passes if 'actual' is nil: -expect(actual).to(beNil()); -``` - -## Swift Assertions - -If you're using Swift, you can use the `throwAssertion` matcher to check if an assertion is thrown (e.g. `fatalError()`). This is made possible by [@mattgallagher](https://github.com/mattgallagher)'s [CwlPreconditionTesting](https://github.com/mattgallagher/CwlPreconditionTesting) library. - -```swift -// Swift - -// Passes if 'somethingThatThrows()' throws an assertion, -// such as by calling 'fatalError()' or if a precondition fails: -expect { try somethingThatThrows() }.to(throwAssertion()) -expect { () -> Void in fatalError() }.to(throwAssertion()) -expect { precondition(false) }.to(throwAssertion()) - -// Passes if throwing an NSError is not equal to throwing an assertion: -expect { throw NSError(domain: "test", code: 0, userInfo: nil) }.toNot(throwAssertion()) - -// Passes if the code after the precondition check is not run: -var reachedPoint1 = false -var reachedPoint2 = false -expect { - reachedPoint1 = true - precondition(false, "condition message") - reachedPoint2 = true -}.to(throwAssertion()) - -expect(reachedPoint1) == true -expect(reachedPoint2) == false -``` - -Notes: - -* This feature is only available in Swift. -* The tvOS simulator is supported, but using a different mechanism, requiring you to turn off the `Debug executable` scheme setting for your tvOS scheme's Test configuration. - -## Swift Error Handling - -You can use the `throwError` matcher to check if an error is thrown. - -```swift -// Swift - -// Passes if 'somethingThatThrows()' throws an 'Error': -expect { try somethingThatThrows() }.to(throwError()) - -// Passes if 'somethingThatThrows()' throws an error within a particular domain: -expect { try somethingThatThrows() }.to(throwError { (error: Error) in - expect(error._domain).to(equal(NSCocoaErrorDomain)) -}) - -// Passes if 'somethingThatThrows()' throws a particular error enum case: -expect { try somethingThatThrows() }.to(throwError(NSCocoaError.PropertyListReadCorruptError)) - -// Passes if 'somethingThatThrows()' throws an error of a particular type: -expect { try somethingThatThrows() }.to(throwError(errorType: NimbleError.self)) -``` - -When working directly with `Error` values, using the `matchError` matcher -allows you to perform certain checks on the error itself without having to -explicitly cast the error. - -The `matchError` matcher allows you to check whether or not the error: - -- is the same _type_ of error you are expecting. -- represents a particular error value that you are expecting. - -This can be useful when using `Result` or `Promise` types, for example. - -```swift -// Swift - -let actual: Error = ... - -// Passes if 'actual' represents any error value from the NimbleErrorEnum type: -expect(actual).to(matchError(NimbleErrorEnum.self)) - -// Passes if 'actual' represents the case 'timeout' from the NimbleErrorEnum type: -expect(actual).to(matchError(NimbleErrorEnum.timeout)) - -// Passes if 'actual' contains an NSError equal to the one provided: -expect(actual).to(matchError(NSError(domain: "err", code: 123, userInfo: nil))) -``` - -Note: This feature is only available in Swift. - -## Exceptions - -```swift -// Swift - -// Passes if 'actual', when evaluated, raises an exception: -expect(actual).to(raiseException()) - -// Passes if 'actual' raises an exception with the given name: -expect(actual).to(raiseException(named: name)) - -// Passes if 'actual' raises an exception with the given name and reason: -expect(actual).to(raiseException(named: name, reason: reason)) - -// Passes if 'actual' raises an exception which passes expectations defined in the given closure: -// (in this case, if the exception's name begins with "a r") -expect { exception.raise() }.to(raiseException { (exception: NSException) in - expect(exception.name).to(beginWith("a r")) -}) -``` - -```objc -// Objective-C - -// Passes if 'actual', when evaluated, raises an exception: -expect(actual).to(raiseException()) - -// Passes if 'actual' raises an exception with the given name -expect(actual).to(raiseException().named(name)) - -// Passes if 'actual' raises an exception with the given name and reason: -expect(actual).to(raiseException().named(name).reason(reason)) - -// Passes if 'actual' raises an exception and it passes expectations defined in the given block: -// (in this case, if name begins with "a r") -expect(actual).to(raiseException().satisfyingBlock(^(NSException *exception) { - expect(exception.name).to(beginWith(@"a r")); -})); -``` - -Note: Swift currently doesn't have exceptions (see [#220](https://github.com/Quick/Nimble/issues/220#issuecomment-172667064)). -Only Objective-C code can raise exceptions that Nimble will catch. - -## Collection Membership - -```swift -// Swift - -// Passes if all of the expected values are members of 'actual': -expect(actual).to(contain(expected...)) - -// Passes if 'actual' is empty (i.e. it contains no elements): -expect(actual).to(beEmpty()) -``` - -```objc -// Objective-C - -// Passes if expected is a member of 'actual': -expect(actual).to(contain(expected)); - -// Passes if 'actual' is empty (i.e. it contains no elements): -expect(actual).to(beEmpty()); -``` - -> In Swift `contain` takes any number of arguments. The expectation - passes if all of them are members of the collection. In Objective-C, - `contain` only takes one argument [for now](https://github.com/Quick/Nimble/issues/27). - -For example, to assert that a list of sea creature names contains -"dolphin" and "starfish": - -```swift -// Swift - -expect(["whale", "dolphin", "starfish"]).to(contain("dolphin", "starfish")) -``` - -```objc -// Objective-C - -expect(@[@"whale", @"dolphin", @"starfish"]).to(contain(@"dolphin")); -expect(@[@"whale", @"dolphin", @"starfish"]).to(contain(@"starfish")); -``` - -> `contain` and `beEmpty` expect collections to be instances of - `NSArray`, `NSSet`, or a Swift collection composed of `Equatable` elements. - -To test whether a set of elements is present at the beginning or end of -an ordered collection, use `beginWith` and `endWith`: - -```swift -// Swift - -// Passes if the elements in expected appear at the beginning of 'actual': -expect(actual).to(beginWith(expected...)) - -// Passes if the the elements in expected come at the end of 'actual': -expect(actual).to(endWith(expected...)) -``` - -```objc -// Objective-C - -// Passes if the elements in expected appear at the beginning of 'actual': -expect(actual).to(beginWith(expected)); - -// Passes if the the elements in expected come at the end of 'actual': -expect(actual).to(endWith(expected)); -``` - -> `beginWith` and `endWith` expect collections to be instances of - `NSArray`, or ordered Swift collections composed of `Equatable` - elements. - - Like `contain`, in Objective-C `beginWith` and `endWith` only support - a single argument [for now](https://github.com/Quick/Nimble/issues/27). - -For code that returns collections of complex objects without a strict -ordering, there is the `containElementSatisfying` matcher: - -```swift -// Swift - -struct Turtle { - let color: String -} - -let turtles: [Turtle] = functionThatReturnsSomeTurtlesInAnyOrder() - -// This set of matchers passes regardless of whether the array is -// [{color: "blue"}, {color: "green"}] or [{color: "green"}, {color: "blue"}]: - -expect(turtles).to(containElementSatisfying({ turtle in - return turtle.color == "green" -})) -expect(turtles).to(containElementSatisfying({ turtle in - return turtle.color == "blue" -}, "that is a turtle with color 'blue'")) - -// The second matcher will incorporate the provided string in the error message -// should it fail -``` - -```objc -// Objective-C - -@interface Turtle : NSObject -@property (nonatomic, readonly, nonnull) NSString *color; -@end - -@implementation Turtle -@end - -NSArray * __nonnull turtles = functionThatReturnsSomeTurtlesInAnyOrder(); - -// This set of matchers passes regardless of whether the array is -// [{color: "blue"}, {color: "green"}] or [{color: "green"}, {color: "blue"}]: - -expect(turtles).to(containElementSatisfying(^BOOL(id __nonnull object) { - return [[turtle color] isEqualToString:@"green"]; -})); -expect(turtles).to(containElementSatisfying(^BOOL(id __nonnull object) { - return [[turtle color] isEqualToString:@"blue"]; -})); -``` - -For asserting on if the given `Comparable` value is inside of a `Range`, use the `beWithin` matcher. - -```swift -// Swift - -// Passes if 5 is within the range 1 through 10, inclusive -expect(5).to(beWithin(1...10)) - -// Passes if 5 is not within the range 2 through 4. -expect(5).toNot(beWithin(2..<5)) -``` - -## Strings - -```swift -// Swift - -// Passes if 'actual' contains 'substring': -expect(actual).to(contain(substring)) - -// Passes if 'actual' begins with 'prefix': -expect(actual).to(beginWith(prefix)) - -// Passes if 'actual' ends with 'suffix': -expect(actual).to(endWith(suffix)) - -// Passes if 'actual' represents the empty string, "": -expect(actual).to(beEmpty()) - -// Passes if 'actual' matches the regular expression defined in 'expected': -expect(actual).to(match(expected)) -``` - -```objc -// Objective-C - -// Passes if 'actual' contains 'substring': -expect(actual).to(contain(expected)); - -// Passes if 'actual' begins with 'prefix': -expect(actual).to(beginWith(prefix)); - -// Passes if 'actual' ends with 'suffix': -expect(actual).to(endWith(suffix)); - -// Passes if 'actual' represents the empty string, "": -expect(actual).to(beEmpty()); - -// Passes if 'actual' matches the regular expression defined in 'expected': -expect(actual).to(match(expected)) -``` - -## Collection Elements - -Nimble provides a means to check that all elements of a collection pass a given expectation. - -### Swift - -In Swift, the collection must be an instance of a type conforming to -`Sequence`. - -```swift -// Swift - -// Providing a custom function: -expect([1, 2, 3, 4]).to(allPass { $0 < 5 }) - -// Composing the expectation with another matcher: -expect([1, 2, 3, 4]).to(allPass(beLessThan(5))) -``` - -### Objective-C - -In Objective-C, the collection must be an instance of a type which implements -the `NSFastEnumeration` protocol, and whose elements are instances of a type -which subclasses `NSObject`. - -Additionally, unlike in Swift, there is no override to specify a custom -matcher function. - -```objc -// Objective-C - -expect(@[@1, @2, @3, @4]).to(allPass(beLessThan(@5))); -``` - -## Collection Count - -```swift -// Swift - -// Passes if 'actual' contains the 'expected' number of elements: -expect(actual).to(haveCount(expected)) - -// Passes if 'actual' does _not_ contain the 'expected' number of elements: -expect(actual).notTo(haveCount(expected)) -``` - -```objc -// Objective-C - -// Passes if 'actual' contains the 'expected' number of elements: -expect(actual).to(haveCount(expected)) - -// Passes if 'actual' does _not_ contain the 'expected' number of elements: -expect(actual).notTo(haveCount(expected)) -``` - -For Swift, the actual value must be an instance of a type conforming to `Collection`. -For example, instances of `Array`, `Dictionary`, or `Set`. - -For Objective-C, the actual value must be one of the following classes, or their subclasses: - - - `NSArray`, - - `NSDictionary`, - - `NSSet`, or - - `NSHashTable`. - -## Notifications - -```swift -// Swift -let testNotification = Notification(name: Notification.Name("Foo"), object: nil) - -// Passes if the closure in expect { ... } posts a notification to the default -// notification center. -expect { - NotificationCenter.default.post(testNotification) -}.to(postNotifications(equal([testNotification]))) - -// Passes if the closure in expect { ... } posts a notification to a given -// notification center -let notificationCenter = NotificationCenter() -expect { - notificationCenter.post(testNotification) -}.to(postNotifications(equal([testNotification]), from: notificationCenter)) - -// Passes if the closure in expect { ... } posts a notification with the provided names to a given -// notification center. Make sure to use this when running tests on Catalina, -// using DistributedNotificationCenter as there is currently no way -// of observing notifications without providing specific names. -let distributedNotificationCenter = DistributedNotificationCenter() -expect { - distributedNotificationCenter.post(testNotification) -}.toEventually(postDistributedNotifications(equal([testNotification]), - from: distributedNotificationCenter, - names: [testNotification.name])) -``` - -> This matcher is only available in Swift. - -## Result - -```swift -// Swift -let aResult: Result = .success("Hooray") - -// passes if result is .success -expect(aResult).to(beSuccess()) - -// passes if result value is .success and validates Success value -expect(aResult).to(beSuccess { value in - expect(value).to(equal("Hooray")) -}) - - -enum AnError: Error { - case somethingHappened -} -let otherResult: Result = .failure(.somethingHappened) - -// passes if result is .failure -expect(otherResult).to(beFailure()) - -// passes if result value is .failure and validates error -expect(otherResult).to(beFailure { error in - expect(error).to(matchError(AnError.somethingHappened)) -}) -``` - -> This matcher is only available in Swift. - -## Matching a value to any of a group of matchers - -```swift -// Swift - -// passes if actual is either less than 10 or greater than 20 -expect(actual).to(satisfyAnyOf(beLessThan(10), beGreaterThan(20))) - -// can include any number of matchers -- the following will pass -// **be careful** -- too many matchers can be the sign of an unfocused test -expect(6).to(satisfyAnyOf(equal(2), equal(3), equal(4), equal(5), equal(6), equal(7))) - -// in Swift you also have the option to use the || operator to achieve a similar function -expect(82).to(beLessThan(50) || beGreaterThan(80)) -``` - -```objc -// Objective-C - -// passes if actual is either less than 10 or greater than 20 -expect(actual).to(satisfyAnyOf(beLessThan(@10), beGreaterThan(@20))) - -// can include any number of matchers -- the following will pass -// **be careful** -- too many matchers can be the sign of an unfocused test -expect(@6).to(satisfyAnyOf(equal(@2), equal(@3), equal(@4), equal(@5), equal(@6), equal(@7))) -``` - -Note: This matcher allows you to chain any number of matchers together. This provides flexibility, - but if you find yourself chaining many matchers together in one test, consider whether you - could instead refactor that single test into multiple, more precisely focused tests for - better coverage. - -## Custom Validation - -```swift -// Swift - -// passes if .succeeded is returned from the closure -expect { - guard case .enumCaseWithAssociatedValueThatIDontCareAbout = actual else { - return .failed(reason: "wrong enum case") - } - - return .succeeded -}.to(succeed()) - -// passes if .failed is returned from the closure -expect { - guard case .enumCaseWithAssociatedValueThatIDontCareAbout = actual else { - return .failed(reason: "wrong enum case") - } - - return .succeeded -}.notTo(succeed()) -``` - -The `String` provided with `.failed()` is shown when the test fails. - -When using `toEventually()` be careful not to make state changes or run process intensive code since this closure will be ran many times. - -# Writing Your Own Matchers - -In Nimble, matchers are Swift functions that take an expected -value and return a `Predicate` closure. Take `equal`, for example: - -```swift -// Swift - -public func equal(expectedValue: T?) -> Predicate { - // Can be shortened to: - // Predicate { actual in ... } - // - // But shown with types here for clarity. - return Predicate { (actualExpression: Expression) throws -> PredicateResult in - let msg = ExpectationMessage.expectedActualValueTo("equal <\(expectedValue)>") - if let actualValue = try actualExpression.evaluate() { - return PredicateResult( - bool: actualValue == expectedValue!, - message: msg - ) - } else { - return PredicateResult( - status: .fail, - message: msg.appendedBeNilHint() - ) - } - } -} -``` - -The return value of a `Predicate` closure is a `PredicateResult` that indicates -whether the actual value matches the expectation and what error message to -display on failure. - -> The actual `equal` matcher function does not match when - `expected` are nil; the example above has been edited for brevity. - -Since matchers are just Swift functions, you can define them anywhere: -at the top of your test file, in a file shared by all of your tests, or -in an Xcode project you distribute to others. - -> If you write a matcher you think everyone can use, consider adding it - to Nimble's built-in set of matchers by sending a pull request! Or - distribute it yourself via GitHub. - -For examples of how to write your own matchers, just check out the -[`Matchers` directory](https://github.com/Quick/Nimble/tree/main/Sources/Nimble/Matchers) -to see how Nimble's built-in set of matchers are implemented. You can -also check out the tips below. - -## PredicateResult - -`PredicateResult` is the return struct that `Predicate` return to indicate -success and failure. A `PredicateResult` is made up of two values: -`PredicateStatus` and `ExpectationMessage`. - -Instead of a boolean, `PredicateStatus` captures a trinary set of values: - -```swift -// Swift - -public enum PredicateStatus { -// The predicate "passes" with the given expression -// eg - expect(1).to(equal(1)) -case matches - -// The predicate "fails" with the given expression -// eg - expect(1).toNot(equal(1)) -case doesNotMatch - -// The predicate never "passes" with the given expression, even if negated -// eg - expect(nil as Int?).toNot(equal(1)) -case fail - -// ... -} -``` - -Meanwhile, `ExpectationMessage` provides messaging semantics for error reporting. - -```swift -// Swift - -public indirect enum ExpectationMessage { -// Emits standard error message: -// eg - "expected to , got " -case expectedActualValueTo(/* message: */ String) - -// Allows any free-form message -// eg - "" -case fail(/* message: */ String) - -// ... -} -``` - -Predicates should usually depend on either `.expectedActualValueTo(..)` or -`.fail(..)` when reporting errors. Special cases can be used for the other enum -cases. - -Finally, if your Predicate utilizes other Predicates, you can utilize -`.appended(details:)` and `.appended(message:)` methods to annotate an existing -error with more details. - -A common message to append is failing on nils. For that, `.appendedBeNilHint()` -can be used. - -## Lazy Evaluation - -`actualExpression` is a lazy, memoized closure around the value provided to the -`expect` function. The expression can either be a closure or a value directly -passed to `expect(...)`. In order to determine whether that value matches, -custom matchers should call `actualExpression.evaluate()`: - -```swift -// Swift - -public func beNil() -> Predicate { - // Predicate.simpleNilable(..) automatically generates ExpectationMessage for - // us based on the string we provide to it. Also, the 'Nilable' postfix indicates - // that this Predicate supports matching against nil actualExpressions, instead of - // always resulting in a PredicateStatus.fail result -- which is true for - // Predicate.simple(..) - return Predicate.simpleNilable("be nil") { actualExpression in - let actualValue = try actualExpression.evaluate() - return PredicateStatus(bool: actualValue == nil) - } -} -``` - -In the above example, `actualExpression` is not `nil` -- it is a closure -that returns a value. The value it returns, which is accessed via the -`evaluate()` method, may be `nil`. If that value is `nil`, the `beNil` -matcher function returns `true`, indicating that the expectation passed. - -## Type Checking via Swift Generics - -Using Swift's generics, matchers can constrain the type of the actual value -passed to the `expect` function by modifying the return type. - -For example, the following matcher, `haveDescription`, only accepts actual -values that implement the `Printable` protocol. It checks their `description` -against the one provided to the matcher function, and passes if they are the same: - -```swift -// Swift - -public func haveDescription(description: String) -> Predicate { - return Predicate.simple("have description") { actual in - return PredicateStatus(bool: actual.evaluate().description == description) - } -} -``` - -## Customizing Failure Messages - -When using `Predicate.simple(..)` or `Predicate.simpleNilable(..)`, Nimble -outputs the following failure message when an expectation fails: - -```swift -// where `message` is the first string argument and -// `actual` is the actual value received in `expect(..)` -"expected to \(message), got <\(actual)>" -``` - -You can customize this message by modifying the way you create a `Predicate`. - -### Basic Customization - -For slightly more complex error messaging, receive the created failure message -with `Predicate.define(..)`: - -```swift -// Swift - -public func equal(_ expectedValue: T?) -> Predicate { - return Predicate.define("equal <\(stringify(expectedValue))>") { actualExpression, msg in - let actualValue = try actualExpression.evaluate() - let matches = actualValue == expectedValue && expectedValue != nil - if expectedValue == nil || actualValue == nil { - if expectedValue == nil && actualValue != nil { - return PredicateResult( - status: .fail, - message: msg.appendedBeNilHint() - ) - } - return PredicateResult(status: .fail, message: msg) - } - return PredicateResult(bool: matches, message: msg) - } -} -``` - -In the example above, `msg` is defined based on the string given to -`Predicate.define`. The code looks akin to: - -```swift -// Swift - -let msg = ExpectationMessage.expectedActualValueTo("equal <\(stringify(expectedValue))>") -``` - -### Full Customization - -To fully customize the behavior of the Predicate, use the overload that expects -a `PredicateResult` to be returned. - -Along with `PredicateResult`, there are other `ExpectationMessage` enum values you can use: +# Installing Nimble -```swift -public indirect enum ExpectationMessage { -// Emits standard error message: -// eg - "expected to , got " -case expectedActualValueTo(/* message: */ String) +> Nimble can be used on its own, or in conjunction with its sister + project, [Quick](https://github.com/Quick/Quick). To install both + Quick and Nimble, follow [the installation instructions in the Quick + Documentation](https://github.com/Quick/Quick/blob/main/Documentation/en-us/InstallingQuick.md). -// Allows any free-form message -// eg - "" -case fail(/* message: */ String) +Nimble can currently be installed in one of four ways: Swift Package Manager, +CocoaPods, Carthage or with git submodules. -// Emits standard error message with a custom actual value instead of the default. -// eg - "expected to , got " -case expectedCustomValueTo(/* message: */ String, /* actual: */ String) +## Swift Package Manager -// Emits standard error message without mentioning the actual value -// eg - "expected to " -case expectedTo(/* message: */ String) +### Xcode -// ... -} -``` +To install Nimble via Xcode's Swift Package Manager Integration: +Select your project configuration, then the project tab, then the Package +Dependencies tab. Click on the "plus" button at the bottom of the list, +then follow the wizard to add Quick to your project. Specify +`https://github.com/Quick/Nimble.git` as the url, and be sure to add +Nimble as a dependency of your unit test target, not your app target. -For matchers that compose other matchers, there are a handful of helper -functions to annotate messages. +### Package.Swift -`appended(message: String)` is used to append to the original failure message: +To use Nimble with Swift Package Manager to test your applications, add Nimble +to your `Package.Swift` and link it with your test target: ```swift -// produces "expected to be true, got (use beFalse() for inverse)" -// appended message do show up inline in Xcode. -.expectedActualValueTo("be true").appended(message: " (use beFalse() for inverse)") -``` +// swift-tools-version:5.7 -For a more comprehensive message that spans multiple lines, use -`appended(details: String)` instead: +import PackageDescription -```swift -// produces "expected to be true, got \n\nuse beFalse() for inverse\nor use beNil()" -// details do not show inline in Xcode, but do show up in test logs. -.expectedActualValueTo("be true").appended(details: "use beFalse() for inverse\nor use beNil()") +let package = Package( + name: "MyAwesomeLibrary", + products: [ + // ... + ], + dependencies: [ + // ... + .package(url: "https://github.com/Quick/Nimble.git", from: "13.0.0"), + ], + targets: [ + // Targets are the basic building blocks of a package. A target can define a module or a test suite. + // Targets can depend on other targets in this package, and on products in packages this package depends on. + .target( + name: "MyAwesomeLibrary", + dependencies: ...), + .testTarget( + name: "MyAwesomeLibraryTests", + dependencies: ["MyAwesomeLibrary", "Nimble"]), + ] +) ``` -## Supporting Objective-C - -To use a custom matcher written in Swift from Objective-C, you'll have -to extend the `NMBPredicate` class, adding a new class method for your -custom matcher. The example below defines the class method -`+[NMBPredicate beNilMatcher]`: - -```swift -// Swift - -extension NMBPredicate { - @objc public class func beNilMatcher() -> NMBPredicate { - return NMBPredicate { actualExpression in - return try beNil().satisfies(actualExpression).toObjectiveC() - } - } -} -``` +Please note that if you install Nimble using Swift Package Manager, then `raiseException` is not available. -The above allows you to use the matcher from Objective-C: +## CocoaPods -```objc -// Objective-C +To use Nimble in CocoaPods to test your macOS, iOS, tvOS or watchOS applications, add +Nimble to your podfile and add the ```use_frameworks!``` line to enable Swift +support for CocoaPods. -expect(actual).to([NMBPredicate beNilMatcher]()); -``` +```ruby +platform :ios, '13.0' -To make the syntax easier to use, define a C function that calls the -class method: +source 'https://github.com/CocoaPods/Specs.git' -```objc -// Objective-C +# Whatever pods you need for your app go here -FOUNDATION_EXPORT NMBPredicate *beNil() { - return [NMBPredicate beNilMatcher]; -} +target 'YOUR_APP_NAME_HERE_Tests', :exclusive => true do + use_frameworks! + pod 'Nimble' +end ``` -### Properly Handling `nil` in Objective-C Matchers - -When supporting Objective-C, make sure you handle `nil` appropriately. -Like [Cedar](https://github.com/pivotal/cedar/issues/100), -**most matchers do not match with nil**. This is to bring prevent test -writers from being surprised by `nil` values where they did not expect -them. +Finally run `pod install`. -Nimble provides the `beNil` matcher function for test writer that want -to make expectations on `nil` objects: +## Carthage -```objc -// Objective-C +To use Nimble in Carthage to test your macOS, iOS, tvOS or watchOS applications, +add Nimble to your `Cartfile.private`: -expect(nil).to(equal(nil)); // fails -expect(nil).to(beNil()); // passes ``` - -If your matcher does not want to match with nil, you use `Predicate.define` or `Predicate.simple`. -Using those factory methods will automatically generate expected value failure messages when they're nil. - -```swift -public func beginWith(_ startingElement: S.Element) -> Predicate where S.Element: Equatable { - return Predicate.simple("begin with <\(startingElement)>") { actualExpression in - guard let actualValue = try actualExpression.evaluate() else { return .fail } - - var actualGenerator = actualValue.makeIterator() - return PredicateStatus(bool: actualGenerator.next() == startingElement) - } -} - -extension NMBPredicate { - @objc public class func beginWithMatcher(_ expected: Any) -> NMBPredicate { - return NMBPredicate { actualExpression in - let actual = try actualExpression.evaluate() - let expr = actualExpression.cast { $0 as? NMBOrderedCollection } - return try beginWith(expected).satisfies(expr).toObjectiveC() - } - } -} +github "Quick/Nimble" ~> 13.2 ``` -## Migrating from the Old Matcher API - -Previously (`<7.0.0`), Nimble supported matchers via the following types: - -- `Matcher` -- `NonNilMatcherFunc` -- `MatcherFunc` - -All of those types have been replaced by `Predicate`. The old API has been -removed completely in Nimble v10. - -# Installing Nimble - -> Nimble can be used on its own, or in conjunction with its sister - project, [Quick](https://github.com/Quick/Quick). To install both - Quick and Nimble, follow [the installation instructions in the Quick - Documentation](https://github.com/Quick/Quick/blob/main/Documentation/en-us/InstallingQuick.md). +Then follow the rest of the [Carthage Quick Start](https://github.com/carthage/carthage/?tab=readme-ov-file#quick-start) +and link Nimble with your unit tests. -Nimble can currently be installed in one of two ways: using CocoaPods, or with -git submodules. - -## Installing Nimble as a Submodule +## Git Submodules To use Nimble as a submodule to test your macOS, iOS or tvOS applications, follow these 4 easy steps: @@ -1680,60 +127,10 @@ read [How to Install Quick](https://github.com/Quick/Quick#how-to-install-quick) Ignore the steps involving adding Quick to your project in order to install just Nimble. -## Installing Nimble via CocoaPods - -To use Nimble in CocoaPods to test your macOS, iOS or tvOS applications, add -Nimble to your podfile and add the ```use_frameworks!``` line to enable Swift -support for CocoaPods. - -```ruby -platform :ios, '8.0' - -source 'https://github.com/CocoaPods/Specs.git' - -# Whatever pods you need for your app go here - -target 'YOUR_APP_NAME_HERE_Tests', :exclusive => true do - use_frameworks! - pod 'Nimble' -end -``` - -Finally run `pod install`. - -## Using Nimble without XCTest - -Nimble is integrated with XCTest to allow it work well when used in Xcode test -bundles, however it can also be used in a standalone app. After installing -Nimble using one of the above methods, there are two additional steps required -to make this work. +# Privacy Statement -1. Create a custom assertion handler and assign an instance of it to the - global `NimbleAssertionHandler` variable. For example: - -```swift -class MyAssertionHandler : AssertionHandler { - func assert(assertion: Bool, message: FailureMessage, location: SourceLocation) { - if (!assertion) { - print("Expectation failed: \(message.stringValue)") - } - } -} -``` -```swift -// Somewhere before you use any assertions -NimbleAssertionHandler = MyAssertionHandler() -``` - -2. Add a post-build action to fix an issue with the Swift XCTest support - library being unnecessarily copied into your app - * Edit your scheme in Xcode, and navigate to Build -> Post-actions - * Click the "+" icon and select "New Run Script Action" - * Open the "Provide build settings from" dropdown and select your target - * Enter the following script contents: -``` -rm "${SWIFT_STDLIB_TOOL_DESTINATION_DIR}/libswiftXCTest.dylib" -``` +Nimble is a library that is only used for testing and should never be included +in the binary submitted to App Store Connect. -You can now use Nimble assertions in your code and handle failures as you see -fit. +Despite not being shipped to Apple, Nimble does not and will never collect any +kind of analytics or tracking. diff --git a/Example/Pods/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift b/Example/Pods/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift index a28bf2be5..d7734879e 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift @@ -4,13 +4,17 @@ public protocol AssertionHandler { } /// Global backing interface for assertions that Nimble creates. -/// Defaults to a private test handler that passes through to XCTest. +/// Defaults to a private test handler that passes through to Swift Testing or XCTest. /// -/// If XCTest is not available, you must assign your own assertion handler +/// If neither Swift Testing or XCTest is available, you must assign your own assertion handler /// before using any matchers, otherwise Nimble will abort the program. /// /// @see AssertionHandler public var NimbleAssertionHandler: AssertionHandler = { () -> AssertionHandler in // swiftlint:disable:previous identifier_name - return isXCTestAvailable() ? NimbleXCTestHandler() : NimbleXCTestUnavailableHandler() + if isSwiftTestingAvailable() || isXCTestAvailable() { + return NimbleTestingHandler() + } + + return NimbleTestingUnavailableHandler() }() diff --git a/Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder+Async.swift b/Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder+Async.swift new file mode 100644 index 000000000..286be5f2d --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder+Async.swift @@ -0,0 +1,83 @@ +/// Allows you to temporarily replace the current Nimble assertion handler with +/// the one provided for the scope of the closure. +/// +/// Once the closure finishes, then the original Nimble assertion handler is restored. +/// +/// @warning +/// Unlike the synchronous version of this call, this does not support catching Objective-C exceptions. +/// +/// @see AssertionHandler +public func withAssertionHandler(_ tempAssertionHandler: AssertionHandler, + fileID: String = #fileID, + file: FileString = #filePath, + line: UInt = #line, + column: UInt = #column, + closure: () async throws -> Void) async { + let environment = NimbleEnvironment.activeInstance + let oldRecorder = environment.assertionHandler + defer { + environment.assertionHandler = oldRecorder + } + environment.assertionHandler = tempAssertionHandler + + do { + try await closure() + } catch is RequireError { + // ignore this + } catch { + let failureMessage = FailureMessage() + failureMessage.stringValue = "unexpected error thrown: <\(error)>" + let location = SourceLocation(fileID: fileID, filePath: file, line: line, column: column) + tempAssertionHandler.assert(false, message: failureMessage, location: location) + } +} + +/// Captures expectations that occur in the given closure. Note that all +/// expectations will still go through to the default Nimble handler. +/// +/// This can be useful if you want to gather information about expectations +/// that occur within a closure. +/// +/// @warning +/// Unlike the synchronous version of this call, this does not support catching Objective-C exceptions. +/// +/// @param silently expectations are no longer send to the default Nimble +/// assertion handler when this is true. Defaults to false. +/// +/// @see gatherFailingExpectations +public func gatherExpectations(silently: Bool = false, closure: () async -> Void) async -> [AssertionRecord] { + let previousRecorder = NimbleEnvironment.activeInstance.assertionHandler + let recorder = AssertionRecorder() + let handlers: [AssertionHandler] + + if silently { + handlers = [recorder] + } else { + handlers = [recorder, previousRecorder] + } + + let dispatcher = AssertionDispatcher(handlers: handlers) + await withAssertionHandler(dispatcher, closure: closure) + return recorder.assertions +} + +/// Captures failed expectations that occur in the given closure. Note that all +/// expectations will still go through to the default Nimble handler. +/// +/// This can be useful if you want to gather information about failed +/// expectations that occur within a closure. +/// +/// @warning +/// Unlike the synchronous version of this call, this does not support catching Objective-C exceptions. +/// +/// @param silently expectations are no longer send to the default Nimble +/// assertion handler when this is true. Defaults to false. +/// +/// @see gatherExpectations +/// @see raiseException source for an example use case. +public func gatherFailingExpectations(silently: Bool = false, closure: () async -> Void) async -> [AssertionRecord] { + let assertions = await gatherExpectations(silently: silently, closure: closure) + return assertions.filter { assertion in + !assertion.success + } +} diff --git a/Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift b/Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift index ac7546726..0ee397219 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift @@ -54,12 +54,19 @@ extension NMBExceptionCapture { /// Allows you to temporarily replace the current Nimble assertion handler with /// the one provided for the scope of the closure. /// +/// @warning +/// This form of `withAssertionHandler` does not work in any kind of +/// async context. Use the async form of `withAssertionHandler` +/// if you are running tests in an async context. +/// /// Once the closure finishes, then the original Nimble assertion handler is restored. /// /// @see AssertionHandler public func withAssertionHandler(_ tempAssertionHandler: AssertionHandler, - file: FileString = #file, + fileID: String = #fileID, + file: FileString = #filePath, line: UInt = #line, + column: UInt = #column, closure: () throws -> Void) { let environment = NimbleEnvironment.activeInstance let oldRecorder = environment.assertionHandler @@ -72,10 +79,16 @@ public func withAssertionHandler(_ tempAssertionHandler: AssertionHandler, try capturer.tryBlockThrows { try closure() } + } catch is RequireError { + // specifically ignore RequireError, will be caught by the assertion handler. } catch { let failureMessage = FailureMessage() failureMessage.stringValue = "unexpected error thrown: <\(error)>" - let location = SourceLocation(file: file, line: line) + let location = SourceLocation( + fileID: fileID, + filePath: file, + line: line, column: column + ) tempAssertionHandler.assert(false, message: failureMessage, location: location) } } @@ -86,6 +99,11 @@ public func withAssertionHandler(_ tempAssertionHandler: AssertionHandler, /// This can be useful if you want to gather information about expectations /// that occur within a closure. /// +/// @warning +/// This form of `gatherExpectations` does not work in any kind of +/// async context. Use the async form of `gatherExpectations` +/// if you are running tests in an async context. +/// /// @param silently expectations are no longer send to the default Nimble /// assertion handler when this is true. Defaults to false. /// @@ -112,6 +130,11 @@ public func gatherExpectations(silently: Bool = false, closure: () -> Void) -> [ /// This can be useful if you want to gather information about failed /// expectations that occur within a closure. /// +/// @warning +/// This form of `gatherFailingExpectations` does not work in any kind of +/// async context. Use the async form of `gatherFailingExpectations` +/// if you are running tests in an async context. +/// /// @param silently expectations are no longer send to the default Nimble /// assertion handler when this is true. Defaults to false. /// diff --git a/Example/Pods/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift b/Example/Pods/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift index 6d7d9b961..f8d2d692f 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift @@ -1,13 +1,12 @@ #if !os(WASI) -#if canImport(Darwin) && !SWIFT_PACKAGE +#if canImport(Darwin) import class Foundation.NSObject import typealias Foundation.TimeInterval -import enum Dispatch.DispatchTimeInterval -private func from(objcPredicate: NMBPredicate) -> Predicate { - return Predicate { actualExpression in - let result = objcPredicate.satisfies(({ try actualExpression.evaluate() }), +private func from(objcMatcher: NMBMatcher) -> Matcher { + return Matcher { actualExpression in + let result = objcMatcher.satisfies(({ try actualExpression.evaluate() }), location: actualExpression.location) return result.toSwift() } @@ -19,7 +18,7 @@ public class NMBExpectation: NSObject { internal var _negative: Bool internal let _file: FileString internal let _line: UInt - internal var _timeout: DispatchTimeInterval = .seconds(1) + internal var _timeout: NimbleTimeInterval = .seconds(1) @objc public init(actualBlock: @escaping () -> NSObject?, negative: Bool, file: FileString, line: UInt) { self._actualBlock = actualBlock @@ -28,154 +27,154 @@ public class NMBExpectation: NSObject { self._line = line } - private var expectValue: Expectation { + private var expectValue: SyncExpectation { return expect(file: _file, line: _line, self._actualBlock() as NSObject?) } @objc public var withTimeout: (TimeInterval) -> NMBExpectation { - return { timeout in self._timeout = timeout.dispatchInterval + return { timeout in self._timeout = timeout.nimbleInterval return self } } - @objc public var to: (NMBPredicate) -> NMBExpectation { - return { predicate in - self.expectValue.to(from(objcPredicate: predicate)) + @objc public var to: (NMBMatcher) -> NMBExpectation { + return { matcher in + self.expectValue.to(from(objcMatcher: matcher)) return self } } - @objc public var toWithDescription: (NMBPredicate, String) -> NMBExpectation { - return { predicate, description in - self.expectValue.to(from(objcPredicate: predicate), description: description) + @objc public var toWithDescription: (NMBMatcher, String) -> NMBExpectation { + return { matcher, description in + self.expectValue.to(from(objcMatcher: matcher), description: description) return self } } - @objc public var toNot: (NMBPredicate) -> NMBExpectation { - return { predicate in - self.expectValue.toNot(from(objcPredicate: predicate)) + @objc public var toNot: (NMBMatcher) -> NMBExpectation { + return { matcher in + self.expectValue.toNot(from(objcMatcher: matcher)) return self } } - @objc public var toNotWithDescription: (NMBPredicate, String) -> NMBExpectation { - return { predicate, description in - self.expectValue.toNot(from(objcPredicate: predicate), description: description) + @objc public var toNotWithDescription: (NMBMatcher, String) -> NMBExpectation { + return { matcher, description in + self.expectValue.toNot(from(objcMatcher: matcher), description: description) return self } } - @objc public var notTo: (NMBPredicate) -> NMBExpectation { return toNot } + @objc public var notTo: (NMBMatcher) -> NMBExpectation { return toNot } - @objc public var notToWithDescription: (NMBPredicate, String) -> NMBExpectation { return toNotWithDescription } + @objc public var notToWithDescription: (NMBMatcher, String) -> NMBExpectation { return toNotWithDescription } - @objc public var toEventually: (NMBPredicate) -> Void { - return { predicate in + @objc public var toEventually: (NMBMatcher) -> Void { + return { matcher in self.expectValue.toEventually( - from(objcPredicate: predicate), + from(objcMatcher: matcher), timeout: self._timeout, description: nil ) } } - @objc public var toEventuallyWithDescription: (NMBPredicate, String) -> Void { - return { predicate, description in + @objc public var toEventuallyWithDescription: (NMBMatcher, String) -> Void { + return { matcher, description in self.expectValue.toEventually( - from(objcPredicate: predicate), + from(objcMatcher: matcher), timeout: self._timeout, description: description ) } } - @objc public var toEventuallyNot: (NMBPredicate) -> Void { - return { predicate in + @objc public var toEventuallyNot: (NMBMatcher) -> Void { + return { matcher in self.expectValue.toEventuallyNot( - from(objcPredicate: predicate), + from(objcMatcher: matcher), timeout: self._timeout, description: nil ) } } - @objc public var toEventuallyNotWithDescription: (NMBPredicate, String) -> Void { - return { predicate, description in + @objc public var toEventuallyNotWithDescription: (NMBMatcher, String) -> Void { + return { matcher, description in self.expectValue.toEventuallyNot( - from(objcPredicate: predicate), + from(objcMatcher: matcher), timeout: self._timeout, description: description ) } } - @objc public var toNotEventually: (NMBPredicate) -> Void { + @objc public var toNotEventually: (NMBMatcher) -> Void { return toEventuallyNot } - @objc public var toNotEventuallyWithDescription: (NMBPredicate, String) -> Void { + @objc public var toNotEventuallyWithDescription: (NMBMatcher, String) -> Void { return toEventuallyNotWithDescription } - @objc public var toNever: (NMBPredicate) -> Void { - return { predicate in + @objc public var toNever: (NMBMatcher) -> Void { + return { matcher in self.expectValue.toNever( - from(objcPredicate: predicate), + from(objcMatcher: matcher), until: self._timeout, description: nil ) } } - @objc public var toNeverWithDescription: (NMBPredicate, String) -> Void { - return { predicate, description in + @objc public var toNeverWithDescription: (NMBMatcher, String) -> Void { + return { matcher, description in self.expectValue.toNever( - from(objcPredicate: predicate), + from(objcMatcher: matcher), until: self._timeout, description: description ) } } - @objc public var neverTo: (NMBPredicate) -> Void { + @objc public var neverTo: (NMBMatcher) -> Void { return toNever } - @objc public var neverToWithDescription: (NMBPredicate, String) -> Void { + @objc public var neverToWithDescription: (NMBMatcher, String) -> Void { return toNeverWithDescription } - @objc public var toAlways: (NMBPredicate) -> Void { - return { predicate in + @objc public var toAlways: (NMBMatcher) -> Void { + return { matcher in self.expectValue.toAlways( - from(objcPredicate: predicate), + from(objcMatcher: matcher), until: self._timeout, description: nil ) } } - @objc public var toAlwaysWithDescription: (NMBPredicate, String) -> Void { - return { predicate, description in + @objc public var toAlwaysWithDescription: (NMBMatcher, String) -> Void { + return { matcher, description in self.expectValue.toAlways( - from(objcPredicate: predicate), + from(objcMatcher: matcher), until: self._timeout, description: description ) } } - @objc public var alwaysTo: (NMBPredicate) -> Void { + @objc public var alwaysTo: (NMBMatcher) -> Void { return toAlways } - @objc public var alwaysToWithDescription: (NMBPredicate, String) -> Void { + @objc public var alwaysToWithDescription: (NMBMatcher, String) -> Void { return toAlwaysWithDescription } @objc public class func failWithMessage(_ message: String, file: FileString, line: UInt) { - fail(message, location: SourceLocation(file: file, line: line)) + fail(message, location: SourceLocation(fileID: "Unknown/\(file)", filePath: file, line: line, column: 0)) } } diff --git a/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift b/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift index d20dd31ea..aa515f2f4 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift @@ -35,6 +35,7 @@ internal class NimbleEnvironment: NSObject { } var suppressTVOSAssertionWarning: Bool = false + var suppressWatchOSAssertionWarning: Bool = false #if !os(WASI) var awaiter: Awaiter #endif diff --git a/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleSwiftTestingHandler.swift b/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleSwiftTestingHandler.swift new file mode 100644 index 000000000..bf86bb6d5 --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleSwiftTestingHandler.swift @@ -0,0 +1,48 @@ +import Foundation +#if canImport(Testing) +// See https://github.com/pointfreeco/swift-snapshot-testing/discussions/901#discussioncomment-10605497 +// tl;dr: Swift Testing is not available when using UI tests. +// And apparently `private import` - the preferred way to do this - doesn't work. +// So we use a deprecated approach that does work with this. +@_implementationOnly import Testing +#endif + +public class NimbleSwiftTestingHandler: AssertionHandler { + public func assert(_ assertion: Bool, message: FailureMessage, location: SourceLocation) { + if !assertion { + recordTestingFailure("\(message.stringValue)\n", location: location) + } + } +} + +func isSwiftTestingAvailable() -> Bool { +#if canImport(Testing) + true +#else + false +#endif +} + +func isRunningSwiftTest() -> Bool { +#if canImport(Testing) + Test.current != nil +#else + false +#endif +} + +public func recordTestingFailure(_ message: String, location: SourceLocation) { +#if canImport(Testing) + let testingLocation = Testing.SourceLocation( + fileID: location.fileID, + filePath: "\(location.filePath)", + line: Int(location.line), + column: Int(location.column) + ) + + Testing.Issue.record( + "\(message)", + sourceLocation: testingLocation + ) +#endif +} diff --git a/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift b/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift index 18ec18bfe..8db21f44e 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift @@ -1,8 +1,18 @@ import Foundation import XCTest -/// Default handler for Nimble. This assertion handler passes failures along to -/// XCTest. +/// Default handler for Nimble. This assertion handler passes on to Swift Testing or XCTest. +public class NimbleTestingHandler: AssertionHandler { + public func assert(_ assertion: Bool, message: FailureMessage, location: SourceLocation) { + if isRunningSwiftTest() { + NimbleSwiftTestingHandler().assert(assertion, message: message, location: location) + } else { + NimbleXCTestHandler().assert(assertion, message: message, location: location) + } + } +} + +/// This assertion handler passes failures along to XCTest. public class NimbleXCTestHandler: AssertionHandler { public func assert(_ assertion: Bool, message: FailureMessage, location: SourceLocation) { if !assertion { @@ -27,25 +37,25 @@ public class NimbleShortXCTestHandler: AssertionHandler { } } -/// Fallback handler in case XCTest is unavailable. This assertion handler will abort +/// Fallback handler in case XCTest/Swift Testing is unavailable. This assertion handler will abort /// the program if it is invoked. -class NimbleXCTestUnavailableHandler: AssertionHandler { +class NimbleTestingUnavailableHandler: AssertionHandler { func assert(_ assertion: Bool, message: FailureMessage, location: SourceLocation) { - fatalError("XCTest is not available and no custom assertion handler was configured. Aborting.") + fatalError("XCTest and Swift Testing are not available and no custom assertion handler was configured. Aborting.") } } -#if !SWIFT_PACKAGE +#if canImport(Darwin) /// Helper class providing access to the currently executing XCTestCase instance, if any -@objc final internal class CurrentTestCaseTracker: NSObject, XCTestObservation { - @objc static let sharedInstance = CurrentTestCaseTracker() +@objc final public class CurrentTestCaseTracker: NSObject, XCTestObservation { + @objc public static let sharedInstance = CurrentTestCaseTracker() private(set) var currentTestCase: XCTestCase? private var stashed_swift_reportFatalErrorsToDebugger: Bool = false - @objc func testCaseWillStart(_ testCase: XCTestCase) { - #if os(macOS) || os(iOS) + @objc public func testCaseWillStart(_ testCase: XCTestCase) { + #if (os(macOS) || os(iOS) || os(visionOS)) && !SWIFT_PACKAGE stashed_swift_reportFatalErrorsToDebugger = _swift_reportFatalErrorsToDebugger _swift_reportFatalErrorsToDebugger = false #endif @@ -53,10 +63,10 @@ class NimbleXCTestUnavailableHandler: AssertionHandler { currentTestCase = testCase } - @objc func testCaseDidFinish(_ testCase: XCTestCase) { + @objc public func testCaseDidFinish(_ testCase: XCTestCase) { currentTestCase = nil - #if os(macOS) || os(iOS) + #if (os(macOS) || os(iOS) || os(visionOS)) && !SWIFT_PACKAGE _swift_reportFatalErrorsToDebugger = stashed_swift_reportFatalErrorsToDebugger #endif } @@ -73,12 +83,12 @@ func isXCTestAvailable() -> Bool { } public func recordFailure(_ message: String, location: SourceLocation) { -#if SWIFT_PACKAGE +#if !canImport(Darwin) XCTFail("\(message)", file: location.file, line: location.line) #else if let testCase = CurrentTestCaseTracker.sharedInstance.currentTestCase { let line = Int(location.line) - let location = XCTSourceCodeLocation(filePath: location.file, lineNumber: line) + let location = XCTSourceCodeLocation(filePath: location.filePath, lineNumber: line) let sourceCodeContext = XCTSourceCodeContext(location: location) let issue = XCTIssue(type: .assertionFailure, compactDescription: message, sourceCodeContext: sourceCodeContext) testCase.record(issue) @@ -86,7 +96,7 @@ public func recordFailure(_ message: String, location: SourceLocation) { let msg = """ Attempted to report a test failure to XCTest while no test case was running. The failure was: \"\(message)\" - It occurred at: \(location.file):\(location.line) + It occurred at: \(location) """ NSException(name: .internalInconsistencyException, reason: msg, userInfo: nil).raise() } diff --git a/Example/Pods/Nimble/Sources/Nimble/AsyncExpression.swift b/Example/Pods/Nimble/Sources/Nimble/AsyncExpression.swift new file mode 100644 index 000000000..b669d5a0b --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/AsyncExpression.swift @@ -0,0 +1,130 @@ +// Memoizes the given closure, only calling the passed +// closure once; even if repeat calls to the returned closure +private func memoizedClosure(_ closure: @escaping () async throws -> T) -> (Bool) async throws -> T { + var cache: T? + return { withoutCaching in + if withoutCaching || cache == nil { + cache = try await closure() + } + return cache! + } +} + +/// Expression represents the closure of the value inside expect(...). +/// Expressions are memoized by default. This makes them safe to call +/// evaluate() multiple times without causing a re-evaluation of the underlying +/// closure. +/// +/// - Warning: Since the closure can be any code, Objective-C code may choose +/// to raise an exception. Currently, SyncExpression does not memoize +/// exception raising. +/// +/// This provides a common consumable API for matchers to utilize to allow +/// Nimble to change internals to how the captured closure is managed. +public struct AsyncExpression { + internal let _expression: (Bool) async throws -> Value? + internal let _withoutCaching: Bool + public let location: SourceLocation + public let isClosure: Bool + + /// Creates a new expression struct. Normally, expect(...) will manage this + /// creation process. The expression is memoized. + /// + /// - Parameter expression: The closure that produces a given value. + /// - Parameter location: The source location that this closure originates from. + /// - Parameter isClosure: A bool indicating if the captured expression is a + /// closure or internally produced closure. Some matchers + /// may require closures. For example, toEventually() + /// requires an explicit closure. This gives Nimble + /// flexibility if @autoclosure behavior changes between + /// Swift versions. Nimble internals always sets this true. + public init(expression: @escaping () async throws -> Value?, location: SourceLocation, isClosure: Bool = true) { + self._expression = memoizedClosure(expression) + self.location = location + self._withoutCaching = false + self.isClosure = isClosure + } + + /// Creates a new expression struct. Normally, expect(...) will manage this + /// creation process. + /// + /// - Parameter expression: The closure that produces a given value. + /// - Parameter location: The source location that this closure originates from. + /// - Parameter withoutCaching: Indicates if the struct should memoize the given + /// closure's result. Subsequent evaluate() calls will + /// not call the given closure if this is true. + /// - Parameter isClosure: A bool indicating if the captured expression is a + /// closure or internally produced closure. Some matchers + /// may require closures. For example, toEventually() + /// requires an explicit closure. This gives Nimble + /// flexibility if @autoclosure behavior changes between + /// Swift versions. Nimble internals always sets this true. + public init(memoizedExpression: @escaping (Bool) async throws -> Value?, location: SourceLocation, withoutCaching: Bool, isClosure: Bool = true) { + self._expression = memoizedExpression + self.location = location + self._withoutCaching = withoutCaching + self.isClosure = isClosure + } + + /// Creates a new synchronous expression, for use in Matchers. + public func toSynchronousExpression() async -> Expression { + let value: Result + do { + value = .success(try await _expression(self._withoutCaching)) + } catch { + value = .failure(error) + } + return Expression( + memoizedExpression: { _ in try value.get() }, + location: location, + withoutCaching: false, + isClosure: isClosure + ) + } + + /// Returns a new Expression from the given expression. Identical to a map() + /// on this type. This should be used only to typecast the Expression's + /// closure value. + /// + /// The returned expression will preserve location and isClosure. + /// + /// - Parameter block: The block that can cast the current Expression value to a + /// new type. + public func cast(_ block: @escaping (Value?) throws -> U?) -> AsyncExpression { + AsyncExpression( + expression: ({ try await block(self.evaluate()) }), + location: self.location, + isClosure: self.isClosure + ) + } + + public func cast(_ block: @escaping (Value?) async throws -> U?) -> AsyncExpression { + AsyncExpression( + expression: ({ try await block(self.evaluate()) }), + location: self.location, + isClosure: self.isClosure + ) + } + + public func evaluate() async throws -> Value? { + try await self._expression(_withoutCaching) + } + + public func withoutCaching() -> AsyncExpression { + AsyncExpression( + memoizedExpression: self._expression, + location: location, + withoutCaching: true, + isClosure: isClosure + ) + } + + public func withCaching() -> AsyncExpression { + AsyncExpression( + memoizedExpression: memoizedClosure { try await self.evaluate() }, + location: self.location, + withoutCaching: false, + isClosure: isClosure + ) + } +} diff --git a/Example/Pods/Nimble/Sources/Nimble/DSL+AsyncAwait.swift b/Example/Pods/Nimble/Sources/Nimble/DSL+AsyncAwait.swift new file mode 100644 index 000000000..522e4af53 --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/DSL+AsyncAwait.swift @@ -0,0 +1,191 @@ +#if !os(WASI) +import Dispatch +#endif + +/// Make an ``AsyncExpectation`` on a given actual value. The value given is lazily evaluated. +public func expect(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, _ expression: @escaping () async throws -> T?) -> AsyncExpectation { + return AsyncExpectation( + expression: AsyncExpression( + expression: expression, + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true)) +} + +/// Make an ``AsyncExpectation`` on a given actual value. The closure is lazily invoked. +public func expect(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, _ expression: () -> (() async throws -> T)) -> AsyncExpectation { + return AsyncExpectation( + expression: AsyncExpression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true)) +} + +/// Make an ``AsyncExpectation`` on a given actual value. The closure is lazily invoked. +public func expect(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, _ expression: () -> (() async throws -> T?)) -> AsyncExpectation { + return AsyncExpectation( + expression: AsyncExpression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true)) +} + +/// Make an ``AsyncExpectation`` on a given actual value. The closure is lazily invoked. +public func expect(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, _ expression: () -> (() async throws -> Void)) -> AsyncExpectation { + return AsyncExpectation( + expression: AsyncExpression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true)) +} + +/// Make an ``AsyncExpectation`` on a given actual value. The value given is lazily evaluated. +/// This is provided to avoid confusion between `expect -> SyncExpectation` and `expect -> AsyncExpectation`. +public func expecta(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, _ expression: @autoclosure @escaping () async throws -> T?) async -> AsyncExpectation { + return AsyncExpectation( + expression: AsyncExpression( + expression: expression, + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true)) +} + +/// Make an ``AsyncExpectation`` on a given actual value. The closure is lazily invoked. +/// This is provided to avoid confusion between `expect -> SyncExpectation` and `expect -> AsyncExpectation` +public func expecta(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, _ expression: @autoclosure () -> (() async throws -> T)) async -> AsyncExpectation { + return AsyncExpectation( + expression: AsyncExpression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true)) +} + +/// Make an ``AsyncExpectation`` on a given actual value. The closure is lazily invoked. +/// This is provided to avoid confusion between `expect -> SyncExpectation` and `expect -> AsyncExpectation` +public func expecta(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, _ expression: @autoclosure () -> (() async throws -> T?)) async -> AsyncExpectation { + return AsyncExpectation( + expression: AsyncExpression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true)) +} + +/// Make an ``AsyncExpectation`` on a given actual value. The closure is lazily invoked. +/// This is provided to avoid confusion between `expect -> SyncExpectation` and `expect -> AsyncExpectation` +public func expecta(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, _ expression: @autoclosure () -> (() async throws -> Void)) async -> AsyncExpectation { + return AsyncExpectation( + expression: AsyncExpression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true)) +} + +#if !os(WASI) + +/// Wait asynchronously until the done closure is called or the timeout has been reached. +/// +/// @discussion +/// Call the done() closure to indicate the waiting has completed. +/// +/// @warning +/// Unlike the synchronous version of this call, this does not support catching Objective-C exceptions. +public func waitUntil( + timeout: NimbleTimeInterval = PollingDefaults.timeout, + fileID: String = #fileID, + file: FileString = #filePath, + line: UInt = #line, + column: UInt = #column, + action: @escaping (@escaping () -> Void) async -> Void +) async { + await throwableUntil( + timeout: timeout, + sourceLocation: SourceLocation(fileID: fileID, filePath: file, line: line, column: column) + ) { done in + await action(done) + } +} + +/// Wait asynchronously until the done closure is called or the timeout has been reached. +/// +/// @discussion +/// Call the done() closure to indicate the waiting has completed. +/// +/// @warning +/// Unlike the synchronous version of this call, this does not support catching Objective-C exceptions. +public func waitUntil( + timeout: NimbleTimeInterval = PollingDefaults.timeout, + fileID: String = #fileID, + file: FileString = #filePath, + line: UInt = #line, + column: UInt = #column, + action: @escaping (@escaping () -> Void) -> Void +) async { + await throwableUntil( + timeout: timeout, + sourceLocation: SourceLocation(fileID: fileID, filePath: file, line: line, column: column) + ) { done in + action(done) + } +} + +private enum ErrorResult { + case error(Error) + case none +} + +private func throwableUntil( + timeout: NimbleTimeInterval, + sourceLocation: SourceLocation, + action: @escaping (@escaping () -> Void) async throws -> Void) async { + let leeway = timeout.divided + let result = await performBlock( + timeoutInterval: timeout, + leeway: leeway, + sourceLocation: sourceLocation) { @MainActor (done: @escaping (ErrorResult) -> Void) async throws -> Void in + do { + try await action { + done(.none) + } + } catch let e { + done(.error(e)) + } + } + + switch result { + case .incomplete: internalError("Reached .incomplete state for waitUntil(...).") + case .blockedRunLoop: + fail( + blockedRunLoopErrorMessageFor("-waitUntil()", leeway: leeway), + fileID: sourceLocation.fileID, + file: sourceLocation.filePath, + line: sourceLocation.line, + column: sourceLocation.column + ) + case .timedOut: + fail( + "Waited more than \(timeout.description)", + fileID: sourceLocation.fileID, + file: sourceLocation.filePath, + line: sourceLocation.line, + column: sourceLocation.column + ) + case let .errorThrown(error): + fail( + "Unexpected error thrown: \(error)", + fileID: sourceLocation.fileID, + file: sourceLocation.filePath, + line: sourceLocation.line, + column: sourceLocation.column + ) + case .completed(.error(let error)): + fail( + "Unexpected error thrown: \(error)", + fileID: sourceLocation.fileID, + file: sourceLocation.filePath, + line: sourceLocation.line, + column: sourceLocation.column + ) + case .completed(.none): // success + break + } +} + +#endif // #if !os(WASI) diff --git a/Example/Pods/Nimble/Sources/Nimble/DSL+Require.swift b/Example/Pods/Nimble/Sources/Nimble/DSL+Require.swift new file mode 100644 index 000000000..bd73f72f6 --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/DSL+Require.swift @@ -0,0 +1,305 @@ +/// Make a ``SyncRequirement`` on a given actual value. The value given is lazily evaluated. +/// +/// `require` will return the result of the expression if the matcher passes, and throw an error if not. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +@discardableResult +public func require(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, _ expression: @autoclosure @escaping () throws -> T?) -> SyncRequirement { + return SyncRequirement( + expression: Expression( + expression: expression, + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true), + customError: customError) +} + +/// Make a ``SyncRequirement`` on a given actual value. The closure is lazily invoked. +/// +/// `require` will return the result of the expression if the matcher passes, and throw an error if not. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +@discardableResult +public func require(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, _ expression: @autoclosure () -> (() throws -> T)) -> SyncRequirement { + return SyncRequirement( + expression: Expression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true), + customError: customError) +} + +/// Make a ``SyncRequirement`` on a given actual value. The closure is lazily invoked. +/// +/// `require` will return the result of the expression if the matcher passes, and throw an error if not. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +@discardableResult +public func require(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, _ expression: @autoclosure () -> (() throws -> T?)) -> SyncRequirement { + return SyncRequirement( + expression: Expression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true), + customError: customError) +} + +/// Make a ``SyncRequirement`` on a given actual value. The closure is lazily invoked. +/// +/// `require` will return the result of the expression if the matcher passes, and throw an error if not. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +@discardableResult +public func require(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, _ expression: @autoclosure () -> (() throws -> Void)) -> SyncRequirement { + return SyncRequirement( + expression: Expression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true), + customError: customError) +} + +/// Make a ``SyncRequirement`` on a given actual value. The value given is lazily evaluated. +/// +/// `require` will return the result of the expression if the matcher passes, and throw an error if not. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +/// +/// This is provided as an alternative to ``require``, for when you want to be specific about whether you're using ``SyncRequirement`` or ``AsyncRequirement``. +@discardableResult +public func requires(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, _ expression: @autoclosure @escaping () throws -> T?) -> SyncRequirement { + return SyncRequirement( + expression: Expression( + expression: expression, + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true), + customError: customError) +} + +/// Make a ``SyncRequirement`` on a given actual value. The closure is lazily invoked. +/// +/// `require` will return the result of the expression if the matcher passes, and throw an error if not. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +/// +/// This is provided as an alternative to ``require``, for when you want to be specific about whether you're using ``SyncRequirement`` or ``AsyncRequirement``. +@discardableResult +public func requires(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, _ expression: @autoclosure () -> (() throws -> T)) -> SyncRequirement { + return SyncRequirement( + expression: Expression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true), + customError: customError) +} + +/// Make a ``SyncRequirement`` on a given actual value. The closure is lazily invoked. +/// +/// `require` will return the result of the expression if the matcher passes, and throw an error if not. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +/// +/// This is provided as an alternative to ``require``, for when you want to be specific about whether you're using ``SyncRequirement`` or ``AsyncRequirement``. +@discardableResult +public func requires(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, _ expression: @autoclosure () -> (() throws -> T?)) -> SyncRequirement { + return SyncRequirement( + expression: Expression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true), + customError: customError) +} + +/// Make a ``SyncRequirement`` on a given actual value. The closure is lazily invoked. +/// +/// `require` will return the result of the expression if the matcher passes, and throw an error if not. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +/// +/// This is provided as an alternative to ``require``, for when you want to be specific about whether you're using ``SyncRequirement`` or ``AsyncRequirement``. +@discardableResult +public func requires(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, _ expression: @autoclosure () -> (() throws -> Void)) -> SyncRequirement { + return SyncRequirement( + expression: Expression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true), + customError: customError) +} + +/// Make an ``AsyncRequirement`` on a given actual value. The value given is lazily evaluated. +/// +/// `require` will return the result of the expression if the matcher passes, and throw an error if not. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +@discardableResult +public func require(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, _ expression: @escaping () async throws -> T?) -> AsyncRequirement { + return AsyncRequirement( + expression: AsyncExpression( + expression: expression, + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true), + customError: customError) +} + +/// Make an ``AsyncRequirement`` on a given actual value. The closure is lazily invoked. +/// +/// `require` will return the result of the expression if the matcher passes, and throw an error if not. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +@discardableResult +public func require(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, _ expression: () -> (() async throws -> T)) -> AsyncRequirement { + return AsyncRequirement( + expression: AsyncExpression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true), + customError: customError) +} + +/// Make an ``AsyncRequirement`` on a given actual value. The closure is lazily invoked. +/// +/// `require` will return the result of the expression if the matcher passes, and throw an error if not. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +@discardableResult +public func require(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, _ expression: () -> (() async throws -> T?)) -> AsyncRequirement { + return AsyncRequirement( + expression: AsyncExpression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true), + customError: customError) +} + +/// Make an ``AsyncRequirement`` on a given actual value. The value given is lazily evaluated. +/// +/// `require` will return the result of the expression if the matcher passes, and throw an error if not. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +/// +/// This is provided to avoid confusion between `require -> SyncRequirement` and `require -> AsyncRequirement`. +@discardableResult +public func requirea(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, _ expression: @autoclosure @escaping () async throws -> T?) async -> AsyncRequirement { + return AsyncRequirement( + expression: AsyncExpression( + expression: expression, + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true), + customError: customError) +} + +/// Make an ``AsyncRequirement`` on a given actual value. The closure is lazily invoked. +/// +/// `require` will return the result of the expression if the matcher passes, and throw an error if not. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +/// +/// This is provided to avoid confusion between `require -> SyncRequirement` and `require -> AsyncRequirement` +@discardableResult +public func requirea(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, _ expression: @autoclosure () -> (() async throws -> T)) async -> AsyncRequirement { + return AsyncRequirement( + expression: AsyncExpression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true), + customError: customError) +} + +/// Make an ``AsyncRequirement`` on a given actual value. The closure is lazily invoked. +/// +/// `require` will return the result of the expression if the matcher passes, and throw an error if not. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +/// +/// This is provided to avoid confusion between `require -> SyncRequirement` and `require -> AsyncRequirement` +@discardableResult +public func requirea(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, _ expression: @autoclosure () -> (() async throws -> T?)) async -> AsyncRequirement { + return AsyncRequirement( + expression: AsyncExpression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true), + customError: customError) +} + +// MARK: - Unwrap + +/// Makes sure that the expression evaluates to a non-nil value, otherwise throw an error. +/// As you can tell, this is a much less verbose equivalent to `require(expression).toNot(beNil())`. +/// +/// `unwrap` will return the result of the expression if it is non-nil, and throw an error if the value is nil. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +@discardableResult +public func unwrap(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, description: String? = nil, _ expression: @autoclosure @escaping () throws -> T?) throws -> T { + try requires(fileID: fileID, file: file, line: line, column: column, customError: customError, expression()).toNot(beNil(), description: description) +} + +/// Makes sure that the expression evaluates to a non-nil value, otherwise throw an error. +/// As you can tell, this is a much less verbose equivalent to `require(expression).toNot(beNil())`. +/// +/// `unwrap` will return the result of the expression if it is non-nil, and throw an error if the value is nil. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +@discardableResult +public func unwrap(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, description: String? = nil, _ expression: @autoclosure () -> (() throws -> T?)) throws -> T { + try requires(fileID: fileID, file: file, line: line, column: column, customError: customError, expression()).toNot(beNil(), description: description) +} + +/// Makes sure that the expression evaluates to a non-nil value, otherwise throw an error. +/// As you can tell, this is a much less verbose equivalent to `require(expression).toNot(beNil())`. +/// +/// `unwraps` will return the result of the expression if it is non-nil, and throw an error if the value is nil. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +@discardableResult +public func unwraps(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, description: String? = nil, _ expression: @autoclosure @escaping () throws -> T?) throws -> T { + try requires(fileID: fileID, file: file, line: line, column: column, customError: customError, expression()).toNot(beNil(), description: description) +} + +/// Makes sure that the expression evaluates to a non-nil value, otherwise throw an error. +/// As you can tell, this is a much less verbose equivalent to `require(expression).toNot(beNil())`. +/// +/// `unwraps` will return the result of the expression if it is non-nil, and throw an error if the value is nil. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +@discardableResult +public func unwraps(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, description: String? = nil, _ expression: @autoclosure () -> (() throws -> T?)) throws -> T { + try requires(fileID: fileID, file: file, line: line, column: column, customError: customError, expression()).toNot(beNil(), description: description) +} + +/// Makes sure that the async expression evaluates to a non-nil value, otherwise throw an error. +/// As you can tell, this is a much less verbose equivalent to `requirea(expression).toNot(beNil())`. +/// +/// `unwrap` will return the result of the expression if it is non-nil, and throw an error if the value is nil. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +@discardableResult +public func unwrap(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, description: String? = nil, _ expression: @escaping () async throws -> T?) async throws -> T { + try await requirea(fileID: fileID, file: file, line: line, column: column, customError: customError, try await expression()).toNot(beNil(), description: description) +} + +/// Makes sure that the async expression evaluates to a non-nil value, otherwise throw an error. +/// As you can tell, this is a much less verbose equivalent to `requirea(expression).toNot(beNil())`. +/// +/// `unwrap` will return the result of the expression if it is non-nil, and throw an error if the value is nil. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +@discardableResult +public func unwrap(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, description: String? = nil, _ expression: () -> (() async throws -> T?)) async throws -> T { + try await requirea(fileID: fileID, file: file, line: line, column: column, customError: customError, expression()).toNot(beNil(), description: description) +} + +/// Makes sure that the async expression evaluates to a non-nil value, otherwise throw an error. +/// As you can tell, this is a much less verbose equivalent to `requirea(expression).toNot(beNil())`. +/// +/// `unwrapa` will return the result of the expression if it is non-nil, and throw an error if the value is nil. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +@discardableResult +public func unwrapa(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, description: String? = nil, _ expression: @autoclosure @escaping () async throws -> T?) async throws -> T { + try await requirea(fileID: fileID, file: file, line: line, column: column, customError: customError, try await expression()).toNot(beNil(), description: description) +} + +/// Makes sure that the async expression evaluates to a non-nil value, otherwise throw an error. +/// As you can tell, this is a much less verbose equivalent to `requirea(expression).toNot(beNil())`. +/// +/// `unwrapa` will return the result of the expression if it is non-nil, and throw an error if the value is nil. +/// if a `customError` is given, then that will be thrown. Otherwise, a ``RequireError`` will be thrown. +@discardableResult +public func unwrapa(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, customError: Error? = nil, description: String? = nil, _ expression: @autoclosure () -> (() async throws -> T?)) async throws -> T { + try await requirea(fileID: fileID, file: file, line: line, column: column, customError: customError, expression()).toNot(beNil(), description: description) +} + +/// Always fails the test and throw an error to prevent further test execution. +/// +/// - Parameter message: A custom message to use in place of the default one. +/// - Parameter customError: A custom error to throw in place of a ``RequireError``. +public func requireFail(_ message: String? = nil, customError: Error? = nil, fileID: String = #fileID, filePath: FileString = #filePath, line: UInt = #line, column: UInt = #column) throws { + let location = SourceLocation(fileID: fileID, filePath: filePath, line: line, column: column) + let handler = NimbleEnvironment.activeInstance.assertionHandler + + let msg = message ?? "requireFail() always fails" + handler.assert(false, message: FailureMessage(stringValue: msg), location: location) + + throw customError ?? RequireError(message: msg, location: location) +} diff --git a/Example/Pods/Nimble/Sources/Nimble/DSL+Wait.swift b/Example/Pods/Nimble/Sources/Nimble/DSL+Wait.swift index a1b51c3bc..a91e919a2 100644 --- a/Example/Pods/Nimble/Sources/Nimble/DSL+Wait.swift +++ b/Example/Pods/Nimble/Sources/Nimble/DSL+Wait.swift @@ -12,26 +12,29 @@ private enum ErrorResult { /// Only classes, protocols, methods, properties, and subscript declarations can be /// bridges to Objective-C via the @objc keyword. This class encapsulates callback-style /// asynchronous waiting logic so that it may be called from Objective-C and Swift. -internal class NMBWait: NSObject { +public class NMBWait: NSObject { // About these kind of lines, `@objc` attributes are only required for Objective-C -// support, so that should be conditional on Darwin platforms and normal Xcode builds -// (non-SwiftPM builds). -#if canImport(Darwin) && !SWIFT_PACKAGE +// support, so that should be conditional on Darwin platforms. +#if canImport(Darwin) @objc - internal class func until( + public class func until( timeout: TimeInterval, - file: FileString = #file, + fileID: String = #fileID, + file: FileString = #filePath, line: UInt = #line, + column: UInt = #column, action: @escaping (@escaping () -> Void) -> Void) { - // Convert TimeInterval to DispatchTimeInterval - until(timeout: timeout.dispatchInterval, file: file, line: line, action: action) + // Convert TimeInterval to NimbleTimeInterval + until(timeout: timeout.nimbleInterval, file: file, line: line, action: action) } #endif - internal class func until( - timeout: DispatchTimeInterval, - file: FileString = #file, + public class func until( + timeout: NimbleTimeInterval, + fileID: String = #fileID, + file: FileString = #filePath, line: UInt = #line, + column: UInt = #column, action: @escaping (@escaping () -> Void) -> Void) { return throwableUntil(timeout: timeout, file: file, line: line) { done in action(done) @@ -39,10 +42,12 @@ internal class NMBWait: NSObject { } // Using a throwable closure makes this method not objc compatible. - internal class func throwableUntil( - timeout: DispatchTimeInterval, - file: FileString = #file, + public class func throwableUntil( + timeout: NimbleTimeInterval, + fileID: String = #fileID, + file: FileString = #filePath, line: UInt = #line, + column: UInt = #column, action: @escaping (@escaping () -> Void) throws -> Void) { let awaiter = NimbleEnvironment.activeInstance.awaiter let leeway = timeout.divided @@ -64,49 +69,65 @@ internal class NMBWait: NSObject { } } } - }.timeout(timeout, forcefullyAbortTimeout: leeway).wait("waitUntil(...)", file: file, line: line) + }.timeout(timeout, forcefullyAbortTimeout: leeway).wait( + "waitUntil(...)", + sourceLocation: SourceLocation(fileID: fileID, filePath: file, line: line, column: column) + ) switch result { case .incomplete: internalError("Reached .incomplete state for waitUntil(...).") case .blockedRunLoop: fail(blockedRunLoopErrorMessageFor("-waitUntil()", leeway: leeway), - file: file, line: line) + fileID: fileID, file: file, line: line, column: column) case .timedOut: - fail("Waited more than \(timeout.description)", file: file, line: line) + fail("Waited more than \(timeout.description)", + fileID: fileID, file: file, line: line, column: column) case let .raisedException(exception): - fail("Unexpected exception raised: \(exception)") + fail("Unexpected exception raised: \(exception)", + fileID: fileID, file: file, line: line, column: column + ) case let .errorThrown(error): - fail("Unexpected error thrown: \(error)") + fail("Unexpected error thrown: \(error)", + fileID: fileID, file: file, line: line, column: column + ) case .completed(.exception(let exception)): - fail("Unexpected exception raised: \(exception)") + fail("Unexpected exception raised: \(exception)", + fileID: fileID, file: file, line: line, column: column + ) case .completed(.error(let error)): - fail("Unexpected error thrown: \(error)") + fail("Unexpected error thrown: \(error)", + fileID: fileID, file: file, line: line, column: column + ) case .completed(.none): // success break } } -#if canImport(Darwin) && !SWIFT_PACKAGE - @objc(untilFile:line:action:) - internal class func until( - _ file: FileString = #file, +#if canImport(Darwin) + @objc(untilFileID:file:line:column:action:) + public class func until( + _ fileID: String = #fileID, + file: FileString = #filePath, line: UInt = #line, + column: UInt = #column, action: @escaping (@escaping () -> Void) -> Void) { - until(timeout: .seconds(1), file: file, line: line, action: action) + until(timeout: .seconds(1), fileID: fileID, file: file, line: line, column: column, action: action) } #else - internal class func until( - _ file: FileString = #file, + public class func until( + _ fileID: String = #fileID, + file: FileString = #filePath, line: UInt = #line, + column: UInt = #column, action: @escaping (@escaping () -> Void) -> Void) { - until(timeout: .seconds(1), file: file, line: line, action: action) + until(timeout: .seconds(1), fileID: fileID, file: file, line: line, column: column, action: action) } #endif } -internal func blockedRunLoopErrorMessageFor(_ fnName: String, leeway: DispatchTimeInterval) -> String { +internal func blockedRunLoopErrorMessageFor(_ fnName: String, leeway: NimbleTimeInterval) -> String { // swiftlint:disable:next line_length - return "\(fnName) timed out but was unable to run the timeout handler because the main thread is unresponsive (\(leeway.description) is allow after the wait times out). Conditions that may cause this include processing blocking IO on the main thread, calls to sleep(), deadlocks, and synchronous IPC. Nimble forcefully stopped run loop which may cause future failures in test run." + return "\(fnName) timed out but was unable to run the timeout handler because the main thread is unresponsive. (\(leeway.description) is allowed after the wait times out) Conditions that may cause this include processing blocking IO on the main thread, calls to sleep(), deadlocks, and synchronous IPC. Nimble forcefully stopped the run loop which may cause future failures in test runs." } /// Wait asynchronously until the done closure is called or the timeout has been reached. @@ -116,8 +137,9 @@ internal func blockedRunLoopErrorMessageFor(_ fnName: String, leeway: DispatchTi /// /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. -public func waitUntil(timeout: DispatchTimeInterval = AsyncDefaults.timeout, file: FileString = #file, line: UInt = #line, action: @escaping (@escaping () -> Void) -> Void) { - NMBWait.until(timeout: timeout, file: file, line: line, action: action) +@available(*, noasync, message: "the sync variant of `waitUntil` does not work in async contexts. Use the async variant as a drop-in replacement") +public func waitUntil(timeout: NimbleTimeInterval = PollingDefaults.timeout, fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, action: @escaping (@escaping () -> Void) -> Void) { + NMBWait.until(timeout: timeout, fileID: fileID, file: file, line: line, column: column, action: action) } #endif // #if !os(WASI) diff --git a/Example/Pods/Nimble/Sources/Nimble/DSL.swift b/Example/Pods/Nimble/Sources/Nimble/DSL.swift index 4df36a45e..334a4ddb1 100644 --- a/Example/Pods/Nimble/Sources/Nimble/DSL.swift +++ b/Example/Pods/Nimble/Sources/Nimble/DSL.swift @@ -1,36 +1,76 @@ -/// Make an expectation on a given actual value. The value given is lazily evaluated. -public func expect(file: FileString = #file, line: UInt = #line, _ expression: @autoclosure @escaping () throws -> T?) -> Expectation { - return Expectation( +/// Make a ``SyncExpectation`` on a given actual value. The value given is lazily evaluated. +public func expect(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, _ expression: @autoclosure @escaping () throws -> T?) -> SyncExpectation { + return SyncExpectation( expression: Expression( expression: expression, - location: SourceLocation(file: file, line: line), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), isClosure: true)) } -/// Make an expectation on a given actual value. The closure is lazily invoked. -public func expect(file: FileString = #file, line: UInt = #line, _ expression: @autoclosure () -> (() throws -> T)) -> Expectation { - return Expectation( +/// Make a ``SyncExpectation`` on a given actual value. The closure is lazily invoked. +public func expect(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, _ expression: @autoclosure () -> (() throws -> T)) -> SyncExpectation { + return SyncExpectation( expression: Expression( expression: expression(), - location: SourceLocation(file: file, line: line), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), isClosure: true)) } -/// Make an expectation on a given actual value. The closure is lazily invoked. -public func expect(file: FileString = #file, line: UInt = #line, _ expression: @autoclosure () -> (() throws -> T?)) -> Expectation { - return Expectation( +/// Make a ``SyncExpectation`` on a given actual value. The closure is lazily invoked. +public func expect(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, _ expression: @autoclosure () -> (() throws -> T?)) -> SyncExpectation { + return SyncExpectation( expression: Expression( expression: expression(), - location: SourceLocation(file: file, line: line), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), isClosure: true)) } -/// Make an expectation on a given actual value. The closure is lazily invoked. -public func expect(file: FileString = #file, line: UInt = #line, _ expression: @autoclosure () -> (() throws -> Void)) -> Expectation { - return Expectation( +/// Make a ``SyncExpectation`` on a given actual value. The closure is lazily invoked. +public func expect(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, _ expression: @autoclosure () -> (() throws -> Void)) -> SyncExpectation { + return SyncExpectation( expression: Expression( expression: expression(), - location: SourceLocation(file: file, line: line), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true)) +} + +/// Make a ``SyncExpectation`` on a given actual value. The value given is lazily evaluated. +/// This is provided as an alternative to `expect` which avoids overloading with `expect -> AsyncExpectation`. +public func expects(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, _ expression: @autoclosure @escaping () throws -> T?) -> SyncExpectation { + return SyncExpectation( + expression: Expression( + expression: expression, + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true)) +} + +/// Make a ``SyncExpectation`` on a given actual value. The closure is lazily invoked. +/// This is provided as an alternative to `expect` which avoids overloading with `expect -> AsyncExpectation`. +public func expects(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, _ expression: @autoclosure () -> (() throws -> T)) -> SyncExpectation { + return SyncExpectation( + expression: Expression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true)) +} + +/// Make a ``SyncExpectation`` on a given actual value. The closure is lazily invoked. +/// This is provided as an alternative to `expect` which avoids overloading with `expect -> AsyncExpectation`. +public func expects(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, _ expression: @autoclosure () -> (() throws -> T?)) -> SyncExpectation { + return SyncExpectation( + expression: Expression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), + isClosure: true)) +} + +/// Make a ``SyncExpectation`` on a given actual value. The closure is lazily invoked. +/// This is provided as an alternative to `expect` which avoids overloading with `expect -> AsyncExpectation`. +public func expects(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column, _ expression: @autoclosure () -> (() throws -> Void)) -> SyncExpectation { + return SyncExpectation( + expression: Expression( + expression: expression(), + location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column), isClosure: true)) } @@ -41,13 +81,13 @@ public func fail(_ message: String, location: SourceLocation) { } /// Always fails the test with a message. -public func fail(_ message: String, file: FileString = #file, line: UInt = #line) { - fail(message, location: SourceLocation(file: file, line: line)) +public func fail(_ message: String, fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column) { + fail(message, location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column)) } /// Always fails the test. -public func fail(_ file: FileString = #file, line: UInt = #line) { - fail("fail() always fails", file: file, line: line) +public func fail(fileID: String = #fileID, file: FileString = #filePath, line: UInt = #line, column: UInt = #column) { + fail("fail() always fails", location: SourceLocation(fileID: fileID, filePath: file, line: line, column: column)) } /// Like Swift's precondition(), but raises NSExceptions instead of sigaborts @@ -55,7 +95,7 @@ internal func nimblePrecondition( _ expr: @autoclosure () -> Bool, _ name: @autoclosure () -> String, _ message: @autoclosure () -> String, - file: StaticString = #file, + file: StaticString = #filePath, line: UInt = #line ) { let result = expr() @@ -64,14 +104,13 @@ internal func nimblePrecondition( } } -internal func internalError(_ msg: String, file: FileString = #file, line: UInt = #line) -> Never { +internal func internalError(_ msg: String, file: FileString = #filePath, line: UInt = #line) -> Never { fatalError( """ Nimble Bug Found: \(msg) at \(file):\(line). Please file a bug to Nimble: https://github.com/Quick/Nimble/issues with the code snippet that caused this error. """ ) - // swiftlint:enable line_length } #if canImport(Darwin) diff --git a/Example/Pods/Nimble/Sources/Nimble/Expectation.swift b/Example/Pods/Nimble/Sources/Nimble/Expectation.swift index e4a12fa5e..732e0c573 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Expectation.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Expectation.swift @@ -1,10 +1,10 @@ -internal func execute(_ expression: Expression, _ style: ExpectationStyle, _ predicate: Predicate, to: String, description: String?, captureExceptions: Bool = true) -> (Bool, FailureMessage) { +internal func execute(_ expression: Expression, _ style: ExpectationStyle, _ matcher: Matcher, to: String, description: String?, captureExceptions: Bool = true) -> (Bool, FailureMessage) { func run() -> (Bool, FailureMessage) { let msg = FailureMessage() msg.userDescription = description msg.to = to do { - let result = try predicate.satisfies(expression) + let result = try matcher.satisfies(expression) result.message.update(failureMessage: msg) if msg.actualValue == "" { msg.actualValue = "<\(stringify(try expression.evaluate()))>" @@ -33,44 +33,300 @@ internal func execute(_ expression: Expression, _ style: ExpectationStyle, return result } -public struct Expectation { +internal func execute(_ expression: AsyncExpression, _ style: ExpectationStyle, _ matcher: AsyncMatcher, to: String, description: String?) async -> (Bool, FailureMessage) { + let msg = FailureMessage() + msg.userDescription = description + msg.to = to + do { + let result = try await matcher.satisfies(expression) + result.message.update(failureMessage: msg) + if msg.actualValue == "" { + msg.actualValue = "<\(stringify(try await expression.evaluate()))>" + } + return (result.toBoolean(expectation: style), msg) + } catch let error { + msg.stringValue = "unexpected error thrown: <\(error)>" + return (false, msg) + } +} + +public enum ExpectationStatus: Equatable { + + /// No matchers have been performed. + case pending + + /// All matchers have passed. + case passed + + /// All matchers have failed. + case failed - public let expression: Expression + /// Multiple matchers have been peformed, with at least one passing and one failing. + case mixed +} - public init(expression: Expression) { +extension ExpectationStatus { + /// Applies a new status to the current one to produce a combined status. + /// + /// This method is meant to advance the state from `.pending` to either `.passed` or`.failed`. + /// When called multiple times with different values, the result will be `.mixed`. + /// E.g., `status.applying(.passed).applying(.failed) == .mixed`. + func applying(_ newerStatus: ExpectationStatus) -> ExpectationStatus { + if newerStatus == .pending { return self } + if self == .pending || self == newerStatus { return newerStatus } + return .mixed + } +} + +public protocol Expectation { + var location: SourceLocation { get } + + /// The status of the test after matchers have been evaluated. + /// + /// This property can be used for changing test behavior based whether an expectation has + /// passed. + /// + /// In the below example, we perform additional tests on an array only if it has enough + /// elements. + /// + /// ``` + /// if expect(array).to(haveCount(10)).status == .passed { + /// expect(array[9]).to(...) + /// } + /// ``` + /// + /// - Remark: Similar functionality can be achieved using the `onFailure(throw:)` method. + var status: ExpectationStatus { get } + + /// Takes the result of a test and passes it to the assertion handler. + /// + /// - Returns: An updated `Expression` with the result of the test applied to the `status` + /// property. + @discardableResult + func verify(_ pass: Bool, _ message: FailureMessage) -> Self +} + +extension Expectation { + /// Throws the supplied error if the expectation has previously failed. + /// + /// This provides a mechanism for halting tests when a failure occurs. This can be used in + /// conjunction with `Quick.StopTest` to halt a test when a failure would cause subsequent test + /// code to fail. + /// + /// In the below example, the test will stop in the first line if `array.count == 5` rather + /// than crash on the second line. + /// + /// ``` + /// try expect(array).to(haveCount(10)).onFailure(throw: StopTest.silently) + /// expect(array[9]).to(...) + /// ``` + /// + /// - Warning: This method **MUST** be called after a matcher method like `to` or `not`. + /// Otherwise, this expectation will be in an indeterminate state and will + /// unconditionally log an error. + /// + /// - Remark: Similar functionality can be achieved using the `status` property. + /// - Attention: This is deprecated in favor of the `require` dsl (``require``, ``unwrap``, + /// ``pollUnwrap``), which integrates the matcher seemlessly, or, in the case of + /// `unwrap` and `pollUnwrap`, acts as a shorthand when you require that an + /// expression evaluate to some non-nil value. `onFailure` will be removed in + /// Nimble 15. + @available(*, deprecated, message: "Use the require dsl") + public func onFailure(`throw` error: Error) throws { + switch status { + case .pending: + let msg = """ + Attempted to call `Expectation.onFailure(throw:) before a matcher has been applied. + Try using `expect(...).to(...).onFailure(throw: ...`) instead. + """ + + let handler = NimbleEnvironment.activeInstance.assertionHandler + handler.assert(false, message: .init(stringValue: msg), location: location) + case .passed: + break + case .failed, .mixed: + throw error + } + } +} + +public struct SyncExpectation: Expectation { + public let expression: Expression + + /// The status of the test after matchers have been evaluated. + /// + /// This property can be used for changing test behavior based whether an expectation has + /// passed. + /// + /// In the below example, we perform additional tests on an array only if it has enough + /// elements. + /// + /// ``` + /// if expect(array).to(haveCount(10)).status == .passed { + /// expect(array[9]).to(...) + /// } + /// ``` + /// + /// - Remark: Similar functionality can be achieved using the `onFailure(throw:)` method. + public let status: ExpectationStatus + + private init(expression: Expression, status: ExpectationStatus) { self.expression = expression + self.status = status + } + + public init(expression: Expression) { + self.init(expression: expression, status: .pending) } - public func verify(_ pass: Bool, _ message: FailureMessage) { + /// Takes the result of a test and passes it to the assertion handler. + /// + /// - Returns: An updated `Expression` with the result of the test applied to the `status` + /// property. + @discardableResult + public func verify(_ pass: Bool, _ message: FailureMessage) -> Self { let handler = NimbleEnvironment.activeInstance.assertionHandler handler.assert(pass, message: message, location: expression.location) + + return .init(expression: expression, status: status.applying(pass ? .passed : .failed)) + } + + public var location: SourceLocation { expression.location } + + /// Tests the actual value using a matcher to match. + @discardableResult + public func to(_ matcher: Matcher, description: String? = nil) -> Self { + let (pass, msg) = execute(expression, .toMatch, matcher, to: "to", description: description) + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to not match. + @discardableResult + public func toNot(_ matcher: Matcher, description: String? = nil) -> Self { + let (pass, msg) = execute(expression, .toNotMatch, matcher, to: "to not", description: description) + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to not match. + /// + /// Alias to toNot(). + @discardableResult + public func notTo(_ matcher: Matcher, description: String? = nil) -> Self { + toNot(matcher, description: description) } + // MARK: - AsyncMatchers /// Tests the actual value using a matcher to match. @discardableResult - public func to(_ predicate: Predicate, description: String? = nil) -> Self { - let (pass, msg) = execute(expression, .toMatch, predicate, to: "to", description: description) - verify(pass, msg) - return self + public func to(_ matcher: AsyncMatcher, description: String? = nil) async -> Self { + let (pass, msg) = await execute(expression.toAsyncExpression(), .toMatch, matcher, to: "to", description: description) + return verify(pass, msg) } /// Tests the actual value using a matcher to not match. @discardableResult - public func toNot(_ predicate: Predicate, description: String? = nil) -> Self { - let (pass, msg) = execute(expression, .toNotMatch, predicate, to: "to not", description: description) - verify(pass, msg) - return self + public func toNot(_ matcher: AsyncMatcher, description: String? = nil) async -> Self { + let (pass, msg) = await execute(expression.toAsyncExpression(), .toNotMatch, matcher, to: "to not", description: description) + return verify(pass, msg) } /// Tests the actual value using a matcher to not match. /// /// Alias to toNot(). @discardableResult - public func notTo(_ predicate: Predicate, description: String? = nil) -> Self { - return toNot(predicate, description: description) + public func notTo(_ matcher: AsyncMatcher, description: String? = nil) async -> Self { + await toNot(matcher, description: description) } // see: - // - `async` for extension + // - `Polling.swift` for toEventually and older-style polling-based approach to "async" // - NMBExpectation for Objective-C interface } + +public struct AsyncExpectation: Expectation { + public let expression: AsyncExpression + + /// The status of the test after matchers have been evaluated. + /// + /// This property can be used for changing test behavior based whether an expectation has + /// passed. + /// + /// In the below example, we perform additional tests on an array only if it has enough + /// elements. + /// + /// ``` + /// if expect(array).to(haveCount(10)).status == .passed { + /// expect(array[9]).to(...) + /// } + /// ``` + /// + /// - Remark: Similar functionality can be achieved using the `onFailure(throw:)` method. + public let status: ExpectationStatus + + private init(expression: AsyncExpression, status: ExpectationStatus) { + self.expression = expression + self.status = status + } + + public init(expression: AsyncExpression) { + self.init(expression: expression, status: .pending) + } + + public var location: SourceLocation { expression.location } + + /// Takes the result of a test and passes it to the assertion handler. + /// + /// - Returns: An updated `Expression` with the result of the test applied to the `status` + /// property. + @discardableResult + public func verify(_ pass: Bool, _ message: FailureMessage) -> Self { + let handler = NimbleEnvironment.activeInstance.assertionHandler + handler.assert(pass, message: message, location: expression.location) + + return .init(expression: expression, status: status.applying(pass ? .passed : .failed)) + } + + /// Tests the actual value using a matcher to match. + @discardableResult + public func to(_ matcher: Matcher, description: String? = nil) async -> Self { + let (pass, msg) = execute(await expression.toSynchronousExpression(), .toMatch, matcher, to: "to", description: description) + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to not match. + @discardableResult + public func toNot(_ matcher: Matcher, description: String? = nil) async -> Self { + let (pass, msg) = execute(await expression.toSynchronousExpression(), .toNotMatch, matcher, to: "to not", description: description) + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to not match. + /// + /// Alias to toNot(). + @discardableResult + public func notTo(_ matcher: Matcher, description: String? = nil) async -> Self { + await toNot(matcher, description: description) + } + + /// Tests the actual value using a matcher to match. + @discardableResult + public func to(_ matcher: AsyncMatcher, description: String? = nil) async -> Self { + let (pass, msg) = await execute(expression, .toMatch, matcher, to: "to", description: description) + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to not match. + @discardableResult + public func toNot(_ matcher: AsyncMatcher, description: String? = nil) async -> Self { + let (pass, msg) = await execute(expression, .toNotMatch, matcher, to: "to not", description: description) + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to not match. + /// + /// Alias to toNot(). + @discardableResult + public func notTo(_ matcher: AsyncMatcher, description: String? = nil) async -> Self { + await toNot(matcher, description: description) + } +} diff --git a/Example/Pods/Nimble/Sources/Nimble/Expression.swift b/Example/Pods/Nimble/Sources/Nimble/Expression.swift index ecef26ff6..1bab44fc6 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Expression.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Expression.swift @@ -1,6 +1,6 @@ // Memoizes the given closure, only calling the passed // closure once; even if repeat calls to the returned closure -internal func memoizedClosure(_ closure: @escaping () throws -> T) -> (Bool) throws -> T { +private func memoizedClosure(_ closure: @escaping () throws -> T) -> (Bool) throws -> T { var cache: T? return { withoutCaching in if withoutCaching || cache == nil { @@ -15,14 +15,14 @@ internal func memoizedClosure(_ closure: @escaping () throws -> T) -> (Bool) /// evaluate() multiple times without causing a re-evaluation of the underlying /// closure. /// -/// @warning Since the closure can be any code, Objective-C code may choose -/// to raise an exception. Currently, Expression does not memoize +/// - Warning: Since the closure can be any code, Objective-C code may choose +/// to raise an exception. Currently, SyncExpression does not memoize /// exception raising. /// /// This provides a common consumable API for matchers to utilize to allow /// Nimble to change internals to how the captured closure is managed. -public struct Expression { - internal let _expression: (Bool) throws -> T? +public struct Expression { + internal let _expression: (Bool) throws -> Value? internal let _withoutCaching: Bool public let location: SourceLocation public let isClosure: Bool @@ -30,15 +30,15 @@ public struct Expression { /// Creates a new expression struct. Normally, expect(...) will manage this /// creation process. The expression is memoized. /// - /// @param expression The closure that produces a given value. - /// @param location The source location that this closure originates from. - /// @param isClosure A bool indicating if the captured expression is a + /// - Parameter expression: The closure that produces a given value. + /// - Parameter location: The source location that this closure originates from. + /// - Parameter isClosure: A bool indicating if the captured expression is a /// closure or internally produced closure. Some matchers /// may require closures. For example, toEventually() /// requires an explicit closure. This gives Nimble /// flexibility if @autoclosure behavior changes between /// Swift versions. Nimble internals always sets this true. - public init(expression: @escaping () throws -> T?, location: SourceLocation, isClosure: Bool = true) { + public init(expression: @escaping () throws -> Value?, location: SourceLocation, isClosure: Bool = true) { self._expression = memoizedClosure(expression) self.location = location self._withoutCaching = false @@ -48,18 +48,18 @@ public struct Expression { /// Creates a new expression struct. Normally, expect(...) will manage this /// creation process. /// - /// @param expression The closure that produces a given value. - /// @param location The source location that this closure originates from. - /// @param withoutCaching Indicates if the struct should memoize the given + /// - Parameter expression: The closure that produces a given value. + /// - Parameter location: The source location that this closure originates from. + /// - Parameter withoutCaching: Indicates if the struct should memoize the given /// closure's result. Subsequent evaluate() calls will /// not call the given closure if this is true. - /// @param isClosure A bool indicating if the captured expression is a + /// - Parameter isClosure: A bool indicating if the captured expression is a /// closure or internally produced closure. Some matchers /// may require closures. For example, toEventually() /// requires an explicit closure. This gives Nimble /// flexibility if @autoclosure behavior changes between /// Swift versions. Nimble internals always sets this true. - public init(memoizedExpression: @escaping (Bool) throws -> T?, location: SourceLocation, withoutCaching: Bool, isClosure: Bool = true) { + public init(memoizedExpression: @escaping (Bool) throws -> Value?, location: SourceLocation, withoutCaching: Bool, isClosure: Bool = true) { self._expression = memoizedExpression self.location = location self._withoutCaching = withoutCaching @@ -72,26 +72,44 @@ public struct Expression { /// /// The returned expression will preserve location and isClosure. /// - /// @param block The block that can cast the current Expression value to a + /// - Parameter block: The block that can cast the current Expression value to a /// new type. - public func cast(_ block: @escaping (T?) throws -> U?) -> Expression { - return Expression( + public func cast(_ block: @escaping (Value?) throws -> U?) -> Expression { + Expression( expression: ({ try block(self.evaluate()) }), location: self.location, isClosure: self.isClosure ) } - public func evaluate() throws -> T? { - return try self._expression(_withoutCaching) + public func evaluate() throws -> Value? { + try self._expression(_withoutCaching) } - public func withoutCaching() -> Expression { - return Expression( + public func withoutCaching() -> Expression { + Expression( memoizedExpression: self._expression, location: location, withoutCaching: true, isClosure: isClosure ) } + + public func withCaching() -> Expression { + Expression( + memoizedExpression: memoizedClosure { try self.evaluate() }, + location: self.location, + withoutCaching: false, + isClosure: isClosure + ) + } + + public func toAsyncExpression() -> AsyncExpression { + AsyncExpression( + memoizedExpression: { @MainActor memoize in try _expression(memoize) }, + location: location, + withoutCaching: _withoutCaching, + isClosure: isClosure + ) + } } diff --git a/Example/Pods/Nimble/Sources/Nimble/FailureMessage.swift b/Example/Pods/Nimble/Sources/Nimble/FailureMessage.swift index 2bc57ebd4..8b60b9c2e 100644 --- a/Example/Pods/Nimble/Sources/Nimble/FailureMessage.swift +++ b/Example/Pods/Nimble/Sources/Nimble/FailureMessage.swift @@ -56,7 +56,7 @@ public class FailureMessage: NSObject { value = stripNewlines(value) if let extendedMessage = extendedMessage { - value += "\n\(stripNewlines(extendedMessage))" + value += "\n\(extendedMessage)" } if let userDescription = userDescription { diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/AllPass.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/AllPass.swift index 104fc9f82..133c21ec4 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/AllPass.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/AllPass.swift @@ -1,36 +1,36 @@ public func allPass( _ passFunc: @escaping (S.Element) throws -> Bool -) -> Predicate { - let matcher = Predicate.define("pass a condition") { actualExpression, message in +) -> Matcher { + let matcher = Matcher.define("pass a condition") { actualExpression, message in guard let actual = try actualExpression.evaluate() else { - return PredicateResult(status: .fail, message: message) + return MatcherResult(status: .fail, message: message) } - return PredicateResult(bool: try passFunc(actual), message: message) + return MatcherResult(bool: try passFunc(actual), message: message) } - return createPredicate(matcher) + return createMatcher(matcher) } public func allPass( _ passName: String, _ passFunc: @escaping (S.Element) throws -> Bool -) -> Predicate { - let matcher = Predicate.define(passName) { actualExpression, message in +) -> Matcher { + let matcher = Matcher.define(passName) { actualExpression, message in guard let actual = try actualExpression.evaluate() else { - return PredicateResult(status: .fail, message: message) + return MatcherResult(status: .fail, message: message) } - return PredicateResult(bool: try passFunc(actual), message: message) + return MatcherResult(bool: try passFunc(actual), message: message) } - return createPredicate(matcher) + return createMatcher(matcher) } -public func allPass(_ elementPredicate: Predicate) -> Predicate { - return createPredicate(elementPredicate) +public func allPass(_ elementMatcher: Matcher) -> Matcher { + return createMatcher(elementMatcher) } -private func createPredicate(_ elementMatcher: Predicate) -> Predicate { - return Predicate { actualExpression in +private func createMatcher(_ elementMatcher: Matcher) -> Matcher { + return Matcher { actualExpression in guard let actualValue = try actualExpression.evaluate() else { - return PredicateResult( + return MatcherResult( status: .fail, message: .appends(.expectedTo("all pass"), " (use beNil() to match nils)") ) @@ -42,24 +42,24 @@ private func createPredicate(_ elementMatcher: Predicate expression: { currentElement }, location: actualExpression.location ) - let predicateResult = try elementMatcher.satisfies(exp) - if predicateResult.status == .matches { - failure = predicateResult.message.prepended(expectation: "all ") + let matcherResult = try elementMatcher.satisfies(exp) + if matcherResult.status == .matches { + failure = matcherResult.message.prepended(expectation: "all ") } else { - failure = predicateResult.message + failure = matcherResult.message .replacedExpectation({ .expectedTo($0.expectedMessage) }) .wrappedExpectation( before: "all ", after: ", but failed first at element <\(stringify(currentElement))>" + " in <\(stringify(actualValue))>" ) - return PredicateResult(status: .doesNotMatch, message: failure) + return MatcherResult(status: .doesNotMatch, message: failure) } } failure = failure.replacedExpectation({ expectation in return .expectedTo(expectation.expectedMessage) }) - return PredicateResult(status: .matches, message: failure) + return MatcherResult(status: .matches, message: failure) } } @@ -68,9 +68,9 @@ import class Foundation.NSObject import struct Foundation.NSFastEnumerationIterator import protocol Foundation.NSFastEnumeration -extension NMBPredicate { - @objc public class func allPassMatcher(_ predicate: NMBPredicate) -> NMBPredicate { - return NMBPredicate { actualExpression in +extension NMBMatcher { + @objc public class func allPassMatcher(_ matcher: NMBMatcher) -> NMBMatcher { + return NMBMatcher { actualExpression in let location = actualExpression.location let actualValue = try actualExpression.evaluate() var nsObjects = [NSObject]() @@ -91,8 +91,8 @@ extension NMBPredicate { } if !collectionIsUsable { - return NMBPredicateResult( - status: NMBPredicateStatus.fail, + return NMBMatcherResult( + status: NMBMatcherStatus.fail, message: NMBExpectationMessage( // swiftlint:disable:next line_length fail: "allPass can only be used with types which implement NSFastEnumeration (NSArray, NSSet, ...), and whose elements subclass NSObject, got <\(actualValue?.description ?? "nil")>" @@ -101,8 +101,8 @@ extension NMBPredicate { } let expr = Expression(expression: ({ nsObjects }), location: location) - let pred: Predicate<[NSObject]> = createPredicate(Predicate { expr in - return predicate.satisfies(({ try expr.evaluate() }), location: expr.location).toSwift() + let pred: Matcher<[NSObject]> = createMatcher(Matcher { expr in + return matcher.satisfies(({ try expr.evaluate() }), location: expr.location).toSwift() }) return try pred.satisfies(expr).toObjectiveC() } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/Async.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/Async.swift deleted file mode 100644 index 2f86e3278..000000000 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/Async.swift +++ /dev/null @@ -1,232 +0,0 @@ -#if !os(WASI) - -import Foundation -import Dispatch - -/// If you are running on a slower machine, it could be useful to increase the default timeout value -/// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01. -public struct AsyncDefaults { - public static var timeout: DispatchTimeInterval = .seconds(1) - public static var pollInterval: DispatchTimeInterval = .milliseconds(10) -} - -private enum AsyncMatchStyle { - case eventually, never, always -} - -// swiftlint:disable:next function_parameter_count -private func async( - style: ExpectationStyle, - matchStyle: AsyncMatchStyle, - predicate: Predicate, - timeout: DispatchTimeInterval, - poll: DispatchTimeInterval, - fnName: String -) -> Predicate { - return Predicate { actualExpression in - let uncachedExpression = actualExpression.withoutCaching() - let fnName = "expect(...).\(fnName)(...)" - var lastPredicateResult: PredicateResult? - let result = pollBlock( - pollInterval: poll, - timeoutInterval: timeout, - file: actualExpression.location.file, - line: actualExpression.location.line, - fnName: fnName) { - lastPredicateResult = try predicate.satisfies(uncachedExpression) - return lastPredicateResult!.toBoolean(expectation: style) - } - switch result { - case .completed: - switch matchStyle { - case .eventually: - return lastPredicateResult! - case .never: - return PredicateResult( - status: .fail, - message: lastPredicateResult?.message ?? .fail("matched the predicate when it shouldn't have") - ) - case .always: - return PredicateResult( - status: .fail, - message: lastPredicateResult?.message ?? .fail("didn't match the predicate when it should have") - ) - } - case .timedOut: - switch matchStyle { - case .eventually: - let message = lastPredicateResult?.message ?? .fail("timed out before returning a value") - return PredicateResult(status: .fail, message: message) - case .never: - return PredicateResult(status: .doesNotMatch, message: .expectedTo("never match the predicate")) - case .always: - return PredicateResult(status: .matches, message: .expectedTo("always match the predicate")) - } - case let .errorThrown(error): - return PredicateResult(status: .fail, message: .fail("unexpected error thrown: <\(error)>")) - case let .raisedException(exception): - return PredicateResult(status: .fail, message: .fail("unexpected exception raised: \(exception)")) - case .blockedRunLoop: - let message = lastPredicateResult?.message.appended(message: " (timed out, but main run loop was unresponsive).") ?? - .fail("main run loop was unresponsive") - return PredicateResult(status: .fail, message: message) - case .incomplete: - internalError("Reached .incomplete state for \(fnName)(...).") - } - } -} - -private let toEventuallyRequiresClosureError = FailureMessage( - stringValue: """ - expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) ) - Swift 1.2 @autoclosure behavior has changed in an incompatible way for Nimble to function - """ -) - -extension Expectation { - /// Tests the actual value using a matcher to match by checking continuously - /// at each pollInterval until the timeout is reached. - /// - /// @discussion - /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function - /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. - public func toEventually(_ predicate: Predicate, timeout: DispatchTimeInterval = AsyncDefaults.timeout, pollInterval: DispatchTimeInterval = AsyncDefaults.pollInterval, description: String? = nil) { - nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) - - let (pass, msg) = execute( - expression, - .toMatch, - async( - style: .toMatch, - matchStyle: .eventually, - predicate: predicate, - timeout: timeout, - poll: pollInterval, - fnName: "toEventually" - ), - to: "to eventually", - description: description, - captureExceptions: false - ) - verify(pass, msg) - } - - /// Tests the actual value using a matcher to not match by checking - /// continuously at each pollInterval until the timeout is reached. - /// - /// @discussion - /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function - /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. - public func toEventuallyNot(_ predicate: Predicate, timeout: DispatchTimeInterval = AsyncDefaults.timeout, pollInterval: DispatchTimeInterval = AsyncDefaults.pollInterval, description: String? = nil) { - nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) - - let (pass, msg) = execute( - expression, - .toNotMatch, - async( - style: .toNotMatch, - matchStyle: .eventually, - predicate: predicate, - timeout: timeout, - poll: pollInterval, - fnName: "toEventuallyNot" - ), - to: "to eventually not", - description: description, - captureExceptions: false - ) - verify(pass, msg) - } - - /// Tests the actual value using a matcher to not match by checking - /// continuously at each pollInterval until the timeout is reached. - /// - /// Alias of toEventuallyNot() - /// - /// @discussion - /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function - /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. - public func toNotEventually(_ predicate: Predicate, timeout: DispatchTimeInterval = AsyncDefaults.timeout, pollInterval: DispatchTimeInterval = AsyncDefaults.pollInterval, description: String? = nil) { - return toEventuallyNot(predicate, timeout: timeout, pollInterval: pollInterval, description: description) - } - - /// Tests the actual value using a matcher to never match by checking - /// continuously at each pollInterval until the timeout is reached. - /// - /// @discussion - /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function - /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. - public func toNever(_ predicate: Predicate, until: DispatchTimeInterval = AsyncDefaults.timeout, pollInterval: DispatchTimeInterval = AsyncDefaults.pollInterval, description: String? = nil) { - nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) - - let (pass, msg) = execute( - expression, - .toNotMatch, - async( - style: .toMatch, - matchStyle: .never, - predicate: predicate, - timeout: until, - poll: pollInterval, - fnName: "toNever" - ), - to: "to never", - description: description, - captureExceptions: false - ) - verify(pass, msg) - } - - /// Tests the actual value using a matcher to never match by checking - /// continuously at each pollInterval until the timeout is reached. - /// - /// Alias of toNever() - /// - /// @discussion - /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function - /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. - public func neverTo(_ predicate: Predicate, until: DispatchTimeInterval = AsyncDefaults.timeout, pollInterval: DispatchTimeInterval = AsyncDefaults.pollInterval, description: String? = nil) { - return toNever(predicate, until: until, pollInterval: pollInterval, description: description) - } - - /// Tests the actual value using a matcher to always match by checking - /// continusouly at each pollInterval until the timeout is reached - /// - /// @discussion - /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function - /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. - public func toAlways(_ predicate: Predicate, until: DispatchTimeInterval = AsyncDefaults.timeout, pollInterval: DispatchTimeInterval = AsyncDefaults.pollInterval, description: String? = nil) { - nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) - - let (pass, msg) = execute( - expression, - .toMatch, - async( - style: .toNotMatch, - matchStyle: .always, - predicate: predicate, - timeout: until, - poll: pollInterval, - fnName: "toAlways" - ), - to: "to always", - description: description, - captureExceptions: false - ) - verify(pass, msg) - } - - /// Tests the actual value using a matcher to always match by checking - /// continusouly at each pollInterval until the timeout is reached - /// - /// Alias of toAlways() - /// - /// @discussion - /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function - /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. - public func alwaysTo(_ predicate: Predicate, until: DispatchTimeInterval = AsyncDefaults.timeout, pollInterval: DispatchTimeInterval = AsyncDefaults.pollInterval, description: String? = nil) { - return toAlways(predicate, until: until, pollInterval: pollInterval, description: description) - } -} - -#endif // #if !os(WASI) diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/AsyncAllPass.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/AsyncAllPass.swift new file mode 100644 index 000000000..ec04f9ebe --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/AsyncAllPass.swift @@ -0,0 +1,64 @@ +public func allPass( + _ passFunc: @escaping (S.Element) async throws -> Bool +) -> AsyncMatcher { + let matcher = AsyncMatcher.define("pass a condition") { actualExpression, message in + guard let actual = try await actualExpression.evaluate() else { + return MatcherResult(status: .fail, message: message) + } + return MatcherResult(bool: try await passFunc(actual), message: message) + } + return createMatcher(matcher) +} + +public func allPass( + _ passName: String, + _ passFunc: @escaping (S.Element) async throws -> Bool +) -> AsyncMatcher { + let matcher = AsyncMatcher.define(passName) { actualExpression, message in + guard let actual = try await actualExpression.evaluate() else { + return MatcherResult(status: .fail, message: message) + } + return MatcherResult(bool: try await passFunc(actual), message: message) + } + return createMatcher(matcher) +} + +public func allPass(_ elementMatcher: AsyncMatcher) -> AsyncMatcher { + return createMatcher(elementMatcher) +} + +private func createMatcher(_ elementMatcher: AsyncMatcher) -> AsyncMatcher { + return AsyncMatcher { actualExpression in + guard let actualValue = try await actualExpression.evaluate() else { + return MatcherResult( + status: .fail, + message: .appends(.expectedTo("all pass"), " (use beNil() to match nils)") + ) + } + + var failure: ExpectationMessage = .expectedTo("all pass") + for currentElement in actualValue { + let exp = AsyncExpression( + expression: { currentElement }, + location: actualExpression.location + ) + let matcherResult = try await elementMatcher.satisfies(exp) + if matcherResult.status == .matches { + failure = matcherResult.message.prepended(expectation: "all ") + } else { + failure = matcherResult.message + .replacedExpectation({ .expectedTo($0.expectedMessage) }) + .wrappedExpectation( + before: "all ", + after: ", but failed first at element <\(stringify(currentElement))>" + + " in <\(stringify(actualValue))>" + ) + return MatcherResult(status: .doesNotMatch, message: failure) + } + } + failure = failure.replacedExpectation({ expectation in + return .expectedTo(expectation.expectedMessage) + }) + return MatcherResult(status: .matches, message: failure) + } +} diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/AsyncMatcher.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/AsyncMatcher.swift new file mode 100644 index 000000000..96b118a99 --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/AsyncMatcher.swift @@ -0,0 +1,118 @@ +public protocol AsyncableMatcher { + associatedtype Value + func satisfies(_ expression: AsyncExpression) async throws -> MatcherResult +} + +extension Matcher: AsyncableMatcher { + public func satisfies(_ expression: AsyncExpression) async throws -> MatcherResult { + try satisfies(await expression.toSynchronousExpression()) + } +} + +/// An AsyncMatcher is part of the new matcher API that provides assertions to expectations. +/// +/// Given a code snippet: +/// +/// expect(1).to(equal(2)) +/// ^^^^^^^^ +/// Called a "matcher" +/// +/// A matcher consists of two parts a constructor function and the Matcher. +/// +/// The Matcher provide the heavy lifting on how to assert against a given value. Internally, +/// matchers are simple wrappers around closures to provide static type information and +/// allow composition and wrapping of existing behaviors. +/// +/// `AsyncMatcher`s serve to allow writing matchers that must be run in async contexts. +/// These can also be used with either `Expectation`s or `AsyncExpectation`s. +/// But these can only be used from async contexts, and are unavailable in Objective-C. +/// You can, however, call regular Matchers from an AsyncMatcher, if you wish to compose one like that. +public struct AsyncMatcher: AsyncableMatcher { + fileprivate var matcher: (AsyncExpression) async throws -> MatcherResult + + public init(_ matcher: @escaping (AsyncExpression) async throws -> MatcherResult) { + self.matcher = matcher + } + + /// Uses a matcher on a given value to see if it passes the matcher. + /// + /// @param expression The value to run the matcher's logic against + /// @returns A matcher result indicate passing or failing and an associated error message. + public func satisfies(_ expression: AsyncExpression) async throws -> MatcherResult { + return try await matcher(expression) + } +} + +@available(*, deprecated, renamed: "AsyncMatcher") +public typealias AsyncPredicate = AsyncMatcher + +/// Provides convenience helpers to defining matchers +extension AsyncMatcher { + /// Like Matcher() constructor, but automatically guard against nil (actual) values + public static func define(matcher: @escaping (AsyncExpression) async throws -> MatcherResult) -> AsyncMatcher { + return AsyncMatcher { actual in + return try await matcher(actual) + }.requireNonNil + } + + /// Defines a matcher with a default message that can be returned in the closure + /// Also ensures the matcher's actual value cannot pass with `nil` given. + public static func define(_ message: String = "match", matcher: @escaping (AsyncExpression, ExpectationMessage) async throws -> MatcherResult) -> AsyncMatcher { + return AsyncMatcher { actual in + return try await matcher(actual, .expectedActualValueTo(message)) + }.requireNonNil + } + + /// Defines a matcher with a default message that can be returned in the closure + /// Unlike `define`, this allows nil values to succeed if the given closure chooses to. + public static func defineNilable(_ message: String = "match", matcher: @escaping (AsyncExpression, ExpectationMessage) async throws -> MatcherResult) -> AsyncMatcher { + return AsyncMatcher { actual in + return try await matcher(actual, .expectedActualValueTo(message)) + } + } + + /// Provides a simple matcher definition that provides no control over the predefined + /// error message. + /// + /// Also ensures the matcher's actual value cannot pass with `nil` given. + public static func simple(_ message: String = "match", matcher: @escaping (AsyncExpression) async throws -> MatcherStatus) -> AsyncMatcher { + return AsyncMatcher { actual in + return MatcherResult(status: try await matcher(actual), message: .expectedActualValueTo(message)) + }.requireNonNil + } + + /// Provides a simple matcher definition that provides no control over the predefined + /// error message. + /// + /// Unlike `simple`, this allows nil values to succeed if the given closure chooses to. + public static func simpleNilable(_ message: String = "match", matcher: @escaping (AsyncExpression) async throws -> MatcherStatus) -> AsyncMatcher { + return AsyncMatcher { actual in + return MatcherResult(status: try await matcher(actual), message: .expectedActualValueTo(message)) + } + } +} + +extension AsyncMatcher { + // Someday, make this public? Needs documentation + internal func after(f: @escaping (AsyncExpression, MatcherResult) async throws -> MatcherResult) -> AsyncMatcher { + // swiftlint:disable:previous identifier_name + return AsyncMatcher { actual -> MatcherResult in + let result = try await self.satisfies(actual) + return try await f(actual, result) + } + } + + /// Returns a new Matcher based on the current one that always fails if nil is given as + /// the actual value. + public var requireNonNil: AsyncMatcher { + return after { actual, result in + if try await actual.evaluate() == nil { + return MatcherResult( + status: .fail, + message: result.message.appendedBeNilHint() + ) + } + return result + } + } +} diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift index f01ca7707..48261b3e0 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift @@ -6,21 +6,21 @@ private func matcherMessage(forClass expectedClass: AnyClass) -> String { } /// A Nimble matcher that succeeds when the actual value is an instance of the given class. -public func beAKindOf(_ expectedType: T.Type) -> Predicate { - return Predicate.define { actualExpression in +public func beAKindOf(_ expectedType: T.Type) -> Matcher { + return Matcher.define { actualExpression in let message: ExpectationMessage let instance = try actualExpression.evaluate() guard let validInstance = instance else { message = .expectedCustomValueTo(matcherMessage(forType: expectedType), actual: "") - return PredicateResult(status: .fail, message: message) + return MatcherResult(status: .fail, message: message) } message = .expectedCustomValueTo( "be a kind of \(String(describing: expectedType))", actual: "<\(String(describing: type(of: validInstance))) instance>" ) - return PredicateResult( + return MatcherResult( bool: validInstance is T, message: message ) @@ -32,14 +32,14 @@ import class Foundation.NSObject /// A Nimble matcher that succeeds when the actual value is an instance of the given class. /// @see beAnInstanceOf if you want to match against the exact class -public func beAKindOf(_ expectedClass: AnyClass) -> Predicate { - return Predicate.define { actualExpression in +public func beAKindOf(_ expectedClass: AnyClass) -> Matcher { + return Matcher.define { actualExpression in let message: ExpectationMessage - let status: PredicateStatus + let status: MatcherStatus let instance = try actualExpression.evaluate() if let validInstance = instance { - status = PredicateStatus(bool: instance != nil && instance!.isKind(of: expectedClass)) + status = MatcherStatus(bool: instance != nil && instance!.isKind(of: expectedClass)) message = .expectedCustomValueTo( matcherMessage(forClass: expectedClass), actual: "<\(String(describing: type(of: validInstance))) instance>" @@ -52,13 +52,13 @@ public func beAKindOf(_ expectedClass: AnyClass) -> Predicate { ) } - return PredicateResult(status: status, message: message) + return MatcherResult(status: status, message: message) } } -extension NMBPredicate { - @objc public class func beAKindOfMatcher(_ expected: AnyClass) -> NMBPredicate { - return NMBPredicate { actualExpression in +extension NMBMatcher { + @objc public class func beAKindOfMatcher(_ expected: AnyClass) -> NMBMatcher { + return NMBMatcher { actualExpression in return try beAKindOf(expected).satisfies(actualExpression).toObjectiveC() } } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift index 47ea663a1..f36d6689e 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift @@ -1,12 +1,12 @@ import Foundation /// A Nimble matcher that succeeds when the actual value is an _exact_ instance of the given class. -public func beAnInstanceOf(_ expectedType: T.Type) -> Predicate { +public func beAnInstanceOf(_ expectedType: T.Type) -> Matcher { let errorMessage = "be an instance of \(String(describing: expectedType))" - return Predicate.define { actualExpression in + return Matcher.define { actualExpression in let instance = try actualExpression.evaluate() - guard let validInstance = instance else { - return PredicateResult( + guard let validInstance: Any = instance else { + return MatcherResult( status: .doesNotMatch, message: .expectedActualValueTo(errorMessage) ) @@ -14,8 +14,8 @@ public func beAnInstanceOf(_ expectedType: T.Type) -> Predicate { let actualString = "<\(String(describing: type(of: validInstance))) instance>" - return PredicateResult( - status: PredicateStatus(bool: type(of: validInstance) == expectedType), + return MatcherResult( + status: MatcherStatus(bool: type(of: validInstance) == expectedType), message: .expectedCustomValueTo(errorMessage, actual: actualString) ) } @@ -23,9 +23,9 @@ public func beAnInstanceOf(_ expectedType: T.Type) -> Predicate { /// A Nimble matcher that succeeds when the actual value is an instance of the given class. /// @see beAKindOf if you want to match against subclasses -public func beAnInstanceOf(_ expectedClass: AnyClass) -> Predicate { +public func beAnInstanceOf(_ expectedClass: AnyClass) -> Matcher { let errorMessage = "be an instance of \(String(describing: expectedClass))" - return Predicate.define { actualExpression in + return Matcher.define { actualExpression in let instance = try actualExpression.evaluate() let actualString: String if let validInstance = instance { @@ -38,17 +38,17 @@ public func beAnInstanceOf(_ expectedClass: AnyClass) -> Predicate { #else let matches = instance != nil && type(of: instance!) == expectedClass #endif - return PredicateResult( - status: PredicateStatus(bool: matches), + return MatcherResult( + status: MatcherStatus(bool: matches), message: .expectedCustomValueTo(errorMessage, actual: actualString) ) } } #if canImport(Darwin) -extension NMBPredicate { - @objc public class func beAnInstanceOfMatcher(_ expected: AnyClass) -> NMBPredicate { - return NMBPredicate { actualExpression in +extension NMBMatcher { + @objc public class func beAnInstanceOfMatcher(_ expected: AnyClass) -> NMBMatcher { + return NMBMatcher { actualExpression in return try beAnInstanceOf(expected).satisfies(actualExpression).toObjectiveC() } } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift index e7fd2d1f3..36dc0e00f 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift @@ -9,9 +9,9 @@ internal func isCloseTo( _ actualValue: Value?, expectedValue: Value, delta: Value -) -> PredicateResult { +) -> MatcherResult { let errorMessage = "be close to <\(stringify(expectedValue))> (within \(stringify(delta)))" - return PredicateResult( + return MatcherResult( bool: actualValue != nil && abs(actualValue! - expectedValue) < delta, message: .expectedCustomValueTo(errorMessage, actual: "<\(stringify(actualValue))>") @@ -22,9 +22,9 @@ internal func isCloseTo( _ actualValue: NMBDoubleConvertible?, expectedValue: NMBDoubleConvertible, delta: Double -) -> PredicateResult { +) -> MatcherResult { let errorMessage = "be close to <\(stringify(expectedValue))> (within \(stringify(delta)))" - return PredicateResult( + return MatcherResult( bool: actualValue != nil && abs(actualValue!.doubleValue - expectedValue.doubleValue) < delta, message: .expectedCustomValueTo(errorMessage, actual: "<\(stringify(actualValue))>") @@ -38,8 +38,8 @@ internal func isCloseTo( public func beCloseTo( _ expectedValue: Value, within delta: Value = defaultDelta() -) -> Predicate { - return Predicate.define { actualExpression in +) -> Matcher { + return Matcher.define { actualExpression in return isCloseTo(try actualExpression.evaluate(), expectedValue: expectedValue, delta: delta) } } @@ -51,8 +51,8 @@ public func beCloseTo( public func beCloseTo( _ expectedValue: Value, within delta: Double = DefaultDelta -) -> Predicate { - return Predicate.define { actualExpression in +) -> Matcher { + return Matcher.define { actualExpression in return isCloseTo(try actualExpression.evaluate(), expectedValue: expectedValue, delta: delta) } } @@ -60,38 +60,38 @@ public func beCloseTo( private func beCloseTo( _ expectedValue: NMBDoubleConvertible, within delta: Double = DefaultDelta -) -> Predicate { - return Predicate.define { actualExpression in +) -> Matcher { + return Matcher.define { actualExpression in return isCloseTo(try actualExpression.evaluate(), expectedValue: expectedValue, delta: delta) } } #if canImport(Darwin) -public class NMBObjCBeCloseToPredicate: NMBPredicate { +public class NMBObjCBeCloseToMatcher: NMBMatcher { private let _expected: NSNumber fileprivate init(expected: NSNumber, within: CDouble) { _expected = expected - let predicate = beCloseTo(expected, within: within) - let predicateBlock: PredicateBlock = { actualExpression in + let matcher = beCloseTo(expected, within: within) + let matcherBlock: MatcherBlock = { actualExpression in let expr = actualExpression.cast { $0 as? NMBDoubleConvertible } - return try predicate.satisfies(expr).toObjectiveC() + return try matcher.satisfies(expr).toObjectiveC() } - super.init(predicate: predicateBlock) + super.init(matcher: matcherBlock) } - @objc public var within: (CDouble) -> NMBObjCBeCloseToPredicate { + @objc public var within: (CDouble) -> NMBObjCBeCloseToMatcher { let expected = _expected return { delta in - return NMBObjCBeCloseToPredicate(expected: expected, within: delta) + return NMBObjCBeCloseToMatcher(expected: expected, within: delta) } } } -extension NMBPredicate { - @objc public class func beCloseToMatcher(_ expected: NSNumber, within: CDouble) -> NMBObjCBeCloseToPredicate { - return NMBObjCBeCloseToPredicate(expected: expected, within: within) +extension NMBMatcher { + @objc public class func beCloseToMatcher(_ expected: NSNumber, within: CDouble) -> NMBObjCBeCloseToMatcher { + return NMBObjCBeCloseToMatcher(expected: expected, within: within) } } #endif @@ -99,9 +99,9 @@ extension NMBPredicate { public func beCloseTo( _ expectedValues: Values, within delta: Value = defaultDelta() -) -> Predicate where Values.Element == Value { +) -> Matcher where Values.Element == Value { let errorMessage = "be close to <\(stringify(expectedValues))> (each within \(stringify(delta)))" - return Predicate.simple(errorMessage) { actualExpression in + return Matcher.simple(errorMessage) { actualExpression in guard let actualValues = try actualExpression.evaluate() else { return .doesNotMatch } @@ -110,10 +110,8 @@ public func beCloseTo( return .doesNotMatch } - for index in actualValues.indices { - if abs(actualValues[index] - expectedValues[index]) > delta { - return .doesNotMatch - } + for index in actualValues.indices where abs(actualValues[index] - expectedValues[index]) > delta { + return .doesNotMatch } return .matches } @@ -123,43 +121,61 @@ public func beCloseTo( infix operator ≈ : ComparisonPrecedence -extension Expectation where T: Collection, T.Element: FloatingPoint { - // swiftlint:disable:next identifier_name - public static func ≈(lhs: Expectation, rhs: T) { - lhs.to(beCloseTo(rhs)) - } +// swiftlint:disable identifier_name +public func ≈ (lhs: SyncExpectation, rhs: Value) where Value: Collection, Value.Element: FloatingPoint { + lhs.to(beCloseTo(rhs)) } -extension Expectation where T: FloatingPoint { - // swiftlint:disable:next identifier_name - public static func ≈(lhs: Expectation, rhs: T) { - lhs.to(beCloseTo(rhs)) - } +public func ≈ (lhs: AsyncExpectation, rhs: Value) async where Value: Collection, Value.Element: FloatingPoint { + await lhs.to(beCloseTo(rhs)) +} - // swiftlint:disable:next identifier_name - public static func ≈(lhs: Expectation, rhs: (expected: T, delta: T)) { - lhs.to(beCloseTo(rhs.expected, within: rhs.delta)) - } +public func ≈ (lhs: SyncExpectation, rhs: Value) { + lhs.to(beCloseTo(rhs)) +} - public static func == (lhs: Expectation, rhs: (expected: T, delta: T)) { - lhs.to(beCloseTo(rhs.expected, within: rhs.delta)) - } +public func ≈ (lhs: AsyncExpectation, rhs: Value) async { + await lhs.to(beCloseTo(rhs)) } -extension Expectation where T: NMBDoubleConvertible { - // swiftlint:disable:next identifier_name - public static func ≈(lhs: Expectation, rhs: T) { - lhs.to(beCloseTo(rhs)) - } +public func ≈ (lhs: SyncExpectation, rhs: (expected: Value, delta: Value)) { + lhs.to(beCloseTo(rhs.expected, within: rhs.delta)) +} - // swiftlint:disable:next identifier_name - public static func ≈(lhs: Expectation, rhs: (expected: T, delta: Double)) { - lhs.to(beCloseTo(rhs.expected, within: rhs.delta)) - } +public func ≈ (lhs: AsyncExpectation, rhs: (expected: Value, delta: Value)) async { + await lhs.to(beCloseTo(rhs.expected, within: rhs.delta)) +} - public static func == (lhs: Expectation, rhs: (expected: T, delta: Double)) { - lhs.to(beCloseTo(rhs.expected, within: rhs.delta)) - } +public func == (lhs: SyncExpectation, rhs: (expected: Value, delta: Value)) { + lhs.to(beCloseTo(rhs.expected, within: rhs.delta)) +} + +public func == (lhs: AsyncExpectation, rhs: (expected: Value, delta: Value)) async { + await lhs.to(beCloseTo(rhs.expected, within: rhs.delta)) +} + +public func ≈ (lhs: SyncExpectation, rhs: Value) { + lhs.to(beCloseTo(rhs)) +} + +public func ≈ (lhs: AsyncExpectation, rhs: Value) async { + await lhs.to(beCloseTo(rhs)) +} + +public func ≈ (lhs: SyncExpectation, rhs: (expected: Value, delta: Double)) { + lhs.to(beCloseTo(rhs.expected, within: rhs.delta)) +} + +public func ≈ (lhs: AsyncExpectation, rhs: (expected: Value, delta: Double)) async { + await lhs.to(beCloseTo(rhs.expected, within: rhs.delta)) +} + +public func == (lhs: SyncExpectation, rhs: (expected: Value, delta: Double)) { + lhs.to(beCloseTo(rhs.expected, within: rhs.delta)) +} + +public func == (lhs: AsyncExpectation, rhs: (expected: Value, delta: Double)) async { + await lhs.to(beCloseTo(rhs.expected, within: rhs.delta)) } // make this higher precedence than exponents so the Doubles either end aren't pulled in @@ -169,11 +185,11 @@ precedencegroup PlusMinusOperatorPrecedence { } infix operator ± : PlusMinusOperatorPrecedence -// swiftlint:disable:next identifier_name -public func ±(lhs: Value, rhs: Value) -> (expected: Value, delta: Value) { +public func ± (lhs: Value, rhs: Value) -> (expected: Value, delta: Value) { return (expected: lhs, delta: rhs) } -// swiftlint:disable:next identifier_name -public func ±(lhs: Value, rhs: Double) -> (expected: Value, delta: Double) { +public func ± (lhs: Value, rhs: Double) -> (expected: Value, delta: Double) { return (expected: lhs, delta: rhs) } + +// swiftlint:enable identifier_name diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeEmpty.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeEmpty.swift index 4036471db..571797ca1 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeEmpty.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeEmpty.swift @@ -2,48 +2,48 @@ import Foundation /// A Nimble matcher that succeeds when a value is "empty". For collections, this /// means the are no items in that collection. For strings, it is an empty string. -public func beEmpty() -> Predicate { - return Predicate.simple("be empty") { actualExpression in +public func beEmpty() -> Matcher { + return Matcher.simple("be empty") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } var generator = actual.makeIterator() - return PredicateStatus(bool: generator.next() == nil) + return MatcherStatus(bool: generator.next() == nil) } } /// A Nimble matcher that succeeds when a value is "empty". For collections, this /// means the are no items in that collection. For strings, it is an empty string. -public func beEmpty() -> Predicate { - return Predicate.simple("be empty") { actualExpression in +public func beEmpty() -> Matcher { + return Matcher.simple("be empty") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.isEmpty) + return MatcherStatus(bool: actual.isEmpty) } } /// A Nimble matcher that succeeds when a value is "empty". For collections, this /// means the are no items in that collection. For strings, it is an empty string. -public func beEmpty() -> Predicate { - return Predicate.simple("be empty") { actualExpression in +public func beEmpty() -> Matcher { + return Matcher.simple("be empty") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.isEmpty) + return MatcherStatus(bool: actual.isEmpty) } } /// A Nimble matcher that succeeds when a value is "empty". For collections, this /// means the are no items in that collection. For strings, it is an empty string. -public func beEmpty() -> Predicate { - return Predicate.simple("be empty") { actualExpression in +public func beEmpty() -> Matcher { + return Matcher.simple("be empty") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.isEmpty) + return MatcherStatus(bool: actual.isEmpty) } } /// A Nimble matcher that succeeds when a value is "empty". For collections, this /// means the are no items in that collection. For NSString instances, it is an empty string. -public func beEmpty() -> Predicate { - return Predicate.simple("be empty") { actualExpression in +public func beEmpty() -> Matcher { + return Matcher.simple("be empty") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.length == 0) + return MatcherStatus(bool: actual.length == 0) } } @@ -52,35 +52,35 @@ public func beEmpty() -> Predicate { /// A Nimble matcher that succeeds when a value is "empty". For collections, this /// means the are no items in that collection. For strings, it is an empty string. -public func beEmpty() -> Predicate { - return Predicate.simple("be empty") { actualExpression in +public func beEmpty() -> Matcher { + return Matcher.simple("be empty") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.count == 0) + return MatcherStatus(bool: actual.count == 0) } } /// A Nimble matcher that succeeds when a value is "empty". For collections, this /// means the are no items in that collection. For strings, it is an empty string. -public func beEmpty() -> Predicate { - return Predicate.simple("be empty") { actualExpression in +public func beEmpty() -> Matcher { + return Matcher.simple("be empty") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.count == 0) + return MatcherStatus(bool: actual.count == 0) } } /// A Nimble matcher that succeeds when a value is "empty". For collections, this /// means the are no items in that collection. For strings, it is an empty string. -public func beEmpty() -> Predicate { - return Predicate.simple("be empty") { actualExpression in +public func beEmpty() -> Matcher { + return Matcher.simple("be empty") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.count == 0) + return MatcherStatus(bool: actual.count == 0) } } #if canImport(Darwin) -extension NMBPredicate { - @objc public class func beEmptyMatcher() -> NMBPredicate { - return NMBPredicate { actualExpression in +extension NMBMatcher { + @objc public class func beEmptyMatcher() -> NMBMatcher { + return NMBMatcher { actualExpression in let location = actualExpression.location let actualValue = try actualExpression.evaluate() @@ -92,16 +92,16 @@ extension NMBPredicate { return try beEmpty().satisfies(expr).toObjectiveC() } else if let actualValue = actualValue { let badTypeErrorMsg = "be empty (only works for NSArrays, NSSets, NSIndexSets, NSDictionaries, NSHashTables, and NSStrings)" - return NMBPredicateResult( - status: NMBPredicateStatus.fail, + return NMBMatcherResult( + status: NMBMatcherStatus.fail, message: NMBExpectationMessage( expectedActualValueTo: badTypeErrorMsg, customActualValue: "\(String(describing: type(of: actualValue))) type" ) ) } - return NMBPredicateResult( - status: NMBPredicateStatus.fail, + return NMBMatcherResult( + status: NMBMatcherStatus.fail, message: NMBExpectationMessage(expectedActualValueTo: "be empty").appendedBeNilHint() ) } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift index a8d12125e..dc96d583d 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift @@ -1,38 +1,46 @@ /// A Nimble matcher that succeeds when the actual value is greater than the expected value. -public func beGreaterThan(_ expectedValue: T?) -> Predicate { +public func beGreaterThan(_ expectedValue: T?) -> Matcher { let errorMessage = "be greater than <\(stringify(expectedValue))>" - return Predicate.simple(errorMessage) { actualExpression in + return Matcher.simple(errorMessage) { actualExpression in guard let actual = try actualExpression.evaluate(), let expected = expectedValue else { return .fail } - return PredicateStatus(bool: actual > expected) + return MatcherStatus(bool: actual > expected) } } -public func >(lhs: Expectation, rhs: T) { +public func > (lhs: SyncExpectation, rhs: T) { lhs.to(beGreaterThan(rhs)) } +public func > (lhs: AsyncExpectation, rhs: T) async { + await lhs.to(beGreaterThan(rhs)) +} + #if canImport(Darwin) import enum Foundation.ComparisonResult /// A Nimble matcher that succeeds when the actual value is greater than the expected value. -public func beGreaterThan(_ expectedValue: NMBComparable?) -> Predicate { +public func beGreaterThan(_ expectedValue: T?) -> Matcher { let errorMessage = "be greater than <\(stringify(expectedValue))>" - return Predicate.simple(errorMessage) { actualExpression in + return Matcher.simple(errorMessage) { actualExpression in let actualValue = try actualExpression.evaluate() let matches = actualValue != nil && actualValue!.NMB_compare(expectedValue) == ComparisonResult.orderedDescending - return PredicateStatus(bool: matches) + return MatcherStatus(bool: matches) } } -public func > (lhs: Expectation, rhs: NMBComparable?) { +public func > (lhs: SyncExpectation, rhs: T?) { lhs.to(beGreaterThan(rhs)) } -extension NMBPredicate { - @objc public class func beGreaterThanMatcher(_ expected: NMBComparable?) -> NMBPredicate { - return NMBPredicate { actualExpression in +public func > (lhs: AsyncExpectation, rhs: T?) async { + await lhs.to(beGreaterThan(rhs)) +} + +extension NMBMatcher { + @objc public class func beGreaterThanMatcher(_ expected: NMBComparable?) -> NMBMatcher { + return NMBMatcher { actualExpression in let expr = actualExpression.cast { $0 as? NMBComparable } return try beGreaterThan(expected).satisfies(expr).toObjectiveC() } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift index affa58cf8..14821debe 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift @@ -1,39 +1,47 @@ /// A Nimble matcher that succeeds when the actual value is greater than /// or equal to the expected value. -public func beGreaterThanOrEqualTo(_ expectedValue: T?) -> Predicate { +public func beGreaterThanOrEqualTo(_ expectedValue: T?) -> Matcher { let message = "be greater than or equal to <\(stringify(expectedValue))>" - return Predicate.simple(message) { actualExpression in + return Matcher.simple(message) { actualExpression in guard let actual = try actualExpression.evaluate(), let expected = expectedValue else { return .fail } - return PredicateStatus(bool: actual >= expected) + return MatcherStatus(bool: actual >= expected) } } -public func >=(lhs: Expectation, rhs: T) { +public func >= (lhs: SyncExpectation, rhs: T) { lhs.to(beGreaterThanOrEqualTo(rhs)) } +public func >= (lhs: AsyncExpectation, rhs: T) async { + await lhs.to(beGreaterThanOrEqualTo(rhs)) +} + #if canImport(Darwin) import enum Foundation.ComparisonResult /// A Nimble matcher that succeeds when the actual value is greater than /// or equal to the expected value. -public func beGreaterThanOrEqualTo(_ expectedValue: T?) -> Predicate { +public func beGreaterThanOrEqualTo(_ expectedValue: T?) -> Matcher { let message = "be greater than or equal to <\(stringify(expectedValue))>" - return Predicate.simple(message) { actualExpression in + return Matcher.simple(message) { actualExpression in let actualValue = try actualExpression.evaluate() let matches = actualValue != nil && actualValue!.NMB_compare(expectedValue) != ComparisonResult.orderedAscending - return PredicateStatus(bool: matches) + return MatcherStatus(bool: matches) } } -public func >=(lhs: Expectation, rhs: T) { +public func >= (lhs: SyncExpectation, rhs: T) { lhs.to(beGreaterThanOrEqualTo(rhs)) } -extension NMBPredicate { - @objc public class func beGreaterThanOrEqualToMatcher(_ expected: NMBComparable?) -> NMBPredicate { - return NMBPredicate { actualExpression in +public func >= (lhs: AsyncExpectation, rhs: T) async { + await lhs.to(beGreaterThanOrEqualTo(rhs)) +} + +extension NMBMatcher { + @objc public class func beGreaterThanOrEqualToMatcher(_ expected: NMBComparable?) -> NMBMatcher { + return NMBMatcher { actualExpression in let expr = actualExpression.cast { $0 as? NMBComparable } return try beGreaterThanOrEqualTo(expected).satisfies(expr).toObjectiveC() } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift index f3db774f0..85e5b50c8 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift @@ -1,11 +1,11 @@ /// A Nimble matcher that succeeds when the actual value is the same instance /// as the expected instance. -public func beIdenticalTo(_ expected: AnyObject?) -> Predicate { - return Predicate.define { actualExpression in +public func beIdenticalTo(_ expected: T?) -> Matcher { + return Matcher.define { actualExpression in let actual = try actualExpression.evaluate() let bool = actual === expected && actual !== nil - return PredicateResult( + return MatcherResult( bool: bool, message: .expectedCustomValueTo( "be identical to \(identityAsString(expected))", @@ -15,30 +15,36 @@ public func beIdenticalTo(_ expected: AnyObject?) -> Predicate { } } -extension Expectation where T == AnyObject { - public static func === (lhs: Expectation, rhs: AnyObject?) { - lhs.to(beIdenticalTo(rhs)) - } +public func === (lhs: SyncExpectation, rhs: AnyObject?) { + lhs.to(beIdenticalTo(rhs)) +} - public static func !== (lhs: Expectation, rhs: AnyObject?) { - lhs.toNot(beIdenticalTo(rhs)) - } +public func === (lhs: AsyncExpectation, rhs: AnyObject?) async { + await lhs.to(beIdenticalTo(rhs)) +} + +public func !== (lhs: SyncExpectation, rhs: AnyObject?) { + lhs.toNot(beIdenticalTo(rhs)) +} + +public func !== (lhs: AsyncExpectation, rhs: AnyObject?) async { + await lhs.toNot(beIdenticalTo(rhs)) } /// A Nimble matcher that succeeds when the actual value is the same instance /// as the expected instance. /// /// Alias for "beIdenticalTo". -public func be(_ expected: AnyObject?) -> Predicate { +public func be(_ expected: T?) -> Matcher { return beIdenticalTo(expected) } #if canImport(Darwin) import class Foundation.NSObject -extension NMBPredicate { - @objc public class func beIdenticalToMatcher(_ expected: NSObject?) -> NMBPredicate { - return NMBPredicate { actualExpression in +extension NMBMatcher { + @objc public class func beIdenticalToMatcher(_ expected: NSObject?) -> NMBMatcher { + return NMBMatcher { actualExpression in let aExpr = actualExpression.cast { $0 as AnyObject? } return try beIdenticalTo(expected).satisfies(aExpr).toObjectiveC() } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThan.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThan.swift index 256f3a625..4be83c973 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThan.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThan.swift @@ -1,37 +1,45 @@ /// A Nimble matcher that succeeds when the actual value is less than the expected value. -public func beLessThan(_ expectedValue: T?) -> Predicate { +public func beLessThan(_ expectedValue: T?) -> Matcher { let message = "be less than <\(stringify(expectedValue))>" - return Predicate.simple(message) { actualExpression in + return Matcher.simple(message) { actualExpression in guard let actual = try actualExpression.evaluate(), let expected = expectedValue else { return .fail } - return PredicateStatus(bool: actual < expected) + return MatcherStatus(bool: actual < expected) } } -public func <(lhs: Expectation, rhs: T) { +public func < (lhs: SyncExpectation, rhs: V) { lhs.to(beLessThan(rhs)) } +public func < (lhs: AsyncExpectation, rhs: V) async { + await lhs.to(beLessThan(rhs)) +} + #if canImport(Darwin) import enum Foundation.ComparisonResult /// A Nimble matcher that succeeds when the actual value is less than the expected value. -public func beLessThan(_ expectedValue: NMBComparable?) -> Predicate { +public func beLessThan(_ expectedValue: T?) -> Matcher { let message = "be less than <\(stringify(expectedValue))>" - return Predicate.simple(message) { actualExpression in + return Matcher.simple(message) { actualExpression in let actualValue = try actualExpression.evaluate() let matches = actualValue != nil && actualValue!.NMB_compare(expectedValue) == ComparisonResult.orderedAscending - return PredicateStatus(bool: matches) + return MatcherStatus(bool: matches) } } -public func < (lhs: Expectation, rhs: NMBComparable?) { +public func < (lhs: SyncExpectation, rhs: V?) { lhs.to(beLessThan(rhs)) } -extension NMBPredicate { - @objc public class func beLessThanMatcher(_ expected: NMBComparable?) -> NMBPredicate { - return NMBPredicate { actualExpression in +public func < (lhs: AsyncExpectation, rhs: V?) async { + await lhs.to(beLessThan(rhs)) +} + +extension NMBMatcher { + @objc public class func beLessThanMatcher(_ expected: NMBComparable?) -> NMBMatcher { + return NMBMatcher { actualExpression in let expr = actualExpression.cast { $0 as? NMBComparable } return try beLessThan(expected).satisfies(expr).toObjectiveC() } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift index 6174be5af..830e9e62b 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift @@ -1,37 +1,45 @@ /// A Nimble matcher that succeeds when the actual value is less than /// or equal to the expected value. -public func beLessThanOrEqualTo(_ expectedValue: T?) -> Predicate { - return Predicate.simple("be less than or equal to <\(stringify(expectedValue))>") { actualExpression in +public func beLessThanOrEqualTo(_ expectedValue: T?) -> Matcher { + return Matcher.simple("be less than or equal to <\(stringify(expectedValue))>") { actualExpression in guard let actual = try actualExpression.evaluate(), let expected = expectedValue else { return .fail } - return PredicateStatus(bool: actual <= expected) + return MatcherStatus(bool: actual <= expected) } } -public func <=(lhs: Expectation, rhs: T) { +public func <= (lhs: SyncExpectation, rhs: T) { lhs.to(beLessThanOrEqualTo(rhs)) } +public func <= (lhs: AsyncExpectation, rhs: T) async { + await lhs.to(beLessThanOrEqualTo(rhs)) +} + #if canImport(Darwin) import enum Foundation.ComparisonResult /// A Nimble matcher that succeeds when the actual value is less than /// or equal to the expected value. -public func beLessThanOrEqualTo(_ expectedValue: T?) -> Predicate { - return Predicate.simple("be less than or equal to <\(stringify(expectedValue))>") { actualExpression in +public func beLessThanOrEqualTo(_ expectedValue: T?) -> Matcher { + return Matcher.simple("be less than or equal to <\(stringify(expectedValue))>") { actualExpression in let actualValue = try actualExpression.evaluate() let matches = actualValue.map { $0.NMB_compare(expectedValue) != .orderedDescending } ?? false - return PredicateStatus(bool: matches) + return MatcherStatus(bool: matches) } } -public func <=(lhs: Expectation, rhs: T) { +public func <= (lhs: SyncExpectation, rhs: T) { lhs.to(beLessThanOrEqualTo(rhs)) } -extension NMBPredicate { - @objc public class func beLessThanOrEqualToMatcher(_ expected: NMBComparable?) -> NMBPredicate { - return NMBPredicate { actualExpression in +public func <= (lhs: AsyncExpectation, rhs: T) async { + await lhs.to(beLessThanOrEqualTo(rhs)) +} + +extension NMBMatcher { + @objc public class func beLessThanOrEqualToMatcher(_ expected: NMBComparable?) -> NMBMatcher { + return NMBMatcher { actualExpression in let expr = actualExpression.cast { $0 as? NMBComparable } return try beLessThanOrEqualTo(expected).satisfies(expr).toObjectiveC() } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLogical.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLogical.swift index a4094d5fe..ea04915e1 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLogical.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeLogical.swift @@ -1,42 +1,42 @@ import Foundation -extension Int8: ExpressibleByBooleanLiteral { +extension Int8: Swift.ExpressibleByBooleanLiteral { public init(booleanLiteral value: Bool) { self = NSNumber(value: value).int8Value } } -extension UInt8: ExpressibleByBooleanLiteral { +extension UInt8: Swift.ExpressibleByBooleanLiteral { public init(booleanLiteral value: Bool) { self = NSNumber(value: value).uint8Value } } -extension Int16: ExpressibleByBooleanLiteral { +extension Int16: Swift.ExpressibleByBooleanLiteral { public init(booleanLiteral value: Bool) { self = NSNumber(value: value).int16Value } } -extension UInt16: ExpressibleByBooleanLiteral { +extension UInt16: Swift.ExpressibleByBooleanLiteral { public init(booleanLiteral value: Bool) { self = NSNumber(value: value).uint16Value } } -extension Int32: ExpressibleByBooleanLiteral { +extension Int32: Swift.ExpressibleByBooleanLiteral { public init(booleanLiteral value: Bool) { self = NSNumber(value: value).int32Value } } -extension UInt32: ExpressibleByBooleanLiteral { +extension UInt32: Swift.ExpressibleByBooleanLiteral { public init(booleanLiteral value: Bool) { self = NSNumber(value: value).uint32Value } } -extension Int64: ExpressibleByBooleanLiteral { +extension Int64: Swift.ExpressibleByBooleanLiteral { public init(booleanLiteral value: Bool) { self = NSNumber(value: value).int64Value } @@ -72,10 +72,10 @@ extension UInt: ExpressibleByBooleanLiteral { } } -internal func rename(_ matcher: Predicate, failureMessage message: ExpectationMessage) -> Predicate { - return Predicate { actualExpression in +internal func rename(_ matcher: Matcher, failureMessage message: ExpectationMessage) -> Matcher { + return Matcher { actualExpression in let result = try matcher.satisfies(actualExpression) - return PredicateResult(status: result.status, message: message) + return MatcherResult(status: result.status, message: message) }.requireNonNil } @@ -83,60 +83,60 @@ internal func rename(_ matcher: Predicate, failureMessage message: Expecta /// A Nimble matcher that succeeds when the actual value is exactly true. /// This matcher will not match against nils. -public func beTrue() -> Predicate { +public func beTrue() -> Matcher { return rename(equal(true), failureMessage: .expectedActualValueTo("be true")) } /// A Nimble matcher that succeeds when the actual value is exactly false. /// This matcher will not match against nils. -public func beFalse() -> Predicate { +public func beFalse() -> Matcher { return rename(equal(false), failureMessage: .expectedActualValueTo("be false")) } // MARK: beTruthy() / beFalsy() /// A Nimble matcher that succeeds when the actual value is not logically false. -public func beTruthy() -> Predicate { - return Predicate.simpleNilable("be truthy") { actualExpression in +public func beTruthy() -> Matcher { + return Matcher.simpleNilable("be truthy") { actualExpression in let actualValue = try actualExpression.evaluate() - return PredicateStatus(bool: actualValue == (true as T)) + return MatcherStatus(bool: actualValue == (true as T)) } } /// A Nimble matcher that succeeds when the actual value is logically false. /// This matcher will match against nils. -public func beFalsy() -> Predicate { - return Predicate.simpleNilable("be falsy") { actualExpression in +public func beFalsy() -> Matcher { + return Matcher.simpleNilable("be falsy") { actualExpression in let actualValue = try actualExpression.evaluate() - return PredicateStatus(bool: actualValue != (true as T)) + return MatcherStatus(bool: actualValue != (true as T)) } } #if canImport(Darwin) -extension NMBPredicate { - @objc public class func beTruthyMatcher() -> NMBPredicate { - return NMBPredicate { actualExpression in +extension NMBMatcher { + @objc public class func beTruthyMatcher() -> NMBMatcher { + return NMBMatcher { actualExpression in let expr = actualExpression.cast { ($0 as? NSNumber)?.boolValue ?? false } return try beTruthy().satisfies(expr).toObjectiveC() } } - @objc public class func beFalsyMatcher() -> NMBPredicate { - return NMBPredicate { actualExpression in + @objc public class func beFalsyMatcher() -> NMBMatcher { + return NMBMatcher { actualExpression in let expr = actualExpression.cast { ($0 as? NSNumber)?.boolValue ?? false } return try beFalsy().satisfies(expr).toObjectiveC() } } - @objc public class func beTrueMatcher() -> NMBPredicate { - return NMBPredicate { actualExpression in + @objc public class func beTrueMatcher() -> NMBMatcher { + return NMBMatcher { actualExpression in let expr = actualExpression.cast { ($0 as? NSNumber)?.boolValue ?? false } return try beTrue().satisfies(expr).toObjectiveC() } } - @objc public class func beFalseMatcher() -> NMBPredicate { - return NMBPredicate { actualExpression in + @objc public class func beFalseMatcher() -> NMBMatcher { + return NMBMatcher { actualExpression in let expr = actualExpression.cast { value -> Bool? in guard let value = value else { return nil } return (value as? NSNumber)?.boolValue ?? false diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeNil.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeNil.swift index c87099d02..eea1440e7 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeNil.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeNil.swift @@ -8,37 +8,47 @@ extension Optional: _OptionalProtocol { } /// A Nimble matcher that succeeds when the actual value is nil. -public func beNil() -> Predicate { - return Predicate.simpleNilable("be nil") { actualExpression in +public func beNil() -> Matcher { + return Matcher.simpleNilable("be nil") { actualExpression in let actualValue = try actualExpression.evaluate() if let actual = actualValue, let nestedOptionl = actual as? _OptionalProtocol { - return PredicateStatus(bool: nestedOptionl.isNil) + return MatcherStatus(bool: nestedOptionl.isNil) } - return PredicateStatus(bool: actualValue == nil) + return MatcherStatus(bool: actualValue == nil) } } -extension Expectation { - /// Represents `nil` value to be used with the operator overloads for `beNil`. - public struct Nil: ExpressibleByNilLiteral { - public init(nilLiteral: ()) {} - } +/// Represents `nil` value to be used with the operator overloads for `beNil`. +public struct ExpectationNil: ExpressibleByNilLiteral { + public init(nilLiteral: ()) {} +} - public static func == (lhs: Expectation, rhs: Expectation.Nil) { +extension SyncExpectation { + public static func == (lhs: SyncExpectation, rhs: ExpectationNil) { lhs.to(beNil()) } - public static func != (lhs: Expectation, rhs: Expectation.Nil) { + public static func != (lhs: SyncExpectation, rhs: ExpectationNil) { lhs.toNot(beNil()) } } +extension AsyncExpectation { + public static func == (lhs: AsyncExpectation, rhs: ExpectationNil) async { + await lhs.to(beNil()) + } + + public static func != (lhs: AsyncExpectation, rhs: ExpectationNil) async { + await lhs.toNot(beNil()) + } +} + #if canImport(Darwin) import Foundation -extension NMBPredicate { - @objc public class func beNilMatcher() -> NMBPredicate { - return NMBPredicate { actualExpression in +extension NMBMatcher { + @objc public class func beNilMatcher() -> NMBMatcher { + return NMBMatcher { actualExpression in return try beNil().satisfies(actualExpression).toObjectiveC() } } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeResult.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeResult.swift index b05db7f97..6c4457661 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeResult.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeResult.swift @@ -6,8 +6,8 @@ import Foundation /// The closure only gets called when the result is success. public func beSuccess( test: ((Success) -> Void)? = nil -) -> Predicate> { - return Predicate.define { expression in +) -> Matcher> { + return Matcher.define { expression in var rawMessage = "be " if test != nil { rawMessage += " that satisfies block" @@ -15,7 +15,7 @@ public func beSuccess( let message = ExpectationMessage.expectedActualValueTo(rawMessage) guard case let .success(value)? = try expression.evaluate() else { - return PredicateResult(status: .doesNotMatch, message: message) + return MatcherResult(status: .doesNotMatch, message: message) } var matches = true @@ -29,7 +29,61 @@ public func beSuccess( } } - return PredicateResult(bool: matches, message: message) + return MatcherResult(bool: matches, message: message) + } +} + +/// A Nimble matcher for Result that succeeds when the actual value is success +/// and the value inside result is equal to the expected value +public func beSuccess( + _ value: Success +) -> Matcher> where Success: Equatable { + return Matcher.define { expression in + let message = ExpectationMessage.expectedActualValueTo( + "be that equals \(stringify(value))" + ) + + guard case let .success(resultValue)? = try expression.evaluate() else { + return MatcherResult(status: .doesNotMatch, message: message) + } + + return MatcherResult( + bool: resultValue == value, + message: message + ) + } +} + +/// A Nimble matcher for Result that succeeds when the actual value is success +/// and the provided matcher matches. +public func beSuccess( + _ matcher: Matcher +) -> Matcher> { + return Matcher.define { expression in + let message = ExpectationMessage.expectedActualValueTo( + "be that satisfies matcher" + ) + + guard case let .success(value)? = try expression.evaluate() else { + return MatcherResult(status: .doesNotMatch, message: message) + } + + let subExpression = Expression( + expression: { value }, + location: expression.location + ) + let subResult = try matcher.satisfies(subExpression) + + let matches = subResult.toBoolean(expectation: .toMatch) + + return MatcherResult( + bool: matches, + message: message.appended( + details: subResult.message.toString( + actual: stringify(value) + ) + ) + ) } } @@ -39,8 +93,8 @@ public func beSuccess( /// The closure only gets called when the result is failure. public func beFailure( test: ((Failure) -> Void)? = nil -) -> Predicate> { - return Predicate.define { expression in +) -> Matcher> { + return Matcher.define { expression in var rawMessage = "be " if test != nil { rawMessage += " that satisfies block" @@ -48,7 +102,7 @@ public func beFailure( let message = ExpectationMessage.expectedActualValueTo(rawMessage) guard case let .failure(error)? = try expression.evaluate() else { - return PredicateResult(status: .doesNotMatch, message: message) + return MatcherResult(status: .doesNotMatch, message: message) } var matches = true @@ -62,6 +116,39 @@ public func beFailure( } } - return PredicateResult(bool: matches, message: message) + return MatcherResult(bool: matches, message: message) + } +} + +/// A Nimble matcher for Result that succeeds when the actual value is failure +/// and the provided matcher matches. +public func beFailure( + _ matcher: Matcher +) -> Matcher> { + return Matcher.define { expression in + let message = ExpectationMessage.expectedActualValueTo( + "be that satisfies matcher" + ) + + guard case let .failure(error)? = try expression.evaluate() else { + return MatcherResult(status: .doesNotMatch, message: message) + } + + let subExpression = Expression( + expression: { error }, + location: expression.location + ) + let subResult = try matcher.satisfies(subExpression) + + let matches = subResult.toBoolean(expectation: .toMatch) + + return MatcherResult( + bool: matches, + message: message.appended( + details: subResult.message.toString( + actual: stringify(error) + ) + ) + ) } } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeVoid.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeVoid.swift index c4bbaf6bc..19bf4e915 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeVoid.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeVoid.swift @@ -1,17 +1,23 @@ /// A Nimble matcher that succeeds when the actual value is Void. -public func beVoid() -> Predicate<()> { - return Predicate.simpleNilable("be void") { actualExpression in +public func beVoid() -> Matcher<()> { + return Matcher.simpleNilable("be void") { actualExpression in let actualValue: ()? = try actualExpression.evaluate() - return PredicateStatus(bool: actualValue != nil) + return MatcherStatus(bool: actualValue != nil) } } -extension Expectation where T == () { - public static func == (lhs: Expectation<()>, rhs: ()) { - lhs.to(beVoid()) - } +public func == (lhs: SyncExpectation<()>, rhs: ()) { + lhs.to(beVoid()) +} - public static func != (lhs: Expectation<()>, rhs: ()) { - lhs.toNot(beVoid()) - } +public func == (lhs: AsyncExpectation<()>, rhs: ()) async { + await lhs.to(beVoid()) +} + +public func != (lhs: SyncExpectation<()>, rhs: ()) { + lhs.toNot(beVoid()) +} + +public func != (lhs: AsyncExpectation<()>, rhs: ()) async { + await lhs.toNot(beVoid()) } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeWithin.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeWithin.swift index 9c56e9ee6..a4e2d7c7e 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeWithin.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeWithin.swift @@ -1,20 +1,20 @@ /// A Nimble matcher that succeeds when the actual value is within given range. -public func beWithin(_ range: Range) -> Predicate { +public func beWithin(_ range: Range) -> Matcher { let errorMessage = "be within range <(\(range.lowerBound)..<\(range.upperBound))>" - return Predicate.simple(errorMessage) { actualExpression in + return Matcher.simple(errorMessage) { actualExpression in if let actual = try actualExpression.evaluate() { - return PredicateStatus(bool: range.contains(actual)) + return MatcherStatus(bool: range.contains(actual)) } return .fail } } /// A Nimble matcher that succeeds when the actual value is within given range. -public func beWithin(_ range: ClosedRange) -> Predicate { +public func beWithin(_ range: ClosedRange) -> Matcher { let errorMessage = "be within range <(\(range.lowerBound)...\(range.upperBound))>" - return Predicate.simple(errorMessage) { actualExpression in + return Matcher.simple(errorMessage) { actualExpression in if let actual = try actualExpression.evaluate() { - return PredicateStatus(bool: range.contains(actual)) + return MatcherStatus(bool: range.contains(actual)) } return .fail } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWith.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWith.swift index 90b6b5d1b..05e1b8231 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWith.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWith.swift @@ -2,46 +2,46 @@ import Foundation /// A Nimble matcher that succeeds when the actual sequence's first element /// is equal to the expected value. -public func beginWith(_ startingElement: S.Element) -> Predicate where S.Element: Equatable { - return Predicate.simple("begin with <\(startingElement)>") { actualExpression in +public func beginWith(_ startingElement: S.Element) -> Matcher where S.Element: Equatable { + return Matcher.simple("begin with <\(startingElement)>") { actualExpression in guard let actualValue = try actualExpression.evaluate() else { return .fail } var actualGenerator = actualValue.makeIterator() - return PredicateStatus(bool: actualGenerator.next() == startingElement) + return MatcherStatus(bool: actualGenerator.next() == startingElement) } } /// A Nimble matcher that succeeds when the actual collection's first element /// is equal to the expected object. -public func beginWith(_ startingElement: Any) -> Predicate { - return Predicate.simple("begin with <\(startingElement)>") { actualExpression in +public func beginWith(_ startingElement: Any) -> Matcher { + return Matcher.simple("begin with <\(startingElement)>") { actualExpression in guard let collection = try actualExpression.evaluate() else { return .fail } guard collection.count > 0 else { return .doesNotMatch } - #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS) + #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS) || os(visionOS) let collectionValue = collection.object(at: 0) as AnyObject #else guard let collectionValue = collection.object(at: 0) as? NSObject else { return .fail } #endif - return PredicateStatus(bool: collectionValue.isEqual(startingElement)) + return MatcherStatus(bool: collectionValue.isEqual(startingElement)) } } /// A Nimble matcher that succeeds when the actual string contains expected substring /// where the expected substring's location is zero. -public func beginWith(_ startingSubstring: String) -> Predicate { - return Predicate.simple("begin with <\(startingSubstring)>") { actualExpression in +public func beginWith(_ startingSubstring: String) -> Matcher { + return Matcher.simple("begin with <\(startingSubstring)>") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.hasPrefix(startingSubstring)) + return MatcherStatus(bool: actual.hasPrefix(startingSubstring)) } } #if canImport(Darwin) -extension NMBPredicate { - @objc public class func beginWithMatcher(_ expected: Any) -> NMBPredicate { - return NMBPredicate { actualExpression in +extension NMBMatcher { + @objc public class func beginWithMatcher(_ expected: Any) -> NMBMatcher { + return NMBMatcher { actualExpression in let actual = try actualExpression.evaluate() if actual is String { let expr = actualExpression.cast { $0 as? String } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWithPrefix.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWithPrefix.swift index c3a79b18d..8ff068d82 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWithPrefix.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/BeginWithPrefix.swift @@ -2,38 +2,38 @@ /// /// This is a matcher abstraction for https://developer.apple.com/documentation/swift/sequence/2854218-starts public func beginWith(prefix expectedPrefix: Seq2?) - -> Predicate where Seq1.Element: Equatable, Seq1.Element == Seq2.Element { - return Predicate.define("begin with <\(stringify(expectedPrefix))>") { (actualExpression, msg) in + -> Matcher where Seq1.Element: Equatable, Seq1.Element == Seq2.Element { + return Matcher.define("begin with <\(stringify(expectedPrefix))>") { (actualExpression, msg) in let actualPrefix = try actualExpression.evaluate() switch (expectedPrefix, actualPrefix) { case (nil, _?): - return PredicateResult(status: .fail, message: msg.appendedBeNilHint()) + return MatcherResult(status: .fail, message: msg.appendedBeNilHint()) case (nil, nil), (_, nil): - return PredicateResult(status: .fail, message: msg) + return MatcherResult(status: .fail, message: msg) case (let expected?, let actual?): let matches = actual.starts(with: expected) - return PredicateResult(bool: matches, message: msg) + return MatcherResult(bool: matches, message: msg) } } } -/// A Nimble matcher that succeeds when the expected sequence is the prefix of the actual sequence, using the given predicate as the equivalence test. +/// A Nimble matcher that succeeds when the expected sequence is the prefix of the actual sequence, using the given matcher as the equivalence test. /// /// This is a matcher abstraction for https://developer.apple.com/documentation/swift/sequence/2996828-starts public func beginWith( prefix expectedPrefix: Seq2?, by areEquivalent: @escaping (Seq1.Element, Seq2.Element) -> Bool -) -> Predicate { - return Predicate.define("begin with <\(stringify(expectedPrefix))>") { (actualExpression, msg) in +) -> Matcher { + return Matcher.define("begin with <\(stringify(expectedPrefix))>") { (actualExpression, msg) in let actualPrefix = try actualExpression.evaluate() switch (expectedPrefix, actualPrefix) { case (nil, _?): - return PredicateResult(status: .fail, message: msg.appendedBeNilHint()) + return MatcherResult(status: .fail, message: msg.appendedBeNilHint()) case (nil, nil), (_, nil): - return PredicateResult(status: .fail, message: msg) + return MatcherResult(status: .fail, message: msg) case (let expected?, let actual?): let matches = actual.starts(with: expected, by: areEquivalent) - return PredicateResult(bool: matches, message: msg) + return MatcherResult(bool: matches, message: msg) } } } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/Contain.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/Contain.swift index 38d1dab50..555d4d1ff 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/Contain.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/Contain.swift @@ -3,109 +3,109 @@ import Foundation #endif /// A Nimble matcher that succeeds when the actual sequence contains the expected values. -public func contain(_ items: S.Element...) -> Predicate where S.Element: Equatable { +public func contain(_ items: S.Element...) -> Matcher where S.Element: Equatable { return contain(items) } /// A Nimble matcher that succeeds when the actual sequence contains the expected values. -public func contain(_ items: [S.Element]) -> Predicate where S.Element: Equatable { - return Predicate.simple("contain <\(arrayAsString(items))>") { actualExpression in +public func contain(_ items: [S.Element]) -> Matcher where S.Element: Equatable { + return Matcher.simple("contain <\(arrayAsString(items))>") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } let matches = items.allSatisfy { return actual.contains($0) } - return PredicateStatus(bool: matches) + return MatcherStatus(bool: matches) } } /// A Nimble matcher that succeeds when the actual set contains the expected values. -public func contain(_ items: S.Element...) -> Predicate where S.Element: Equatable { +public func contain(_ items: S.Element...) -> Matcher where S.Element: Equatable { return contain(items) } /// A Nimble matcher that succeeds when the actual set contains the expected values. -public func contain(_ items: [S.Element]) -> Predicate where S.Element: Equatable { - return Predicate.simple("contain <\(arrayAsString(items))>") { actualExpression in +public func contain(_ items: [S.Element]) -> Matcher where S.Element: Equatable { + return Matcher.simple("contain <\(arrayAsString(items))>") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } let matches = items.allSatisfy { return actual.contains($0) } - return PredicateStatus(bool: matches) + return MatcherStatus(bool: matches) } } /// A Nimble matcher that succeeds when the actual set contains the expected values. -public func contain(_ items: S.Element...) -> Predicate where S.Element: Equatable { +public func contain(_ items: S.Element...) -> Matcher where S.Element: Equatable { return contain(items) } /// A Nimble matcher that succeeds when the actual set contains the expected values. -public func contain(_ items: [S.Element]) -> Predicate where S.Element: Equatable { - return Predicate.simple("contain <\(arrayAsString(items))>") { actualExpression in +public func contain(_ items: [S.Element]) -> Matcher where S.Element: Equatable { + return Matcher.simple("contain <\(arrayAsString(items))>") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } let matches = items.allSatisfy { return actual.contains($0) } - return PredicateStatus(bool: matches) + return MatcherStatus(bool: matches) } } /// A Nimble matcher that succeeds when the actual string contains the expected substring. -public func contain(_ substrings: String...) -> Predicate { +public func contain(_ substrings: String...) -> Matcher { return contain(substrings) } -public func contain(_ substrings: [String]) -> Predicate { - return Predicate.simple("contain <\(arrayAsString(substrings))>") { actualExpression in +public func contain(_ substrings: [String]) -> Matcher { + return Matcher.simple("contain <\(arrayAsString(substrings))>") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } let matches = substrings.allSatisfy { let range = actual.range(of: $0) return range != nil && !range!.isEmpty } - return PredicateStatus(bool: matches) + return MatcherStatus(bool: matches) } } #if canImport(Foundation) /// A Nimble matcher that succeeds when the actual string contains the expected substring. -public func contain(_ substrings: NSString...) -> Predicate { +public func contain(_ substrings: NSString...) -> Matcher { return contain(substrings) } -public func contain(_ substrings: [NSString]) -> Predicate { - return Predicate.simple("contain <\(arrayAsString(substrings))>") { actualExpression in +public func contain(_ substrings: [NSString]) -> Matcher { + return Matcher.simple("contain <\(arrayAsString(substrings))>") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } let matches = substrings.allSatisfy { actual.range(of: $0.description).length != 0 } - return PredicateStatus(bool: matches) + return MatcherStatus(bool: matches) } } #endif /// A Nimble matcher that succeeds when the actual collection contains the expected object. -public func contain(_ items: Any?...) -> Predicate { +public func contain(_ items: Any?...) -> Matcher { return contain(items) } -public func contain(_ items: [Any?]) -> Predicate { - return Predicate.simple("contain <\(arrayAsString(items))>") { actualExpression in +public func contain(_ items: [Any?]) -> Matcher { + return Matcher.simple("contain <\(arrayAsString(items))>") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } let matches = items.allSatisfy { item in return item.map { actual.contains($0) } ?? false } - return PredicateStatus(bool: matches) + return MatcherStatus(bool: matches) } } #if canImport(Darwin) -extension NMBPredicate { - @objc public class func containMatcher(_ expected: [NSObject]) -> NMBPredicate { - return NMBPredicate { actualExpression in +extension NMBMatcher { + @objc public class func containMatcher(_ expected: [NSObject]) -> NMBMatcher { + return NMBMatcher { actualExpression in let location = actualExpression.location let actualValue = try actualExpression.evaluate() if let value = actualValue as? NMBContainer { @@ -130,7 +130,7 @@ extension NMBPredicate { .expectedActualValueTo("contain <\(arrayAsString(expected))>") .appendedBeNilHint() } - return NMBPredicateResult(status: .fail, message: message.toObjectiveC()) + return NMBMatcherResult(status: .fail, message: message.toObjectiveC()) } } } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/ContainElementSatisfying.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/ContainElementSatisfying.swift index 2e7875b2f..68cc75304 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/ContainElementSatisfying.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/ContainElementSatisfying.swift @@ -1,25 +1,46 @@ public func containElementSatisfying( - _ predicate: @escaping ((S.Element) -> Bool), _ predicateDescription: String = "" -) -> Predicate { - return Predicate.define { actualExpression in + _ matcher: @escaping ((S.Element) -> Bool), _ matcherDescription: String = "" +) -> Matcher { + return Matcher.define { actualExpression in let message: ExpectationMessage - if predicateDescription == "" { - message = .expectedTo("find object in collection that satisfies predicate") + if matcherDescription == "" { + message = .expectedTo("find object in collection that satisfies matcher") } else { - message = .expectedTo("find object in collection \(predicateDescription)") + message = .expectedTo("find object in collection \(matcherDescription)") } if let sequence = try actualExpression.evaluate() { - for object in sequence { - if predicate(object) { - return PredicateResult(bool: true, message: message) - } + for object in sequence where matcher(object) { + return MatcherResult(bool: true, message: message) + } + + return MatcherResult(bool: false, message: message) + } + + return MatcherResult(status: .fail, message: message) + } +} + +public func containElementSatisfying( + _ matcher: @escaping ((S.Element) async -> Bool), _ matcherDescription: String = "" +) -> AsyncMatcher { + return AsyncMatcher.define { actualExpression in + let message: ExpectationMessage + if matcherDescription == "" { + message = .expectedTo("find object in collection that satisfies matcher") + } else { + message = .expectedTo("find object in collection \(matcherDescription)") + } + + if let sequence = try await actualExpression.evaluate() { + for object in sequence where await matcher(object) { + return MatcherResult(bool: true, message: message) } - return PredicateResult(bool: false, message: message) + return MatcherResult(bool: false, message: message) } - return PredicateResult(status: .fail, message: message) + return MatcherResult(status: .fail, message: message) } } @@ -28,19 +49,19 @@ import class Foundation.NSObject import struct Foundation.NSFastEnumerationIterator import protocol Foundation.NSFastEnumeration -extension NMBPredicate { - @objc public class func containElementSatisfyingMatcher(_ predicate: @escaping ((NSObject) -> Bool)) -> NMBPredicate { - return NMBPredicate { actualExpression in +extension NMBMatcher { + @objc public class func containElementSatisfyingMatcher(_ matcher: @escaping ((NSObject) -> Bool)) -> NMBMatcher { + return NMBMatcher { actualExpression in let value = try actualExpression.evaluate() guard let enumeration = value as? NSFastEnumeration else { let message = ExpectationMessage.fail( "containElementSatisfying must be provided an NSFastEnumeration object" ) - return NMBPredicateResult(status: .fail, message: message.toObjectiveC()) + return NMBMatcherResult(status: .fail, message: message.toObjectiveC()) } let message = ExpectationMessage - .expectedTo("find object in collection that satisfies predicate") + .expectedTo("find object in collection that satisfies matcher") .toObjectiveC() var iterator = NSFastEnumerationIterator(enumeration) @@ -49,12 +70,12 @@ extension NMBPredicate { continue } - if predicate(object) { - return NMBPredicateResult(status: .matches, message: message) + if matcher(object) { + return NMBMatcherResult(status: .matches, message: message) } } - return NMBPredicateResult(status: .doesNotMatch, message: message) + return NMBMatcherResult(status: .doesNotMatch, message: message) } } } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/ElementsEqual.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/ElementsEqual.swift index 708cf1c9c..39b2dbf21 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/ElementsEqual.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/ElementsEqual.swift @@ -4,39 +4,39 @@ /// This is a matcher abstraction for https://developer.apple.com/documentation/swift/sequence/2854213-elementsequal public func elementsEqual( _ expectedValue: Seq2? -) -> Predicate where Seq1.Element: Equatable, Seq1.Element == Seq2.Element { - return Predicate.define("elementsEqual <\(stringify(expectedValue))>") { (actualExpression, msg) in +) -> Matcher where Seq1.Element: Equatable, Seq1.Element == Seq2.Element { + return Matcher.define("elementsEqual <\(stringify(expectedValue))>") { (actualExpression, msg) in let actualValue = try actualExpression.evaluate() switch (expectedValue, actualValue) { case (nil, _?): - return PredicateResult(status: .fail, message: msg.appendedBeNilHint()) + return MatcherResult(status: .fail, message: msg.appendedBeNilHint()) case (nil, nil), (_, nil): - return PredicateResult(status: .fail, message: msg) + return MatcherResult(status: .fail, message: msg) case (let expected?, let actual?): let matches = expected.elementsEqual(actual) - return PredicateResult(bool: matches, message: msg) + return MatcherResult(bool: matches, message: msg) } } } /// A Nimble matcher that succeeds when the actual sequence and the exepected sequence contain equivalent elements in -/// the same order, using the given predicate as the equivalence test. +/// the same order, using the given matcher as the equivalence test. /// /// This is a matcher abstraction for https://developer.apple.com/documentation/swift/sequence/2949668-elementsequal public func elementsEqual( _ expectedValue: Seq2?, by areEquivalent: @escaping (Seq1.Element, Seq2.Element) -> Bool -) -> Predicate { - return Predicate.define("elementsEqual <\(stringify(expectedValue))>") { (actualExpression, msg) in +) -> Matcher { + return Matcher.define("elementsEqual <\(stringify(expectedValue))>") { (actualExpression, msg) in let actualValue = try actualExpression.evaluate() switch (expectedValue, actualValue) { case (nil, _?): - return PredicateResult(status: .fail, message: msg.appendedBeNilHint()) + return MatcherResult(status: .fail, message: msg.appendedBeNilHint()) case (nil, nil), (_, nil): - return PredicateResult(status: .fail, message: msg) + return MatcherResult(status: .fail, message: msg) case (let expected?, let actual?): let matches = actual.elementsEqual(expected, by: areEquivalent) - return PredicateResult(bool: matches, message: msg) + return MatcherResult(bool: matches, message: msg) } } } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/EndWith.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/EndWith.swift index 950d9d5f7..0b61da991 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/EndWith.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/EndWith.swift @@ -2,8 +2,8 @@ import Foundation /// A Nimble matcher that succeeds when the actual sequence's last element /// is equal to the expected value. -public func endWith(_ endingElement: S.Element) -> Predicate where S.Element: Equatable { - return Predicate.simple("end with <\(endingElement)>") { actualExpression in +public func endWith(_ endingElement: S.Element) -> Matcher where S.Element: Equatable { + return Matcher.simple("end with <\(endingElement)>") { actualExpression in guard let actualValue = try actualExpression.evaluate() else { return .fail } var actualGenerator = actualValue.makeIterator() @@ -14,18 +14,18 @@ public func endWith(_ endingElement: S.Element) -> Predicate whe item = actualGenerator.next() } while(item != nil) - return PredicateStatus(bool: lastItem == endingElement) + return MatcherStatus(bool: lastItem == endingElement) } } /// A Nimble matcher that succeeds when the actual collection's last element /// is equal to the expected object. -public func endWith(_ endingElement: Any) -> Predicate { - return Predicate.simple("end with <\(endingElement)>") { actualExpression in +public func endWith(_ endingElement: Any) -> Matcher { + return Matcher.simple("end with <\(endingElement)>") { actualExpression in guard let collection = try actualExpression.evaluate() else { return .fail } - guard collection.count > 0 else { return PredicateStatus(bool: false) } - #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS) + guard collection.count > 0 else { return MatcherStatus(bool: false) } + #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS) || os(visionOS) let collectionValue = collection.object(at: collection.count - 1) as AnyObject #else guard let collectionValue = collection.object(at: collection.count - 1) as? NSObject else { @@ -33,25 +33,25 @@ public func endWith(_ endingElement: Any) -> Predicate { } #endif - return PredicateStatus(bool: collectionValue.isEqual(endingElement)) + return MatcherStatus(bool: collectionValue.isEqual(endingElement)) } } /// A Nimble matcher that succeeds when the actual string contains the expected substring /// where the expected substring's location is the actual string's length minus the /// expected substring's length. -public func endWith(_ endingSubstring: String) -> Predicate { - return Predicate.simple("end with <\(endingSubstring)>") { actualExpression in +public func endWith(_ endingSubstring: String) -> Matcher { + return Matcher.simple("end with <\(endingSubstring)>") { actualExpression in guard let collection = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: collection.hasSuffix(endingSubstring)) + return MatcherStatus(bool: collection.hasSuffix(endingSubstring)) } } #if canImport(Darwin) -extension NMBPredicate { - @objc public class func endWithMatcher(_ expected: Any) -> NMBPredicate { - return NMBPredicate { actualExpression in +extension NMBMatcher { + @objc public class func endWithMatcher(_ expected: Any) -> NMBMatcher { + return NMBMatcher { actualExpression in let actual = try actualExpression.evaluate() if actual is String { let expr = actualExpression.cast { $0 as? String } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/Equal+Tuple.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/Equal+Tuple.swift index 0d05ba9a7..17b2f2e5f 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/Equal+Tuple.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/Equal+Tuple.swift @@ -6,24 +6,37 @@ /// Values can support equal by supporting the Equatable protocol. public func equal( _ expectedValue: (T1, T2)? -) -> Predicate<(T1, T2)> { +) -> Matcher<(T1, T2)> { equal(expectedValue, by: ==) } -public func ==( - lhs: Expectation<(T1, T2)>, +public func == ( + lhs: SyncExpectation<(T1, T2)>, rhs: (T1, T2)? ) { lhs.to(equal(rhs)) } -public func !=( - lhs: Expectation<(T1, T2)>, +public func == ( + lhs: AsyncExpectation<(T1, T2)>, + rhs: (T1, T2)? +) async { + await lhs.to(equal(rhs)) +} + +public func != ( + lhs: SyncExpectation<(T1, T2)>, rhs: (T1, T2)? ) { lhs.toNot(equal(rhs)) } +public func != ( + lhs: AsyncExpectation<(T1, T2)>, + rhs: (T1, T2)? +) async { + await lhs.toNot(equal(rhs)) +} // MARK: Tuple3 @@ -31,24 +44,39 @@ public func !=( /// Values can support equal by supporting the Equatable protocol. public func equal( _ expectedValue: (T1, T2, T3)? -) -> Predicate<(T1, T2, T3)> { +) -> Matcher<(T1, T2, T3)> { equal(expectedValue, by: ==) } -public func ==( - lhs: Expectation<(T1, T2, T3)>, +public func == ( + lhs: SyncExpectation<(T1, T2, T3)>, rhs: (T1, T2, T3)? ) { lhs.to(equal(rhs)) } -public func !=( - lhs: Expectation<(T1, T2, T3)>, +public func == ( + lhs: AsyncExpectation<(T1, T2, T3)>, + rhs: (T1, T2, T3)? +) async { + await lhs.to(equal(rhs)) +} + + +public func != ( + lhs: SyncExpectation<(T1, T2, T3)>, rhs: (T1, T2, T3)? ) { lhs.toNot(equal(rhs)) } +public func != ( + lhs: AsyncExpectation<(T1, T2, T3)>, + rhs: (T1, T2, T3)? +) async { + await lhs.toNot(equal(rhs)) +} + // MARK: Tuple4 @@ -56,24 +84,38 @@ public func !=( /// Values can support equal by supporting the Equatable protocol. public func equal( _ expectedValue: (T1, T2, T3, T4)? -) -> Predicate<(T1, T2, T3, T4)> { +) -> Matcher<(T1, T2, T3, T4)> { equal(expectedValue, by: ==) } -public func ==( - lhs: Expectation<(T1, T2, T3, T4)>, +public func == ( + lhs: SyncExpectation<(T1, T2, T3, T4)>, rhs: (T1, T2, T3, T4)? ) { lhs.to(equal(rhs)) } -public func !=( - lhs: Expectation<(T1, T2, T3, T4)>, +public func == ( + lhs: AsyncExpectation<(T1, T2, T3, T4)>, + rhs: (T1, T2, T3, T4)? +) async { + await lhs.to(equal(rhs)) +} + +public func != ( + lhs: SyncExpectation<(T1, T2, T3, T4)>, rhs: (T1, T2, T3, T4)? ) { lhs.toNot(equal(rhs)) } +public func != ( + lhs: AsyncExpectation<(T1, T2, T3, T4)>, + rhs: (T1, T2, T3, T4)? +) async { + await lhs.toNot(equal(rhs)) +} + // MARK: Tuple5 @@ -81,24 +123,39 @@ public func !=( /// Values can support equal by supporting the Equatable protocol. public func equal( _ expectedValue: (T1, T2, T3, T4, T5)? -) -> Predicate<(T1, T2, T3, T4, T5)> { +) -> Matcher<(T1, T2, T3, T4, T5)> { equal(expectedValue, by: ==) } -public func ==( - lhs: Expectation<(T1, T2, T3, T4, T5)>, +public func == ( + lhs: SyncExpectation<(T1, T2, T3, T4, T5)>, rhs: (T1, T2, T3, T4, T5)? ) { lhs.to(equal(rhs)) } -public func !=( - lhs: Expectation<(T1, T2, T3, T4, T5)>, +public func == ( + lhs: AsyncExpectation<(T1, T2, T3, T4, T5)>, + rhs: (T1, T2, T3, T4, T5)? +) async { + await lhs.to(equal(rhs)) +} + + +public func != ( + lhs: SyncExpectation<(T1, T2, T3, T4, T5)>, rhs: (T1, T2, T3, T4, T5)? ) { lhs.toNot(equal(rhs)) } +public func != ( + lhs: AsyncExpectation<(T1, T2, T3, T4, T5)>, + rhs: (T1, T2, T3, T4, T5)? +) async { + await lhs.toNot(equal(rhs)) +} + // MARK: Tuple6 @@ -106,22 +163,36 @@ public func !=( _ expectedValue: (T1, T2, T3, T4, T5, T6)? -) -> Predicate<(T1, T2, T3, T4, T5, T6)> { +) -> Matcher<(T1, T2, T3, T4, T5, T6)> { equal(expectedValue, by: ==) } -public func ==( - lhs: Expectation<(T1, T2, T3, T4, T5, T6)>, +public func == ( + lhs: SyncExpectation<(T1, T2, T3, T4, T5, T6)>, rhs: (T1, T2, T3, T4, T5, T6)? ) { lhs.to(equal(rhs)) } -public func !=( - lhs: Expectation<(T1, T2, T3, T4, T5, T6)>, +public func == ( + lhs: AsyncExpectation<(T1, T2, T3, T4, T5, T6)>, + rhs: (T1, T2, T3, T4, T5, T6)? +) async { + await lhs.to(equal(rhs)) +} + +public func != ( + lhs: SyncExpectation<(T1, T2, T3, T4, T5, T6)>, rhs: (T1, T2, T3, T4, T5, T6)? ) { lhs.toNot(equal(rhs)) } +public func != ( + lhs: AsyncExpectation<(T1, T2, T3, T4, T5, T6)>, + rhs: (T1, T2, T3, T4, T5, T6)? +) async { + await lhs.toNot(equal(rhs)) +} + // swiftlint:enable large_tuple vertical_whitespace diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/Equal+TupleArray.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/Equal+TupleArray.swift new file mode 100644 index 000000000..eff6168d0 --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/Equal+TupleArray.swift @@ -0,0 +1,204 @@ +// swiftlint:disable large_tuple + +// MARK: Tuple2 Array + +/// A Nimble matcher that succeeds when the actual array of tuples is equal to the expected array of tuples. +/// Values can support equal by supporting the Equatable protocol. +public func equal( + _ expectedValue: [(T1, T2)]? +) -> Matcher<[(T1, T2)]> { + equalTupleArray(expectedValue, by: ==) +} + +public func == ( + lhs: SyncExpectation<[(T1, T2)]>, + rhs: [(T1, T2)]? +) { + lhs.to(equal(rhs)) +} + +public func == ( + lhs: AsyncExpectation<[(T1, T2)]>, + rhs: [(T1, T2)]? +) async { + await lhs.to(equal(rhs)) +} + +public func != ( + lhs: SyncExpectation<[(T1, T2)]>, + rhs: [(T1, T2)]? +) { + lhs.toNot(equal(rhs)) +} + +public func != ( + lhs: AsyncExpectation<[(T1, T2)]>, + rhs: [(T1, T2)]? +) async { + await lhs.toNot(equal(rhs)) +} + +// MARK: Tuple3 Array + +/// A Nimble matcher that succeeds when the actual array of tuples is equal to the expected array of tuples. +/// Values can support equal by supporting the Equatable protocol. +public func equal( + _ expectedValue: [(T1, T2, T3)]? +) -> Matcher<[(T1, T2, T3)]> { + equalTupleArray(expectedValue, by: ==) +} + +public func == ( + lhs: SyncExpectation<[(T1, T2, T3)]>, + rhs: [(T1, T2, T3)]? +) { + lhs.to(equal(rhs)) +} + +public func == ( + lhs: AsyncExpectation<[(T1, T2, T3)]>, + rhs: [(T1, T2, T3)]? +) async { + await lhs.to(equal(rhs)) +} + +public func != ( + lhs: SyncExpectation<[(T1, T2, T3)]>, + rhs: [(T1, T2, T3)]? +) { + lhs.toNot(equal(rhs)) +} + +public func != ( + lhs: AsyncExpectation<[(T1, T2, T3)]>, + rhs: [(T1, T2, T3)]? +) async { + await lhs.toNot(equal(rhs)) +} + +// MARK: Tuple4 Array + +/// A Nimble matcher that succeeds when the actual array of tuples is equal to the expected array of tuples. +/// Values can support equal by supporting the Equatable protocol. +public func equal( + _ expectedValue: [(T1, T2, T3, T4)]? +) -> Matcher<[(T1, T2, T3, T4)]> { + equalTupleArray(expectedValue, by: ==) +} + +public func == ( + lhs: SyncExpectation<[(T1, T2, T3, T4)]>, + rhs: [(T1, T2, T3, T4)]? +) { + lhs.to(equal(rhs)) +} + +public func == ( + lhs: AsyncExpectation<[(T1, T2, T3, T4)]>, + rhs: [(T1, T2, T3, T4)]? +) async { + await lhs.to(equal(rhs)) +} + +public func != ( + lhs: SyncExpectation<[(T1, T2, T3, T4)]>, + rhs: [(T1, T2, T3, T4)]? +) { + lhs.toNot(equal(rhs)) +} + +public func != ( + lhs: AsyncExpectation<[(T1, T2, T3, T4)]>, + rhs: [(T1, T2, T3, T4)]? +) async { + await lhs.toNot(equal(rhs)) +} + +// MARK: Tuple5 Array + +/// A Nimble matcher that succeeds when the actual array of tuples is equal to the expected array of tuples. +/// Values can support equal by supporting the Equatable protocol. +public func equal( + _ expectedValue: [(T1, T2, T3, T4, T5)]? +) -> Matcher<[(T1, T2, T3, T4, T5)]> { + equalTupleArray(expectedValue, by: ==) +} + +public func == ( + lhs: SyncExpectation<[(T1, T2, T3, T4, T5)]>, + rhs: [(T1, T2, T3, T4, T5)]? +) { + lhs.to(equal(rhs)) +} + +public func == ( + lhs: AsyncExpectation<[(T1, T2, T3, T4, T5)]>, + rhs: [(T1, T2, T3, T4, T5)]? +) async { + await lhs.to(equal(rhs)) +} + +public func != ( + lhs: SyncExpectation<[(T1, T2, T3, T4, T5)]>, + rhs: [(T1, T2, T3, T4, T5)]? +) { + lhs.toNot(equal(rhs)) +} + +public func != ( + lhs: AsyncExpectation<[(T1, T2, T3, T4, T5)]>, + rhs: [(T1, T2, T3, T4, T5)]? +) async { + await lhs.toNot(equal(rhs)) +} + +// MARK: Tuple6 Array + +/// A Nimble matcher that succeeds when the actual array of tuples is equal to the expected array of tuples. +/// Values can support equal by supporting the Equatable protocol. +public func equal( + _ expectedValue: [(T1, T2, T3, T4, T5, T6)]? +) -> Matcher<[(T1, T2, T3, T4, T5, T6)]> { + equalTupleArray(expectedValue, by: ==) +} + +public func == ( + lhs: SyncExpectation<[(T1, T2, T3, T4, T5, T6)]>, + rhs: [(T1, T2, T3, T4, T5, T6)]? +) { + lhs.to(equal(rhs)) +} + +public func == ( + lhs: AsyncExpectation<[(T1, T2, T3, T4, T5, T6)]>, + rhs: [(T1, T2, T3, T4, T5, T6)]? +) async { + await lhs.to(equal(rhs)) +} + +public func != ( + lhs: SyncExpectation<[(T1, T2, T3, T4, T5, T6)]>, + rhs: [(T1, T2, T3, T4, T5, T6)]? +) { + lhs.toNot(equal(rhs)) +} + +public func != ( + lhs: AsyncExpectation<[(T1, T2, T3, T4, T5, T6)]>, + rhs: [(T1, T2, T3, T4, T5, T6)]? +) async { + await lhs.toNot(equal(rhs)) +} + +// swiftlint:enable large_tuple + +// MARK: Implementation Helpers + +private func equalTupleArray( + _ expectedValue: [(Tuple)]?, + by areTuplesEquivalent: @escaping (Tuple, Tuple) -> Bool +) -> Matcher<[Tuple]> { + equal(expectedValue) { + $0.elementsEqual($1, by: areTuplesEquivalent) + } +} diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/Equal.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/Equal.swift index 7b8986069..4ec21e37d 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/Equal.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/Equal.swift @@ -1,17 +1,17 @@ internal func equal( _ expectedValue: T?, by areEquivalent: @escaping (T, T) -> Bool -) -> Predicate { - Predicate.define("equal <\(stringify(expectedValue))>") { actualExpression, msg in +) -> Matcher { + Matcher.define("equal <\(stringify(expectedValue))>") { actualExpression, msg in let actualValue = try actualExpression.evaluate() switch (expectedValue, actualValue) { case (nil, _?): - return PredicateResult(status: .fail, message: msg.appendedBeNilHint()) + return MatcherResult(status: .fail, message: msg.appendedBeNilHint()) case (_, nil): - return PredicateResult(status: .fail, message: msg) + return MatcherResult(status: .fail, message: msg) case (let expected?, let actual?): let matches = areEquivalent(expected, actual) - return PredicateResult(bool: matches, message: msg) + return MatcherResult(bool: matches, message: msg) } } } @@ -20,22 +20,22 @@ internal func equal( /// Values can support equal by supporting the Equatable protocol. /// /// @see beCloseTo if you want to match imprecise types (eg - floats, doubles). -public func equal(_ expectedValue: T) -> Predicate { +public func equal(_ expectedValue: T) -> Matcher { equal(expectedValue as T?) } /// A Nimble matcher allowing comparison of collection with optional type -public func equal(_ expectedValue: [T?]) -> Predicate<[T?]> { - Predicate.define("equal <\(stringify(expectedValue))>") { actualExpression, msg in +public func equal(_ expectedValue: [T?]) -> Matcher<[T?]> { + Matcher.define("equal <\(stringify(expectedValue))>") { actualExpression, msg in guard let actualValue = try actualExpression.evaluate() else { - return PredicateResult( + return MatcherResult( status: .fail, message: msg.appendedBeNilHint() ) } let matches = expectedValue == actualValue - return PredicateResult(bool: matches, message: msg) + return MatcherResult(bool: matches, message: msg) } } @@ -43,46 +43,46 @@ public func equal(_ expectedValue: [T?]) -> Predicate<[T?]> { /// Values can support equal by supporting the Equatable protocol. /// /// @see beCloseTo if you want to match imprecise types (eg - floats, doubles). -public func equal(_ expectedValue: T?) -> Predicate { +public func equal(_ expectedValue: T?) -> Matcher { equal(expectedValue, by: ==) } /// A Nimble matcher that succeeds when the actual set is equal to the expected set. -public func equal(_ expectedValue: Set) -> Predicate> { +public func equal(_ expectedValue: Set) -> Matcher> { equal(expectedValue as Set?) } /// A Nimble matcher that succeeds when the actual set is equal to the expected set. -public func equal(_ expectedValue: Set?) -> Predicate> { +public func equal(_ expectedValue: Set?) -> Matcher> { equal(expectedValue, stringify: { stringify($0) }) } /// A Nimble matcher that succeeds when the actual set is equal to the expected set. -public func equal(_ expectedValue: Set) -> Predicate> { +public func equal(_ expectedValue: Set) -> Matcher> { equal(expectedValue as Set?) } /// A Nimble matcher that succeeds when the actual set is equal to the expected set. -public func equal(_ expectedValue: Set?) -> Predicate> { +public func equal(_ expectedValue: Set?) -> Matcher> { equal(expectedValue, stringify: { set in stringify(set.map { Array($0).sorted(by: <) }) }) } -private func equal(_ expectedValue: Set?, stringify: @escaping (Set?) -> String) -> Predicate> { - Predicate { actualExpression in +private func equal(_ expectedValue: Set?, stringify: @escaping (Set?) -> String) -> Matcher> { + Matcher { actualExpression in var errorMessage: ExpectationMessage = .expectedActualValueTo("equal <\(stringify(expectedValue))>") guard let expectedValue = expectedValue else { - return PredicateResult( + return MatcherResult( status: .fail, message: errorMessage.appendedBeNilHint() ) } guard let actualValue = try actualExpression.evaluate() else { - return PredicateResult( + return MatcherResult( status: .fail, message: errorMessage.appendedBeNilHint() ) @@ -94,7 +94,7 @@ private func equal(_ expectedValue: Set?, stringify: @escaping (Set?) - ) if expectedValue == actualValue { - return PredicateResult( + return MatcherResult( status: .matches, message: errorMessage ) @@ -109,7 +109,7 @@ private func equal(_ expectedValue: Set?, stringify: @escaping (Set?) - if extra.count > 0 { errorMessage = errorMessage.appended(message: ", extra <\(stringify(extra))>") } - return PredicateResult( + return MatcherResult( status: .doesNotMatch, message: errorMessage ) @@ -117,90 +117,154 @@ private func equal(_ expectedValue: Set?, stringify: @escaping (Set?) - } /// A Nimble matcher that succeeds when the actual dictionary is equal to the expected dictionary -public func equal(_ expectedValue: [K: V?]) -> Predicate<[K: V]> { - Predicate.define("equal <\(stringify(expectedValue))>") { actualExpression, msg in +public func equal(_ expectedValue: [K: V?]) -> Matcher<[K: V]> { + Matcher.define("equal <\(stringify(expectedValue))>") { actualExpression, msg in guard let actualValue = try actualExpression.evaluate() else { - return PredicateResult( + return MatcherResult( status: .fail, message: msg.appendedBeNilHint() ) } let matches = expectedValue == actualValue - return PredicateResult(bool: matches, message: msg) + return MatcherResult(bool: matches, message: msg) } } -public func ==(lhs: Expectation, rhs: T) { +public func == (lhs: SyncExpectation, rhs: T) { lhs.to(equal(rhs)) } -public func ==(lhs: Expectation, rhs: T?) { +public func == (lhs: SyncExpectation, rhs: T?) { lhs.to(equal(rhs)) } -public func !=(lhs: Expectation, rhs: T) { +public func != (lhs: SyncExpectation, rhs: T) { lhs.toNot(equal(rhs)) } -public func !=(lhs: Expectation, rhs: T?) { +public func != (lhs: SyncExpectation, rhs: T?) { lhs.toNot(equal(rhs)) } -public func ==(lhs: Expectation<[T]>, rhs: [T]?) { +public func == (lhs: SyncExpectation<[T]>, rhs: [T]?) { lhs.to(equal(rhs)) } -public func !=(lhs: Expectation<[T]>, rhs: [T]?) { +public func != (lhs: SyncExpectation<[T]>, rhs: [T]?) { lhs.toNot(equal(rhs)) } -public func == (lhs: Expectation>, rhs: Set) { +public func == (lhs: SyncExpectation>, rhs: Set) { lhs.to(equal(rhs)) } -public func == (lhs: Expectation>, rhs: Set?) { +public func == (lhs: SyncExpectation>, rhs: Set?) { lhs.to(equal(rhs)) } -public func != (lhs: Expectation>, rhs: Set) { +public func != (lhs: SyncExpectation>, rhs: Set) { lhs.toNot(equal(rhs)) } -public func != (lhs: Expectation>, rhs: Set?) { +public func != (lhs: SyncExpectation>, rhs: Set?) { lhs.toNot(equal(rhs)) } -public func ==(lhs: Expectation>, rhs: Set) { +public func == (lhs: SyncExpectation>, rhs: Set) { lhs.to(equal(rhs)) } -public func ==(lhs: Expectation>, rhs: Set?) { +public func == (lhs: SyncExpectation>, rhs: Set?) { lhs.to(equal(rhs)) } -public func !=(lhs: Expectation>, rhs: Set) { +public func != (lhs: SyncExpectation>, rhs: Set) { lhs.toNot(equal(rhs)) } -public func !=(lhs: Expectation>, rhs: Set?) { +public func != (lhs: SyncExpectation>, rhs: Set?) { lhs.toNot(equal(rhs)) } -public func ==(lhs: Expectation<[T: C]>, rhs: [T: C]?) { +public func == (lhs: SyncExpectation<[T: C]>, rhs: [T: C]?) { lhs.to(equal(rhs)) } -public func !=(lhs: Expectation<[T: C]>, rhs: [T: C]?) { +public func != (lhs: SyncExpectation<[T: C]>, rhs: [T: C]?) { lhs.toNot(equal(rhs)) } +public func == (lhs: AsyncExpectation, rhs: T) async { + await lhs.to(equal(rhs)) +} + +public func == (lhs: AsyncExpectation, rhs: T?) async { + await lhs.to(equal(rhs)) +} + +public func != (lhs: AsyncExpectation, rhs: T) async { + await lhs.toNot(equal(rhs)) +} + +public func != (lhs: AsyncExpectation, rhs: T?) async { + await lhs.toNot(equal(rhs)) +} + +public func == (lhs: AsyncExpectation<[T]>, rhs: [T]?) async { + await lhs.to(equal(rhs)) +} + +public func != (lhs: AsyncExpectation<[T]>, rhs: [T]?) async { + await lhs.toNot(equal(rhs)) +} + +public func == (lhs: AsyncExpectation>, rhs: Set) async { + await lhs.to(equal(rhs)) +} + +public func == (lhs: AsyncExpectation>, rhs: Set?) async { + await lhs.to(equal(rhs)) +} + +public func != (lhs: AsyncExpectation>, rhs: Set) async { + await lhs.toNot(equal(rhs)) +} + +public func != (lhs: AsyncExpectation>, rhs: Set?) async { + await lhs.toNot(equal(rhs)) +} + +public func == (lhs: AsyncExpectation>, rhs: Set) async { + await lhs.to(equal(rhs)) +} + +public func == (lhs: AsyncExpectation>, rhs: Set?) async { + await lhs.to(equal(rhs)) +} + +public func != (lhs: AsyncExpectation>, rhs: Set) async { + await lhs.toNot(equal(rhs)) +} + +public func != (lhs: AsyncExpectation>, rhs: Set?) async { + await lhs.toNot(equal(rhs)) +} + +public func == (lhs: AsyncExpectation<[T: C]>, rhs: [T: C]?) async { + await lhs.to(equal(rhs)) +} + +public func != (lhs: AsyncExpectation<[T: C]>, rhs: [T: C]?) async { + await lhs.toNot(equal(rhs)) +} + #if canImport(Darwin) import class Foundation.NSObject -extension NMBPredicate { - @objc public class func equalMatcher(_ expected: NSObject) -> NMBPredicate { - NMBPredicate { actualExpression in +extension NMBMatcher { + @objc public class func equalMatcher(_ expected: NSObject) -> NMBMatcher { + NMBMatcher { actualExpression in try equal(expected).satisfies(actualExpression).toObjectiveC() } } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/HaveCount.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/HaveCount.swift index 20397f5a9..7b476d738 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/HaveCount.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/HaveCount.swift @@ -5,8 +5,8 @@ /// A Nimble matcher that succeeds when the actual Collection's count equals /// the expected value -public func haveCount(_ expectedValue: Int) -> Predicate { - return Predicate.define { actualExpression in +public func haveCount(_ expectedValue: Int) -> Matcher { + return Matcher.define { actualExpression in if let actualValue = try actualExpression.evaluate() { let message = ExpectationMessage .expectedCustomValueTo( @@ -16,29 +16,28 @@ public func haveCount(_ expectedValue: Int) -> Predicate { .appended(details: "Actual Value: \(stringify(actualValue))") let result = expectedValue == actualValue.count - return PredicateResult(bool: result, message: message) + return MatcherResult(bool: result, message: message) } else { - return PredicateResult(status: .fail, message: .fail("")) + return MatcherResult(status: .fail, message: .fail("")) } } } /// A Nimble matcher that succeeds when the actual collection's count equals /// the expected value -public func haveCount(_ expectedValue: Int) -> Predicate { - return Predicate { actualExpression in +public func haveCount(_ expectedValue: Int) -> Matcher { + return Matcher { actualExpression in if let actualValue = try actualExpression.evaluate() { let message = ExpectationMessage .expectedCustomValueTo( "have \(prettyCollectionType(actualValue)) with count \(stringify(expectedValue))", - actual: "\(actualValue.count)" + actual: "\(actualValue.count). Actual Value: \(stringify(actualValue))" ) - .appended(details: "Actual Value: \(stringify(actualValue))") let result = expectedValue == actualValue.count - return PredicateResult(bool: result, message: message) + return MatcherResult(bool: result, message: message) } else { - return PredicateResult(status: .fail, message: .fail("")) + return MatcherResult(status: .fail, message: .fail("")) } } } @@ -46,9 +45,9 @@ public func haveCount(_ expectedValue: Int) -> Predicate { #if canImport(Darwin) import Foundation -extension NMBPredicate { - @objc public class func haveCountMatcher(_ expected: NSNumber) -> NMBPredicate { - return NMBPredicate { actualExpression in +extension NMBMatcher { + @objc public class func haveCountMatcher(_ expected: NSNumber) -> NMBMatcher { + return NMBMatcher { actualExpression in let location = actualExpression.location let actualValue = try actualExpression.evaluate() if let value = actualValue as? NMBCollection { @@ -67,7 +66,7 @@ extension NMBPredicate { .expectedActualValueTo("have a collection with count \(stringify(expected.intValue))") .appendedBeNilHint() } - return NMBPredicateResult(status: .fail, message: message.toObjectiveC()) + return NMBMatcherResult(status: .fail, message: message.toObjectiveC()) } } } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/Map.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/Map.swift new file mode 100644 index 000000000..5029f98be --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/Map.swift @@ -0,0 +1,97 @@ +/// `map` works by transforming the expression to a value that the given matcher uses. +/// +/// For example, you might only care that a particular property on a method equals some other value. +/// So, you could write `expect(myObject).to(map(\.someIntValue, equal(3))`. +/// This is also useful in conjunction with ``satisfyAllOf`` to do a partial equality of an object. +public func map(_ transform: @escaping (T) throws -> U, _ matcher: Matcher) -> Matcher { + Matcher { (received: Expression) in + try matcher.satisfies(received.cast { value in + guard let value else { return nil } + return try transform(value) + }) + } +} + +/// `map` works by transforming the expression to a value that the given matcher uses. +/// +/// For example, you might only care that a particular property on a method equals some other value. +/// So, you could write `expect(myObject).to(map(\.someIntValue, equal(3))`. +/// This is also useful in conjunction with ``satisfyAllOf`` to do a partial equality of an object. +public func map(_ transform: @escaping (T) async throws -> U, _ matcher: some AsyncableMatcher) -> AsyncMatcher { + AsyncMatcher { (received: AsyncExpression) in + try await matcher.satisfies(received.cast { value in + guard let value else { return nil } + return try await transform(value) + }) + } +} + +/// `map` works by transforming the expression to a value that the given matcher uses. +/// +/// For example, you might only care that a particular property on a method equals some other value. +/// So, you could write `expect(myObject).to(map(\.someOptionalIntValue, equal(3))`. +/// This is also useful in conjunction with ``satisfyAllOf`` to do a partial equality of an object. +public func map(_ transform: @escaping (T) throws -> U?, _ matcher: Matcher) -> Matcher { + Matcher { (received: Expression) in + try matcher.satisfies(received.cast { value in + guard let value else { return nil } + return try transform(value) + }) + } +} + +/// `map` works by transforming the expression to a value that the given matcher uses. +/// +/// For example, you might only care that a particular property on a method equals some other value. +/// So, you could write `expect(myObject).to(map(\.someOptionalIntValue, equal(3))`. +/// This is also useful in conjunction with ``satisfyAllOf`` to do a partial equality of an object. +public func map(_ transform: @escaping (T) async throws -> U?, _ matcher: some AsyncableMatcher) -> AsyncMatcher { + AsyncMatcher { (received: AsyncExpression) in + try await matcher.satisfies(received.cast { value in + guard let value else { return nil } + return try await transform(value) + }) + } +} + +/// `compactMap` works by transforming the expression to a value that the given matcher uses. +/// +/// For example, you might only care that a particular property on a method equals some other value. +/// So, you could write `expect(myObject).to(compactMap({ $0 as? Int }, equal(3))`. +/// This is also useful in conjunction with ``satisfyAllOf`` to match against a converted type. +public func compactMap(_ transform: @escaping (T) throws -> U?, _ matcher: Matcher) -> Matcher { + Matcher { (received: Expression) in + let message = ExpectationMessage.expectedTo("Map from \(T.self) to \(U.self)") + + guard let value = try received.evaluate() else { + return MatcherResult(status: .fail, message: message.appendedBeNilHint()) + } + + guard let transformedValue = try transform(value) else { + return MatcherResult(status: .fail, message: message) + } + + return try matcher.satisfies(Expression(expression: { transformedValue }, location: received.location)) + } +} + +/// `compactMap` works by transforming the expression to a value that the given matcher uses. +/// +/// For example, you might only care that a particular property on a method equals some other value. +/// So, you could write `expect(myObject).to(compactMap({ $0 as? Int }, equal(3))`. +/// This is also useful in conjunction with ``satisfyAllOf`` to match against a converted type. +public func compactMap(_ transform: @escaping (T) async throws -> U?, _ matcher: some AsyncableMatcher) -> AsyncMatcher { + AsyncMatcher { (received: AsyncExpression) in + let message = ExpectationMessage.expectedTo("Map from \(T.self) to \(U.self)") + + guard let value = try await received.evaluate() else { + return MatcherResult(status: .fail, message: message.appendedBeNilHint()) + } + + guard let transformedValue = try await transform(value) else { + return MatcherResult(status: .fail, message: message) + } + + return try await matcher.satisfies(AsyncExpression(expression: { transformedValue }, location: received.location)) + } +} diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/Match.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/Match.swift index 93363b324..b634ad31c 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/Match.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/Match.swift @@ -1,20 +1,20 @@ /// A Nimble matcher that succeeds when the actual string satisfies the regular expression /// described by the expected string. -public func match(_ expectedValue: String?) -> Predicate { - return Predicate.simple("match <\(stringify(expectedValue))>") { actualExpression in +public func match(_ expectedValue: String?) -> Matcher { + return Matcher.simple("match <\(stringify(expectedValue))>") { actualExpression in guard let actual = try actualExpression.evaluate(), let regexp = expectedValue else { return .fail } let bool = actual.range(of: regexp, options: .regularExpression) != nil - return PredicateStatus(bool: bool) + return MatcherStatus(bool: bool) } } #if canImport(Darwin) import class Foundation.NSString -extension NMBPredicate { - @objc public class func matchMatcher(_ expected: NSString) -> NMBPredicate { - return NMBPredicate { actualExpression in +extension NMBMatcher { + @objc public class func matchMatcher(_ expected: NSString) -> NMBMatcher { + return NMBMatcher { actualExpression in let actual = actualExpression.cast { $0 as? String } return try match(expected.description).satisfies(actual).toObjectiveC() } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/MatchError.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/MatchError.swift index 3edc99bcb..10ed86b83 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/MatchError.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/MatchError.swift @@ -3,8 +3,8 @@ /// /// Errors are tried to be compared by their implementation of Equatable, /// otherwise they fallback to comparison by _domain and _code. -public func matchError(_ error: T) -> Predicate { - return Predicate.define { actualExpression in +public func matchError(_ error: T) -> Matcher { + return Matcher.define { actualExpression in let actualError = try actualExpression.evaluate() let message = messageForError( @@ -18,7 +18,7 @@ public func matchError(_ error: T) -> Predicate { matches = true } - return PredicateResult(bool: matches, message: message) + return MatcherResult(bool: matches, message: message) } } @@ -27,8 +27,8 @@ public func matchError(_ error: T) -> Predicate { /// /// Errors are tried to be compared by their implementation of Equatable, /// otherwise they fallback to comparision by _domain and _code. -public func matchError(_ error: T) -> Predicate { - return Predicate.define { actualExpression in +public func matchError(_ error: T) -> Matcher { + return Matcher.define { actualExpression in let actualError = try actualExpression.evaluate() let message = messageForError( @@ -42,14 +42,14 @@ public func matchError(_ error: T) -> Predicate { matches = true } - return PredicateResult(bool: matches, message: message) + return MatcherResult(bool: matches, message: message) } } /// A Nimble matcher that succeeds when the actual expression evaluates to an /// error of the specified type -public func matchError(_ errorType: T.Type) -> Predicate { - return Predicate.define { actualExpression in +public func matchError(_ errorType: T.Type) -> Matcher { + return Matcher.define { actualExpression in let actualError = try actualExpression.evaluate() let message = messageForError( @@ -63,6 +63,6 @@ public func matchError(_ errorType: T.Type) -> Predicate { matches = true } - return PredicateResult(bool: matches, message: message) + return MatcherResult(bool: matches, message: message) } } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/Matcher.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/Matcher.swift new file mode 100644 index 000000000..375419e4c --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/Matcher.swift @@ -0,0 +1,324 @@ +// New Matcher API +// + +/// A Matcher is part of the new matcher API that provides assertions to expectations. +/// +/// Given a code snippet: +/// +/// expect(1).to(equal(2)) +/// ^^^^^^^^ +/// Called a "matcher" +/// +/// A matcher consists of two parts a constructor function and the Matcher. +/// +/// The Matcher provide the heavy lifting on how to assert against a given value. Internally, +/// matchers are simple wrappers around closures to provide static type information and +/// allow composition and wrapping of existing behaviors. +/// +/// In the 2023 Apple Platform releases (macOS 14, iOS 17, watchOS 10, tvOS 17, visionOS 1), Apple +/// renamed `NSMatcher` to `Matcher`. In response, we decided to rename `Matcher` to +/// `Matcher`. +public struct Matcher { + fileprivate var matcher: (Expression) throws -> MatcherResult + + /// Constructs a matcher that knows how take a given value + public init(_ matcher: @escaping (Expression) throws -> MatcherResult) { + self.matcher = matcher + } + + /// Uses a matcher on a given value to see if it passes the matcher. + /// + /// @param expression The value to run the matcher's logic against + /// @returns A matcher result indicate passing or failing and an associated error message. + public func satisfies(_ expression: Expression) throws -> MatcherResult { + return try matcher(expression) + } +} + +/// Provides an easy upgrade path for custom Matchers to be renamed to Matchers +@available(*, deprecated, renamed: "Matcher") +public typealias Predicate = Matcher + +/// Provides convenience helpers to defining matchers +extension Matcher { + /// Like Matcher() constructor, but automatically guard against nil (actual) values + public static func define(matcher: @escaping (Expression) throws -> MatcherResult) -> Matcher { + return Matcher { actual in + return try matcher(actual) + }.requireNonNil + } + + /// Defines a matcher with a default message that can be returned in the closure + /// Also ensures the matcher's actual value cannot pass with `nil` given. + public static func define(_ message: String = "match", matcher: @escaping (Expression, ExpectationMessage) throws -> MatcherResult) -> Matcher { + return Matcher { actual in + return try matcher(actual, .expectedActualValueTo(message)) + }.requireNonNil + } + + /// Defines a matcher with a default message that can be returned in the closure + /// Unlike `define`, this allows nil values to succeed if the given closure chooses to. + public static func defineNilable(_ message: String = "match", matcher: @escaping (Expression, ExpectationMessage) throws -> MatcherResult) -> Matcher { + return Matcher { actual in + return try matcher(actual, .expectedActualValueTo(message)) + } + } +} + +extension Matcher { + /// Provides a simple matcher definition that provides no control over the predefined + /// error message. + /// + /// Also ensures the matcher's actual value cannot pass with `nil` given. + public static func simple(_ message: String = "match", matcher: @escaping (Expression) throws -> MatcherStatus) -> Matcher { + return Matcher { actual in + return MatcherResult(status: try matcher(actual), message: .expectedActualValueTo(message)) + }.requireNonNil + } + + /// Provides a simple matcher definition that provides no control over the predefined + /// error message. + /// + /// Unlike `simple`, this allows nil values to succeed if the given closure chooses to. + public static func simpleNilable(_ message: String = "match", matcher: @escaping (Expression) throws -> MatcherStatus) -> Matcher { + return Matcher { actual in + return MatcherResult(status: try matcher(actual), message: .expectedActualValueTo(message)) + } + } +} + +/// The Expectation style intended for comparison to a MatcherStatus. +public enum ExpectationStyle { + case toMatch, toNotMatch +} + +/// The value that a Matcher returns to describe if the given (actual) value matches the +/// matcher. +public struct MatcherResult { + /// Status indicates if the matcher matches, does not match, or fails. + public var status: MatcherStatus + /// The error message that can be displayed if it does not match + public var message: ExpectationMessage + + /// Constructs a new MatcherResult with a given status and error message + public init(status: MatcherStatus, message: ExpectationMessage) { + self.status = status + self.message = message + } + + /// Shorthand to MatcherResult(status: MatcherStatus(bool: bool), message: message) + public init(bool: Bool, message: ExpectationMessage) { + self.status = MatcherStatus(bool: bool) + self.message = message + } + + /// Converts the result to a boolean based on what the expectation intended + public func toBoolean(expectation style: ExpectationStyle) -> Bool { + return status.toBoolean(expectation: style) + } +} + +/// Provides an easy upgrade path for custom Matchers to be renamed to Matchers +@available(*, deprecated, renamed: "MatcherResult") +public typealias PredicateResult = MatcherResult + +/// MatcherStatus is a trinary that indicates if a Matcher matches a given value or not +public enum MatcherStatus { + /// Matches indicates if the matcher / matcher passes with the given value + /// + /// For example, `equals(1)` returns `.matches` for `expect(1).to(equal(1))`. + case matches + /// DoesNotMatch indicates if the matcher fails with the given value, but *would* + /// succeed if the expectation was inverted. + /// + /// For example, `equals(2)` returns `.doesNotMatch` for `expect(1).toNot(equal(2))`. + case doesNotMatch + /// Fail indicates the matcher will never satisfy with the given value in any case. + /// A perfect example is that most matchers fail whenever given `nil`. + /// + /// Using `equal(1)` fails both `expect(nil).to(equal(1))` and `expect(nil).toNot(equal(1))`. + /// Note: Matcher's `requireNonNil` property will also provide this feature mostly for free. + /// Your matcher will still need to guard against nils, but error messaging will be + /// handled for you. + case fail + + /// Converts a boolean to either .matches (if true) or .doesNotMatch (if false). + public init(bool matches: Bool) { + if matches { + self = .matches + } else { + self = .doesNotMatch + } + } + + private func shouldMatch() -> Bool { + switch self { + case .matches: return true + case .doesNotMatch, .fail: return false + } + } + + private func shouldNotMatch() -> Bool { + switch self { + case .doesNotMatch: return true + case .matches, .fail: return false + } + } + + /// Converts the MatcherStatus result to a boolean based on what the expectation intended + internal func toBoolean(expectation style: ExpectationStyle) -> Bool { + if style == .toMatch { + return shouldMatch() + } else { + return shouldNotMatch() + } + } +} + +/// Provides an easy upgrade path for custom Matchers to be renamed to Matchers +@available(*, deprecated, renamed: "MatcherStatus") +public typealias PredicateStatus = MatcherStatus + +extension Matcher { + // Someday, make this public? Needs documentation + internal func after(f: @escaping (Expression, MatcherResult) throws -> MatcherResult) -> Matcher { + // swiftlint:disable:previous identifier_name + return Matcher { actual -> MatcherResult in + let result = try self.satisfies(actual) + return try f(actual, result) + } + } + + /// Returns a new Matcher based on the current one that always fails if nil is given as + /// the actual value. + public var requireNonNil: Matcher { + return after { actual, result in + if try actual.evaluate() == nil { + return MatcherResult( + status: .fail, + message: result.message.appendedBeNilHint() + ) + } + return result + } + } +} + +#if canImport(Darwin) +import class Foundation.NSObject + +public typealias MatcherBlock = (_ actualExpression: Expression) throws -> NMBMatcherResult + +/// Provides an easy upgrade path for custom Matchers to be renamed to Matchers +@available(*, deprecated, renamed: "MatcherBlock") +public typealias PredicateBlock = MatcherBlock + +public class NMBMatcher: NSObject { + private let matcher: MatcherBlock + + public init(matcher: @escaping MatcherBlock) { + self.matcher = matcher + } + + @available(*, deprecated, renamed: "init(matcher:)") + public convenience init(predicate: @escaping MatcherBlock) { + self.init(matcher: predicate) + } + + func satisfies(_ expression: @escaping () throws -> NSObject?, location: SourceLocation) -> NMBMatcherResult { + let expr = Expression(expression: expression, location: location) + do { + return try self.matcher(expr) + } catch let error { + return MatcherResult(status: .fail, message: .fail("unexpected error thrown: <\(error)>")).toObjectiveC() + } + } +} + +/// Provides an easy upgrade path for custom Matchers to be renamed to Matchers +@available(*, deprecated, renamed: "NMBMatcher") +public typealias NMBPredicate = NMBMatcher + +final public class NMBMatcherResult: NSObject { + public var status: NMBMatcherStatus + public var message: NMBExpectationMessage + + public init(status: NMBMatcherStatus, message: NMBExpectationMessage) { + self.status = status + self.message = message + } + + public init(bool success: Bool, message: NMBExpectationMessage) { + self.status = NMBMatcherStatus.from(bool: success) + self.message = message + } + + public func toSwift() -> MatcherResult { + return MatcherResult(status: status.toSwift(), + message: message.toSwift()) + } +} + +/// Provides an easy upgrade path for custom Matchers to be renamed to Matchers +@available(*, deprecated, renamed: "NMBMatcherResult") +public typealias NMBPredicateResult = NMBMatcherResult + +extension MatcherResult { + public func toObjectiveC() -> NMBMatcherResult { + return NMBMatcherResult(status: status.toObjectiveC(), message: message.toObjectiveC()) + } +} + +final public class NMBMatcherStatus: NSObject { + private let status: Int + private init(status: Int) { + self.status = status + } + + public static let matches: NMBMatcherStatus = NMBMatcherStatus(status: 0) + public static let doesNotMatch: NMBMatcherStatus = NMBMatcherStatus(status: 1) + public static let fail: NMBMatcherStatus = NMBMatcherStatus(status: 2) + + public override var hash: Int { return self.status.hashValue } + + public override func isEqual(_ object: Any?) -> Bool { + guard let otherMatcher = object as? NMBMatcherStatus else { + return false + } + return self.status == otherMatcher.status + } + + public static func from(status: MatcherStatus) -> NMBMatcherStatus { + switch status { + case .matches: return self.matches + case .doesNotMatch: return self.doesNotMatch + case .fail: return self.fail + } + } + + public static func from(bool success: Bool) -> NMBMatcherStatus { + return self.from(status: MatcherStatus(bool: success)) + } + + public func toSwift() -> MatcherStatus { + switch status { + case NMBMatcherStatus.matches.status: return .matches + case NMBMatcherStatus.doesNotMatch.status: return .doesNotMatch + case NMBMatcherStatus.fail.status: return .fail + default: + internalError("Unhandle status for NMBMatcherStatus") + } + } +} + +/// Provides an easy upgrade path for custom Matchers to be renamed to Matchers +@available(*, deprecated, renamed: "NMBMatcherStatus") +public typealias NMBPredicateStatus = NMBMatcherStatus + +extension MatcherStatus { + public func toObjectiveC() -> NMBMatcherStatus { + return NMBMatcherStatus.from(status: self) + } +} + +#endif diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/Negation.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/Negation.swift new file mode 100644 index 000000000..f82fd174c --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/Negation.swift @@ -0,0 +1,37 @@ +/// A matcher that negates the passed in matcher +/// +/// - Note: If the passed-in matcher unconditionally fails, then `not` also unconditionally fails. +public func not(_ matcher: Matcher) -> Matcher { + Matcher { actualExpression in + negateMatcherResult( + try matcher.satisfies(actualExpression) + ) + } +} + +/// A matcher that negates the passed in matcher +/// +/// - Note: If the passed-in matcher unconditionally fails, then `not` also unconditionally fails. +public func not(_ matcher: AsyncMatcher) -> AsyncMatcher { + AsyncMatcher { actualExpression in + negateMatcherResult( + try await matcher.satisfies(actualExpression) + ) + } +} + +private func negateMatcherResult(_ matcherResult: MatcherResult) -> MatcherResult { + let status: MatcherStatus + switch matcherResult.status { + case .matches: + status = .doesNotMatch + case .doesNotMatch: + status = .matches + case .fail: + status = .fail + } + return MatcherResult( + status: status, + message: matcherResult.message.prepended(expectation: "not ") + ) +} diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/PostNotification.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/PostNotification.swift index e04bf556e..5144cc13f 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/PostNotification.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/PostNotification.swift @@ -5,6 +5,7 @@ import Foundation internal class NotificationCollector { private(set) var observedNotifications: [Notification] + private(set) var observedNotificationDescriptions: [String] private let notificationCenter: NotificationCenter private let names: Set private var tokens: [NSObjectProtocol] @@ -12,6 +13,7 @@ internal class NotificationCollector { required init(notificationCenter: NotificationCenter, names: Set = []) { self.notificationCenter = notificationCenter self.observedNotifications = [] + self.observedNotificationDescriptions = [] self.names = names self.tokens = [] } @@ -21,6 +23,7 @@ internal class NotificationCollector { return notificationCenter.addObserver(forName: name, object: nil, queue: nil) { [weak self] notification in // linux-swift gets confused by .append(n) self?.observedNotifications.append(notification) + self?.observedNotificationDescriptions.append(stringify(notification)) } } @@ -40,19 +43,23 @@ internal class NotificationCollector { } } +#if !os(Windows) private let mainThread = pthread_self() +#else +private let mainThread = Thread.mainThread +#endif private func _postNotifications( - _ predicate: Predicate<[Notification]>, + _ matcher: Matcher<[Notification]>, from center: NotificationCenter, names: Set = [] -) -> Predicate { +) -> Matcher { _ = mainThread // Force lazy-loading of this value let collector = NotificationCollector(notificationCenter: center, names: names) collector.startObserving() var once: Bool = false - return Predicate { actualExpression in + return Matcher { actualExpression in let collectorNotificationsExpression = Expression( memoizedExpression: { _ in return collector.observedNotifications @@ -61,7 +68,7 @@ private func _postNotifications( withoutCaching: true ) - assert(pthread_equal(mainThread, pthread_self()) != 0, "Only expecting closure to be evaluated on main thread.") + assert(Thread.isMainThread, "Only expecting closure to be evaluated on main thread.") if !once { once = true _ = try actualExpression.evaluate() @@ -71,10 +78,10 @@ private func _postNotifications( if collector.observedNotifications.isEmpty { actualValue = "no notifications" } else { - actualValue = "<\(stringify(collector.observedNotifications))>" + actualValue = "<\(stringify(collector.observedNotificationDescriptions))>" } - var result = try predicate.satisfies(collectorNotificationsExpression) + var result = try matcher.satisfies(collectorNotificationsExpression) result.message = result.message.replacedExpectation { message in return .expectedCustomValueTo(message.expectedMessage, actual: actualValue) } @@ -83,19 +90,19 @@ private func _postNotifications( } public func postNotifications( - _ predicate: Predicate<[Notification]>, + _ matcher: Matcher<[Notification]>, from center: NotificationCenter = .default -) -> Predicate { - _postNotifications(predicate, from: center) +) -> Matcher { + _postNotifications(matcher, from: center) } #if os(macOS) public func postDistributedNotifications( - _ predicate: Predicate<[Notification]>, + _ matcher: Matcher<[Notification]>, from center: DistributedNotificationCenter = .default(), names: Set -) -> Predicate { - _postNotifications(predicate, from: center, names: names) +) -> Matcher { + _postNotifications(matcher, from: center, names: names) } #endif diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/Predicate.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/Predicate.swift deleted file mode 100644 index ce20c6b1c..000000000 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/Predicate.swift +++ /dev/null @@ -1,289 +0,0 @@ -// New Matcher API -// - -/// A Predicate is part of the new matcher API that provides assertions to expectations. -/// -/// Given a code snippet: -/// -/// expect(1).to(equal(2)) -/// ^^^^^^^^ -/// Called a "matcher" -/// -/// A matcher consists of two parts a constructor function and the Predicate. The term Predicate -/// is used as a separate name from Matcher to help transition custom matchers to the new Nimble -/// matcher API. -/// -/// The Predicate provide the heavy lifting on how to assert against a given value. Internally, -/// predicates are simple wrappers around closures to provide static type information and -/// allow composition and wrapping of existing behaviors. -public struct Predicate { - fileprivate var matcher: (Expression) throws -> PredicateResult - - /// Constructs a predicate that knows how take a given value - public init(_ matcher: @escaping (Expression) throws -> PredicateResult) { - self.matcher = matcher - } - - /// Uses a predicate on a given value to see if it passes the predicate. - /// - /// @param expression The value to run the predicate's logic against - /// @returns A predicate result indicate passing or failing and an associated error message. - public func satisfies(_ expression: Expression) throws -> PredicateResult { - return try matcher(expression) - } -} - -/// Provides convenience helpers to defining predicates -extension Predicate { - /// Like Predicate() constructor, but automatically guard against nil (actual) values - public static func define(matcher: @escaping (Expression) throws -> PredicateResult) -> Predicate { - return Predicate { actual in - return try matcher(actual) - }.requireNonNil - } - - /// Defines a predicate with a default message that can be returned in the closure - /// Also ensures the predicate's actual value cannot pass with `nil` given. - public static func define(_ message: String = "match", matcher: @escaping (Expression, ExpectationMessage) throws -> PredicateResult) -> Predicate { - return Predicate { actual in - return try matcher(actual, .expectedActualValueTo(message)) - }.requireNonNil - } - - /// Defines a predicate with a default message that can be returned in the closure - /// Unlike `define`, this allows nil values to succeed if the given closure chooses to. - public static func defineNilable(_ message: String = "match", matcher: @escaping (Expression, ExpectationMessage) throws -> PredicateResult) -> Predicate { - return Predicate { actual in - return try matcher(actual, .expectedActualValueTo(message)) - } - } -} - -extension Predicate { - /// Provides a simple predicate definition that provides no control over the predefined - /// error message. - /// - /// Also ensures the predicate's actual value cannot pass with `nil` given. - public static func simple(_ message: String = "match", matcher: @escaping (Expression) throws -> PredicateStatus) -> Predicate { - return Predicate { actual in - return PredicateResult(status: try matcher(actual), message: .expectedActualValueTo(message)) - }.requireNonNil - } - - /// Provides a simple predicate definition that provides no control over the predefined - /// error message. - /// - /// Unlike `simple`, this allows nil values to succeed if the given closure chooses to. - public static func simpleNilable(_ message: String = "match", matcher: @escaping (Expression) throws -> PredicateStatus) -> Predicate { - return Predicate { actual in - return PredicateResult(status: try matcher(actual), message: .expectedActualValueTo(message)) - } - } -} - -// The Expectation style intended for comparison to a PredicateStatus. -public enum ExpectationStyle { - case toMatch, toNotMatch -} - -/// The value that a Predicates return to describe if the given (actual) value matches the -/// predicate. -public struct PredicateResult { - /// Status indicates if the predicate matches, does not match, or fails. - public var status: PredicateStatus - /// The error message that can be displayed if it does not match - public var message: ExpectationMessage - - /// Constructs a new PredicateResult with a given status and error message - public init(status: PredicateStatus, message: ExpectationMessage) { - self.status = status - self.message = message - } - - /// Shorthand to PredicateResult(status: PredicateStatus(bool: bool), message: message) - public init(bool: Bool, message: ExpectationMessage) { - self.status = PredicateStatus(bool: bool) - self.message = message - } - - /// Converts the result to a boolean based on what the expectation intended - public func toBoolean(expectation style: ExpectationStyle) -> Bool { - return status.toBoolean(expectation: style) - } -} - -/// PredicateStatus is a trinary that indicates if a Predicate matches a given value or not -public enum PredicateStatus { - /// Matches indicates if the predicate / matcher passes with the given value - /// - /// For example, `equals(1)` returns `.matches` for `expect(1).to(equal(1))`. - case matches - /// DoesNotMatch indicates if the predicate / matcher fails with the given value, but *would* - /// succeed if the expectation was inverted. - /// - /// For example, `equals(2)` returns `.doesNotMatch` for `expect(1).toNot(equal(2))`. - case doesNotMatch - /// Fail indicates the predicate will never satisfy with the given value in any case. - /// A perfect example is that most matchers fail whenever given `nil`. - /// - /// Using `equal(1)` fails both `expect(nil).to(equal(1))` and `expect(nil).toNot(equal(1))`. - /// Note: Predicate's `requireNonNil` property will also provide this feature mostly for free. - /// Your predicate will still need to guard against nils, but error messaging will be - /// handled for you. - case fail - - /// Converts a boolean to either .matches (if true) or .doesNotMatch (if false). - public init(bool matches: Bool) { - if matches { - self = .matches - } else { - self = .doesNotMatch - } - } - - private func shouldMatch() -> Bool { - switch self { - case .matches: return true - case .doesNotMatch, .fail: return false - } - } - - private func shouldNotMatch() -> Bool { - switch self { - case .doesNotMatch: return true - case .matches, .fail: return false - } - } - - /// Converts the PredicateStatus result to a boolean based on what the expectation intended - internal func toBoolean(expectation style: ExpectationStyle) -> Bool { - if style == .toMatch { - return shouldMatch() - } else { - return shouldNotMatch() - } - } -} - -extension Predicate { - // Someday, make this public? Needs documentation - internal func after(f: @escaping (Expression, PredicateResult) throws -> PredicateResult) -> Predicate { - // swiftlint:disable:previous identifier_name - return Predicate { actual -> PredicateResult in - let result = try self.satisfies(actual) - return try f(actual, result) - } - } - - /// Returns a new Predicate based on the current one that always fails if nil is given as - /// the actual value. - public var requireNonNil: Predicate { - return after { actual, result in - if try actual.evaluate() == nil { - return PredicateResult( - status: .fail, - message: result.message.appendedBeNilHint() - ) - } - return result - } - } -} - -#if canImport(Darwin) -import class Foundation.NSObject - -public typealias PredicateBlock = (_ actualExpression: Expression) throws -> NMBPredicateResult - -public class NMBPredicate: NSObject { - private let predicate: PredicateBlock - - public init(predicate: @escaping PredicateBlock) { - self.predicate = predicate - } - - func satisfies(_ expression: @escaping () throws -> NSObject?, location: SourceLocation) -> NMBPredicateResult { - let expr = Expression(expression: expression, location: location) - do { - return try self.predicate(expr) - } catch let error { - return PredicateResult(status: .fail, message: .fail("unexpected error thrown: <\(error)>")).toObjectiveC() - } - } -} - -final public class NMBPredicateResult: NSObject { - public var status: NMBPredicateStatus - public var message: NMBExpectationMessage - - public init(status: NMBPredicateStatus, message: NMBExpectationMessage) { - self.status = status - self.message = message - } - - public init(bool success: Bool, message: NMBExpectationMessage) { - self.status = NMBPredicateStatus.from(bool: success) - self.message = message - } - - public func toSwift() -> PredicateResult { - return PredicateResult(status: status.toSwift(), - message: message.toSwift()) - } -} - -extension PredicateResult { - public func toObjectiveC() -> NMBPredicateResult { - return NMBPredicateResult(status: status.toObjectiveC(), message: message.toObjectiveC()) - } -} - -final public class NMBPredicateStatus: NSObject { - private let status: Int - private init(status: Int) { - self.status = status - } - - public static let matches: NMBPredicateStatus = NMBPredicateStatus(status: 0) - public static let doesNotMatch: NMBPredicateStatus = NMBPredicateStatus(status: 1) - public static let fail: NMBPredicateStatus = NMBPredicateStatus(status: 2) - - public override var hash: Int { return self.status.hashValue } - - public override func isEqual(_ object: Any?) -> Bool { - guard let otherPredicate = object as? NMBPredicateStatus else { - return false - } - return self.status == otherPredicate.status - } - - public static func from(status: PredicateStatus) -> NMBPredicateStatus { - switch status { - case .matches: return self.matches - case .doesNotMatch: return self.doesNotMatch - case .fail: return self.fail - } - } - - public static func from(bool success: Bool) -> NMBPredicateStatus { - return self.from(status: PredicateStatus(bool: success)) - } - - public func toSwift() -> PredicateStatus { - switch status { - case NMBPredicateStatus.matches.status: return .matches - case NMBPredicateStatus.doesNotMatch.status: return .doesNotMatch - case NMBPredicateStatus.fail.status: return .fail - default: - internalError("Unhandle status for NMBPredicateStatus") - } - } -} - -extension PredicateStatus { - public func toObjectiveC() -> NMBPredicateStatus { - return NMBPredicateStatus.from(status: self) - } -} - -#endif diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/RaisesException.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/RaisesException.swift index 7c1b2b26c..2bb94094d 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/RaisesException.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/RaisesException.swift @@ -18,7 +18,7 @@ public func raiseException( reason: String? = nil, userInfo: NSDictionary? = nil, closure: ((NSException) -> Void)? = nil -) -> Predicate { +) -> Matcher { return raiseException(named: named?.rawValue, reason: reason, userInfo: userInfo, closure: closure) } @@ -36,8 +36,8 @@ public func raiseException( reason: String? = nil, userInfo: NSDictionary? = nil, closure: ((NSException) -> Void)? = nil -) -> Predicate { - return Predicate { actualExpression in +) -> Matcher { + return Matcher { actualExpression in var exception: NSException? let capture = NMBExceptionCapture(handler: ({ e in exception = e @@ -48,7 +48,7 @@ public func raiseException( _ = try actualExpression.evaluate() } } catch { - return PredicateResult(status: .fail, message: .fail("unexpected error thrown: <\(error)>")) + return MatcherResult(status: .fail, message: .fail("unexpected error thrown: <\(error)>")) } let message = messageForException( @@ -66,7 +66,7 @@ public func raiseException( userInfo: userInfo, closure: closure ) - return PredicateResult(bool: matches, message: message) + return MatcherResult(bool: matches, message: message) } } @@ -141,7 +141,7 @@ internal func exceptionMatchesNonNilFieldsOrClosure( return matches } -public class NMBObjCRaiseExceptionPredicate: NMBPredicate { +public class NMBObjCRaiseExceptionMatcher: NMBMatcher { private let _name: String? private let _reason: String? private let _userInfo: NSDictionary? @@ -153,22 +153,22 @@ public class NMBObjCRaiseExceptionPredicate: NMBPredicate { _userInfo = userInfo _block = block - let predicate: Predicate = raiseException( + let matcher: Matcher = raiseException( named: name, reason: reason, userInfo: userInfo, closure: block ) - let predicateBlock: PredicateBlock = { actualExpression in - return try predicate.satisfies(actualExpression).toObjectiveC() + let matcherBlock: MatcherBlock = { actualExpression in + return try matcher.satisfies(actualExpression).toObjectiveC() } - super.init(predicate: predicateBlock) + super.init(matcher: matcherBlock) } - @objc public var named: (_ name: String) -> NMBObjCRaiseExceptionPredicate { + @objc public var named: (_ name: String) -> NMBObjCRaiseExceptionMatcher { let (reason, userInfo, block) = (_reason, _userInfo, _block) return { name in - return NMBObjCRaiseExceptionPredicate( + return NMBObjCRaiseExceptionMatcher( name: name, reason: reason, userInfo: userInfo, @@ -177,10 +177,10 @@ public class NMBObjCRaiseExceptionPredicate: NMBPredicate { } } - @objc public var reason: (_ reason: String?) -> NMBObjCRaiseExceptionPredicate { + @objc public var reason: (_ reason: String?) -> NMBObjCRaiseExceptionMatcher { let (name, userInfo, block) = (_name, _userInfo, _block) return { reason in - return NMBObjCRaiseExceptionPredicate( + return NMBObjCRaiseExceptionMatcher( name: name, reason: reason, userInfo: userInfo, @@ -189,10 +189,10 @@ public class NMBObjCRaiseExceptionPredicate: NMBPredicate { } } - @objc public var userInfo: (_ userInfo: NSDictionary?) -> NMBObjCRaiseExceptionPredicate { + @objc public var userInfo: (_ userInfo: NSDictionary?) -> NMBObjCRaiseExceptionMatcher { let (name, reason, block) = (_name, _reason, _block) return { userInfo in - return NMBObjCRaiseExceptionPredicate( + return NMBObjCRaiseExceptionMatcher( name: name, reason: reason, userInfo: userInfo, @@ -201,10 +201,10 @@ public class NMBObjCRaiseExceptionPredicate: NMBPredicate { } } - @objc public var satisfyingBlock: (_ block: ((NSException) -> Void)?) -> NMBObjCRaiseExceptionPredicate { + @objc public var satisfyingBlock: (_ block: ((NSException) -> Void)?) -> NMBObjCRaiseExceptionMatcher { let (name, reason, userInfo) = (_name, _reason, _userInfo) return { block in - return NMBObjCRaiseExceptionPredicate( + return NMBObjCRaiseExceptionMatcher( name: name, reason: reason, userInfo: userInfo, @@ -214,9 +214,9 @@ public class NMBObjCRaiseExceptionPredicate: NMBPredicate { } } -extension NMBPredicate { - @objc public class func raiseExceptionMatcher() -> NMBObjCRaiseExceptionPredicate { - return NMBObjCRaiseExceptionPredicate(name: nil, reason: nil, userInfo: nil, block: nil) +extension NMBMatcher { + @objc public class func raiseExceptionMatcher() -> NMBObjCRaiseExceptionMatcher { + return NMBObjCRaiseExceptionMatcher(name: nil, reason: nil, userInfo: nil, block: nil) } } #endif diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAllOf.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAllOf.swift index 50ab64150..30f9045ac 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAllOf.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAllOf.swift @@ -1,17 +1,18 @@ /// A Nimble matcher that succeeds when the actual value matches with all of the matchers /// provided in the variable list of matchers. -public func satisfyAllOf(_ predicates: Predicate...) -> Predicate { - return satisfyAllOf(predicates) +public func satisfyAllOf(_ matchers: Matcher...) -> Matcher { + return satisfyAllOf(matchers) } /// A Nimble matcher that succeeds when the actual value matches with all of the matchers /// provided in the array of matchers. -public func satisfyAllOf(_ predicates: [Predicate]) -> Predicate { - return Predicate.define { actualExpression in +public func satisfyAllOf(_ matchers: [Matcher]) -> Matcher { + return Matcher.define { actualExpression in + let cachedExpression = actualExpression.withCaching() var postfixMessages = [String]() - var status: PredicateStatus = .matches - for predicate in predicates { - let result = try predicate.satisfies(actualExpression) + var status: MatcherStatus = .matches + for matcher in matchers { + let result = try matcher.satisfies(cachedExpression) if result.status == .fail { status = .fail } else if result.status == .doesNotMatch, status != .fail { @@ -21,7 +22,7 @@ public func satisfyAllOf(_ predicates: [Predicate]) -> Predicate { } var msg: ExpectationMessage - if let actualValue = try actualExpression.evaluate() { + if let actualValue = try cachedExpression.evaluate() { msg = .expectedCustomValueTo( "match all of: " + postfixMessages.joined(separator: ", and "), actual: "\(actualValue)" @@ -32,33 +33,84 @@ public func satisfyAllOf(_ predicates: [Predicate]) -> Predicate { ) } - return PredicateResult(status: status, message: msg) + return MatcherResult(status: status, message: msg) } } -public func && (left: Predicate, right: Predicate) -> Predicate { +public func && (left: Matcher, right: Matcher) -> Matcher { return satisfyAllOf(left, right) } +// There's a compiler bug in swift 5.7.2 and earlier (xcode 14.2 and earlier) +// which causes runtime crashes when you use `[any AsyncableMatcher]`. +// https://github.com/apple/swift/issues/61403 +#if swift(>=5.8.0) +/// A Nimble matcher that succeeds when the actual value matches with all of the matchers +/// provided in the variable list of matchers. +@available(macOS 13.0.0, iOS 16.0.0, tvOS 16.0.0, watchOS 9.0.0, *) +public func satisfyAllOf(_ matchers: any AsyncableMatcher...) -> AsyncMatcher { + return satisfyAllOf(matchers) +} + +/// A Nimble matcher that succeeds when the actual value matches with all of the matchers +/// provided in the array of matchers. +@available(macOS 13.0.0, iOS 16.0.0, tvOS 16.0.0, watchOS 9.0.0, *) +public func satisfyAllOf(_ matchers: [any AsyncableMatcher]) -> AsyncMatcher { + return AsyncMatcher.define { actualExpression in + let cachedExpression = actualExpression.withCaching() + var postfixMessages = [String]() + var status: MatcherStatus = .matches + for matcher in matchers { + let result = try await matcher.satisfies(cachedExpression) + if result.status == .fail { + status = .fail + } else if result.status == .doesNotMatch, status != .fail { + status = .doesNotMatch + } + postfixMessages.append("{\(result.message.expectedMessage)}") + } + + var msg: ExpectationMessage + if let actualValue = try await cachedExpression.evaluate() { + msg = .expectedCustomValueTo( + "match all of: " + postfixMessages.joined(separator: ", and "), + actual: "\(actualValue)" + ) + } else { + msg = .expectedActualValueTo( + "match all of: " + postfixMessages.joined(separator: ", and ") + ) + } + + return MatcherResult(status: status, message: msg) + } +} + +@available(macOS 13.0.0, iOS 16.0.0, tvOS 16.0.0, watchOS 9.0.0, *) +public func && (left: some AsyncableMatcher, right: some AsyncableMatcher) -> AsyncMatcher { + return satisfyAllOf(left, right) +} +#endif // swift(>=5.8.0) + #if canImport(Darwin) import class Foundation.NSObject -extension NMBPredicate { - @objc public class func satisfyAllOfMatcher(_ predicates: [NMBPredicate]) -> NMBPredicate { - return NMBPredicate { actualExpression in - if predicates.isEmpty { - return NMBPredicateResult( - status: NMBPredicateStatus.fail, +extension NMBMatcher { + @objc public class func satisfyAllOfMatcher(_ matchers: [NMBMatcher]) -> NMBMatcher { + return NMBMatcher { actualExpression in + if matchers.isEmpty { + return NMBMatcherResult( + status: NMBMatcherStatus.fail, message: NMBExpectationMessage( fail: "satisfyAllOf must be called with at least one matcher" ) ) } - var elementEvaluators = [Predicate]() - for predicate in predicates { - let elementEvaluator = Predicate { expression in - return predicate.satisfies({ try expression.evaluate() }, location: actualExpression.location).toSwift() + var elementEvaluators = [Matcher]() + for matcher in matchers { + let elementEvaluator = Matcher { expression in + return matcher.satisfies({ try expression.evaluate() }, location: actualExpression.location).toSwift() } elementEvaluators.append(elementEvaluator) diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift index bd027d2f8..56ffdd10d 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift @@ -1,64 +1,116 @@ /// A Nimble matcher that succeeds when the actual value matches with any of the matchers /// provided in the variable list of matchers. -public func satisfyAnyOf(_ predicates: Predicate...) -> Predicate { - return satisfyAnyOf(predicates) +public func satisfyAnyOf(_ matchers: Matcher...) -> Matcher { + return satisfyAnyOf(matchers) } /// A Nimble matcher that succeeds when the actual value matches with any of the matchers /// provided in the array of matchers. -public func satisfyAnyOf(_ predicates: [Predicate]) -> Predicate { - return Predicate.define { actualExpression in - var postfixMessages = [String]() - var status: PredicateStatus = .doesNotMatch - for predicate in predicates { - let result = try predicate.satisfies(actualExpression) - if result.status == .fail { - status = .fail - } else if result.status == .matches, status != .fail { - status = .matches - } - postfixMessages.append("{\(result.message.expectedMessage)}") +public func satisfyAnyOf(_ matchers: [Matcher]) -> Matcher { + return Matcher.define { actualExpression in + let cachedExpression = actualExpression.withCaching() + var postfixMessages = [String]() + var status: MatcherStatus = .doesNotMatch + for matcher in matchers { + let result = try matcher.satisfies(cachedExpression) + if result.status == .fail { + status = .fail + } else if result.status == .matches, status != .fail { + status = .matches } + postfixMessages.append("{\(result.message.expectedMessage)}") + } - var msg: ExpectationMessage - if let actualValue = try actualExpression.evaluate() { - msg = .expectedCustomValueTo( - "match one of: " + postfixMessages.joined(separator: ", or "), - actual: "\(actualValue)" - ) - } else { - msg = .expectedActualValueTo( - "match one of: " + postfixMessages.joined(separator: ", or ") - ) + var msg: ExpectationMessage + if let actualValue = try cachedExpression.evaluate() { + msg = .expectedCustomValueTo( + "match one of: " + postfixMessages.joined(separator: ", or "), + actual: "\(actualValue)" + ) + } else { + msg = .expectedActualValueTo( + "match one of: " + postfixMessages.joined(separator: ", or ") + ) + } + + return MatcherResult(status: status, message: msg) + } +} + +public func || (left: Matcher, right: Matcher) -> Matcher { + return satisfyAnyOf(left, right) +} + +// There's a compiler bug in swift 5.7.2 and earlier (xcode 14.2 and earlier) +// which causes runtime crashes when you use `[any AsyncableMatcher]`. +// https://github.com/apple/swift/issues/61403 +#if swift(>=5.8.0) +/// A Nimble matcher that succeeds when the actual value matches with any of the matchers +/// provided in the variable list of matchers. +@available(macOS 13.0.0, iOS 16.0.0, tvOS 16.0.0, watchOS 9.0.0, *) +public func satisfyAnyOf(_ matchers: any AsyncableMatcher...) -> AsyncMatcher { + return satisfyAnyOf(matchers) +} + +/// A Nimble matcher that succeeds when the actual value matches with any of the matchers +/// provided in the array of matchers. +@available(macOS 13.0.0, iOS 16.0.0, tvOS 16.0.0, watchOS 9.0.0, *) +public func satisfyAnyOf(_ matchers: [any AsyncableMatcher]) -> AsyncMatcher { + return AsyncMatcher.define { actualExpression in + let cachedExpression = actualExpression.withCaching() + var postfixMessages = [String]() + var status: MatcherStatus = .doesNotMatch + for matcher in matchers { + let result = try await matcher.satisfies(cachedExpression) + if result.status == .fail { + status = .fail + } else if result.status == .matches, status != .fail { + status = .matches } + postfixMessages.append("{\(result.message.expectedMessage)}") + } - return PredicateResult(status: status, message: msg) + var msg: ExpectationMessage + if let actualValue = try await cachedExpression.evaluate() { + msg = .expectedCustomValueTo( + "match one of: " + postfixMessages.joined(separator: ", or "), + actual: "\(actualValue)" + ) + } else { + msg = .expectedActualValueTo( + "match one of: " + postfixMessages.joined(separator: ", or ") + ) } + + return MatcherResult(status: status, message: msg) + } } -public func || (left: Predicate, right: Predicate) -> Predicate { +@available(macOS 13.0.0, iOS 16.0.0, tvOS 16.0.0, watchOS 9.0.0, *) +public func || (left: some AsyncableMatcher, right: some AsyncableMatcher) -> AsyncMatcher { return satisfyAnyOf(left, right) } +#endif // swift(>=5.8.0) #if canImport(Darwin) import class Foundation.NSObject -extension NMBPredicate { - @objc public class func satisfyAnyOfMatcher(_ predicates: [NMBPredicate]) -> NMBPredicate { - return NMBPredicate { actualExpression in - if predicates.isEmpty { - return NMBPredicateResult( - status: NMBPredicateStatus.fail, +extension NMBMatcher { + @objc public class func satisfyAnyOfMatcher(_ matchers: [NMBMatcher]) -> NMBMatcher { + return NMBMatcher { actualExpression in + if matchers.isEmpty { + return NMBMatcherResult( + status: NMBMatcherStatus.fail, message: NMBExpectationMessage( fail: "satisfyAnyOf must be called with at least one matcher" ) ) } - var elementEvaluators = [Predicate]() - for predicate in predicates { - let elementEvaluator = Predicate { expression in - return predicate.satisfies({ try expression.evaluate() }, location: actualExpression.location).toSwift() + var elementEvaluators = [Matcher]() + for matcher in matchers { + let elementEvaluator = Matcher { expression in + return matcher.satisfies({ try expression.evaluate() }, location: actualExpression.location).toSwift() } elementEvaluators.append(elementEvaluator) diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift index 34a94fb3f..b0c22457c 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift @@ -1,9 +1,9 @@ -#if canImport(CwlPreconditionTesting) && (os(macOS) || os(iOS)) +// swiftlint:disable all +#if canImport(CwlPreconditionTesting) && (os(macOS) || os(iOS) || os(visionOS)) import CwlPreconditionTesting #elseif canImport(CwlPosixPreconditionTesting) import CwlPosixPreconditionTesting #elseif canImport(Glibc) -// swiftlint:disable all import Glibc // This function is called from the signal handler to shut down the thread and return 1 (indicating a SIGILL was received). @@ -79,14 +79,12 @@ public func catchBadInstruction(block: @escaping () -> Void) -> BadInstructionEx return caught ? BadInstructionException() : nil } -// swiftlint:enable all #endif -public func throwAssertion() -> Predicate { - return Predicate { actualExpression in - #if os(watchOS) - fatalError("Nimble currently doesn't support watchOS.") - #elseif (arch(x86_64) || arch(arm64)) && (canImport(Darwin) || canImport(Glibc)) +public func throwAssertion() -> Matcher { + return Matcher { actualExpression in + #if (arch(x86_64) || arch(arm64)) + #if (canImport(CwlPreconditionTesting) || canImport(CwlPosixPreconditionTesting) || canImport(Glibc)) let message = ExpectationMessage.expectedTo("throw an assertion") var actualError: Error? let caughtException: BadInstructionException? = catchBadInstruction { @@ -105,6 +103,21 @@ public func throwAssertion() -> Predicate { print() NimbleEnvironment.activeInstance.suppressTVOSAssertionWarning = true } + #elseif os(watchOS) + if !NimbleEnvironment.activeInstance.suppressWatchOSAssertionWarning { + print() + print("[Nimble Warning]: If you're getting stuck on a debugger breakpoint for a " + + "fatal error while using throwAssertion(), please disable 'Debug Executable' " + + "in your scheme. Go to 'Edit Scheme > Test > Info' and uncheck " + + "'Debug Executable'. If you've already done that, suppress this warning " + + "by setting `NimbleEnvironment.activeInstance.suppressWatchOSAssertionWarning = true`. " + + "This is required because the standard methods of catching assertions " + + "(mach APIs) are unavailable for watchOS. Instead, the same mechanism the " + + "debugger uses is the fallback method for watchOS." + ) + print() + NimbleEnvironment.activeInstance.suppressWatchOSAssertionWarning = true + } #endif do { _ = try actualExpression.evaluate() @@ -114,13 +127,21 @@ public func throwAssertion() -> Predicate { } if let actualError = actualError { - return PredicateResult( + return MatcherResult( bool: false, message: message.appended(message: "; threw error instead <\(actualError)>") ) } else { - return PredicateResult(bool: caughtException != nil, message: message) + return MatcherResult(bool: caughtException != nil, message: message) } + #else + let message = """ + The throwAssertion Nimble matcher does not support your platform. + Note: throwAssertion no longer works on tvOS or watchOS platforms when you use Nimble with Cocoapods. + You will have to use Nimble with Swift Package Manager or Carthage. + """ + fatalError(message) + #endif #else let message = """ The throwAssertion Nimble matcher can only run on x86_64 and arm64 platforms. @@ -131,3 +152,4 @@ public func throwAssertion() -> Predicate { #endif } } +// swiftlint:enable all diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowError.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowError.swift index d5ac732e2..32c2f6c1d 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowError.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/ThrowError.swift @@ -9,8 +9,8 @@ /// /// nil arguments indicates that the matcher should not attempt to match against /// that parameter. -public func throwError() -> Predicate { - return Predicate { actualExpression in +public func throwError() -> Matcher { + return Matcher { actualExpression in var actualError: Error? do { _ = try actualExpression.evaluate() @@ -19,12 +19,12 @@ public func throwError() -> Predicate { } if let actualError = actualError { - return PredicateResult( + return MatcherResult( bool: true, message: .expectedCustomValueTo("throw any error", actual: "<\(actualError)>") ) } else { - return PredicateResult( + return MatcherResult( bool: false, message: .expectedCustomValueTo("throw any error", actual: "no error") ) @@ -43,8 +43,8 @@ public func throwError() -> Predicate { /// /// nil arguments indicates that the matcher should not attempt to match against /// that parameter. -public func throwError(_ error: T, closure: ((Error) -> Void)? = nil) -> Predicate { - return Predicate { actualExpression in +public func throwError(_ error: T, closure: ((Error) -> Void)? = nil) -> Matcher { + return Matcher { actualExpression in var actualError: Error? do { _ = try actualExpression.evaluate() @@ -74,7 +74,7 @@ public func throwError(_ error: T, closure: ((Error) -> Void)? = } } - return PredicateResult(bool: matches, message: message) + return MatcherResult(bool: matches, message: message) } } @@ -89,8 +89,8 @@ public func throwError(_ error: T, closure: ((Error) -> Void)? = /// /// nil arguments indicates that the matcher should not attempt to match against /// that parameter. -public func throwError(_ error: T, closure: ((T) -> Void)? = nil) -> Predicate { - return Predicate { actualExpression in +public func throwError(_ error: T, closure: ((T) -> Void)? = nil) -> Matcher { + return Matcher { actualExpression in var actualError: Error? do { _ = try actualExpression.evaluate() @@ -120,7 +120,7 @@ public func throwError(_ error: T, closure: ((T) -> V } } - return PredicateResult(bool: matches, message: message) + return MatcherResult(bool: matches, message: message) } } @@ -138,8 +138,8 @@ public func throwError(_ error: T, closure: ((T) -> V public func throwError( errorType: T.Type, closure: ((T) -> Void)? = nil -) -> Predicate { - return Predicate { actualExpression in +) -> Matcher { + return Matcher { actualExpression in var actualError: Error? do { _ = try actualExpression.evaluate() @@ -186,7 +186,7 @@ public func throwError( } } - return PredicateResult(bool: matches, message: message) + return MatcherResult(bool: matches, message: message) } } @@ -197,8 +197,8 @@ public func throwError( /// values of the existential type `Error` in the closure. /// /// The closure only gets called when an error was thrown. -public func throwError(closure: @escaping ((Error) -> Void)) -> Predicate { - return Predicate { actualExpression in +public func throwError(closure: @escaping ((Error) -> Void)) -> Matcher { + return Matcher { actualExpression in var actualError: Error? do { _ = try actualExpression.evaluate() @@ -221,7 +221,7 @@ public func throwError(closure: @escaping ((Error) -> Void)) -> Predicate(closure: @escaping ((Error) -> Void)) -> Predicate(closure: @escaping ((T) -> Void)) -> Predicate { - return Predicate { actualExpression in +public func throwError(closure: @escaping ((T) -> Void)) -> Matcher { + return Matcher { actualExpression in var actualError: Error? do { _ = try actualExpression.evaluate() @@ -256,6 +256,6 @@ public func throwError(closure: @escaping ((T) -> Void)) -> Predi } } - return PredicateResult(bool: matches, message: message) + return MatcherResult(bool: matches, message: message) } } diff --git a/Example/Pods/Nimble/Sources/Nimble/Matchers/ToSucceed.swift b/Example/Pods/Nimble/Sources/Nimble/Matchers/ToSucceed.swift index d9c616a68..2f22991aa 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Matchers/ToSucceed.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Matchers/ToSucceed.swift @@ -14,21 +14,21 @@ public enum ToSucceedResult { Return `.succeeded` when the validation succeeds. Return `.failed` with a failure reason when the validation fails. */ -public func succeed() -> Predicate { - return Predicate.define { actualExpression in +public func succeed() -> Matcher { + return Matcher.define { actualExpression in let optActual = try actualExpression.evaluate() guard let actual = optActual else { - return PredicateResult(status: .fail, message: .fail("expected a ToSucceedResult, got ")) + return MatcherResult(status: .fail, message: .fail("expected a ToSucceedResult, got ")) } switch actual { case .succeeded: - return PredicateResult( + return MatcherResult( bool: true, message: .expectedCustomValueTo("succeed", actual: "") ) case .failed(let reason): - return PredicateResult( + return MatcherResult( bool: false, message: .expectedCustomValueTo("succeed", actual: " because <\(reason)>") ) diff --git a/Example/Pods/Nimble/Sources/Nimble/Nimble.h b/Example/Pods/Nimble/Sources/Nimble/Nimble.h index dc68ded76..9fb6ca315 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Nimble.h +++ b/Example/Pods/Nimble/Sources/Nimble/Nimble.h @@ -1,11 +1,23 @@ #import + +// When running below Xcode 15, TARGET_OS_VISION is not defined. Since the project has TREAT_WARNINGS_AS_ERROS enabled +// we need to workaround this warning. +#ifndef TARGET_OS_VISION + #define TARGET_OS_VISION 0 +#endif /* TARGET_OS_VISION */ + #import #import #import -#if TARGET_OS_OSX || TARGET_OS_IOS - #import - #import +#if TARGET_OS_OSX || TARGET_OS_IOS || TARGET_OS_VISION +#if COCOAPODS + #import + #import +#else + #import "CwlMachBadInstructionHandler.h" + #import "CwlCatchException.h" +#endif #endif FOUNDATION_EXPORT double NimbleVersionNumber; diff --git a/Example/Pods/Nimble/Sources/Nimble/Polling+AsyncAwait.swift b/Example/Pods/Nimble/Sources/Nimble/Polling+AsyncAwait.swift new file mode 100644 index 000000000..2238fb425 --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/Polling+AsyncAwait.swift @@ -0,0 +1,600 @@ +// swiftlint:disable file_length +#if !os(WASI) + +import Dispatch + +@MainActor +internal func execute(_ expression: AsyncExpression, style: ExpectationStyle, to: String, description: String?, matcherExecutor: () async throws -> MatcherResult) async -> (Bool, FailureMessage) { + let msg = FailureMessage() + msg.userDescription = description + msg.to = to + do { + let result = try await matcherExecutor() + result.message.update(failureMessage: msg) + if msg.actualValue == "" { + msg.actualValue = "<\(stringify(try await expression.evaluate()))>" + } + return (result.toBoolean(expectation: style), msg) + } catch let error { + msg.stringValue = "unexpected error thrown: <\(error)>" + return (false, msg) + } +} + +internal actor Poller { + private var lastMatcherResult: MatcherResult? + + init() {} + + // swiftlint:disable:next function_parameter_count + func poll(expression: AsyncExpression, + style: ExpectationStyle, + matchStyle: AsyncMatchStyle, + timeout: NimbleTimeInterval, + poll: NimbleTimeInterval, + fnName: String, + matcherRunner: @escaping () async throws -> MatcherResult) async -> MatcherResult { + let fnName = "expect(...).\(fnName)(...)" + let result = await pollBlock( + pollInterval: poll, + timeoutInterval: timeout, + sourceLocation: expression.location, + fnName: fnName) { + if self.updateMatcherResult(result: try await matcherRunner()) + .toBoolean(expectation: style) { + if matchStyle.isContinous { + return .incomplete + } + return .finished(true) + } else { + if matchStyle.isContinous { + return .finished(false) + } else { + return .incomplete + } + } + } + return processPollResult(result.toPollResult(), matchStyle: matchStyle, lastMatcherResult: lastMatcherResult, fnName: fnName) + } + + func updateMatcherResult(result: MatcherResult) -> MatcherResult { + self.lastMatcherResult = result + return result + } +} + +// swiftlint:disable:next function_parameter_count +internal func poll( + expression: AsyncExpression, + style: ExpectationStyle, + matchStyle: AsyncMatchStyle, + timeout: NimbleTimeInterval, + poll: NimbleTimeInterval, + fnName: String, + matcherRunner: @escaping () async throws -> MatcherResult +) async -> MatcherResult { + let poller = Poller() + return await poller.poll( + expression: expression, + style: style, + matchStyle: matchStyle, + timeout: timeout, + poll: poll, + fnName: fnName, + matcherRunner: matcherRunner + ) +} + +extension SyncExpectation { + // MARK: - With Synchronous Matchers + /// Tests the actual value using a matcher to match by checking continuously + /// at each pollInterval until the timeout is reached. + @discardableResult + public func toEventually(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let asyncExpression = expression.toAsyncExpression() + + let (pass, msg) = await execute( + asyncExpression, + style: .toMatch, + to: "to eventually", + description: description) { + await poll( + expression: asyncExpression, + style: .toMatch, + matchStyle: .eventually, + timeout: timeout, + poll: pollInterval, + fnName: "toEventually") { @MainActor in + try matcher.satisfies(expression.withoutCaching()) + } + } + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + @discardableResult + public func toEventuallyNot(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let asyncExpression = expression.toAsyncExpression() + + let (pass, msg) = await execute( + asyncExpression, + style: .toNotMatch, + to: "to eventually not", + description: description) { + await poll( + expression: asyncExpression, + style: .toNotMatch, + matchStyle: .eventually, + timeout: timeout, + poll: pollInterval, + fnName: "toEventuallyNot") { @MainActor in + try matcher.satisfies(expression.withoutCaching()) + } + } + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toEventuallyNot() + @discardableResult + public func toNotEventually(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + return await toEventuallyNot(matcher, timeout: timeout, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + @discardableResult + public func toNever(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + let asyncExpression = expression.toAsyncExpression() + + let (pass, msg) = await execute( + asyncExpression, + style: .toNotMatch, + to: "to never", + description: description) { + await poll( + expression: asyncExpression, + style: .toNotMatch, + matchStyle: .never, + timeout: until, + poll: pollInterval, + fnName: "toNever") { @MainActor in + try matcher.satisfies(expression.withoutCaching()) + } + } + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toNever() + @discardableResult + public func neverTo(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + return await toNever(matcher, until: until, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + @discardableResult + public func toAlways(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + let asyncExpression = expression.toAsyncExpression() + + let (pass, msg) = await execute( + asyncExpression, + style: .toMatch, + to: "to always", + description: description) { + await poll( + expression: asyncExpression, + style: .toMatch, + matchStyle: .always, + timeout: until, + poll: pollInterval, + fnName: "toAlways") { @MainActor in + try matcher.satisfies(expression.withoutCaching()) + } + } + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + /// + /// Alias of toAlways() + @discardableResult + public func alwaysTo(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + return await toAlways(matcher, until: until, pollInterval: pollInterval, description: description) + } + + // MARK: - With AsyncMatchers + /// Tests the actual value using a matcher to match by checking continuously + /// at each pollInterval until the timeout is reached. + @discardableResult + public func toEventually(_ matcher: AsyncMatcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let asyncExpression = expression.toAsyncExpression() + + let (pass, msg) = await execute( + asyncExpression, + style: .toMatch, + to: "to eventually", + description: description) { + await poll( + expression: asyncExpression, + style: .toMatch, + matchStyle: .eventually, + timeout: timeout, + poll: pollInterval, + fnName: "toEventually") { @MainActor in + try await matcher.satisfies(expression.withoutCaching().toAsyncExpression()) + } + } + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + @discardableResult + public func toEventuallyNot(_ matcher: AsyncMatcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let asyncExpression = expression.toAsyncExpression() + + let (pass, msg) = await execute( + asyncExpression, + style: .toNotMatch, + to: "to eventually not", + description: description) { + await poll( + expression: asyncExpression, + style: .toNotMatch, + matchStyle: .eventually, + timeout: timeout, + poll: pollInterval, + fnName: "toEventuallyNot") { @MainActor in + try await matcher.satisfies(expression.withoutCaching().toAsyncExpression()) + } + } + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toEventuallyNot() + @discardableResult + public func toNotEventually(_ matcher: AsyncMatcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + return await toEventuallyNot(matcher, timeout: timeout, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + @discardableResult + public func toNever(_ matcher: AsyncMatcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + let asyncExpression = expression.toAsyncExpression() + + let (pass, msg) = await execute( + asyncExpression, + style: .toNotMatch, + to: "to never", + description: description) { + await poll( + expression: asyncExpression, + style: .toNotMatch, + matchStyle: .never, + timeout: until, + poll: pollInterval, + fnName: "toNever") { @MainActor in + try await matcher.satisfies(expression.withoutCaching().toAsyncExpression()) + } + } + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toNever() + @discardableResult + public func neverTo(_ matcher: AsyncMatcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + return await toNever(matcher, until: until, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + @discardableResult + public func toAlways(_ matcher: AsyncMatcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + let asyncExpression = expression.toAsyncExpression() + + let (pass, msg) = await execute( + asyncExpression, + style: .toMatch, + to: "to always", + description: description) { + await poll( + expression: asyncExpression, + style: .toMatch, + matchStyle: .always, + timeout: until, + poll: pollInterval, + fnName: "toAlways") { @MainActor in + try await matcher.satisfies(expression.withoutCaching().toAsyncExpression()) + } + } + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + /// + /// Alias of toAlways() + @discardableResult + public func alwaysTo(_ matcher: AsyncMatcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + return await toAlways(matcher, until: until, pollInterval: pollInterval, description: description) + } +} + +extension AsyncExpectation { + // MARK: - With Synchronous Matchers + /// Tests the actual value using a matcher to match by checking continuously + /// at each pollInterval until the timeout is reached. + @discardableResult + public func toEventually(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = await execute( + expression, + style: .toMatch, + to: "to eventually", + description: description) { + await poll( + expression: expression, + style: .toMatch, + matchStyle: .eventually, + timeout: timeout, + poll: pollInterval, + fnName: "toEventually") { + try matcher.satisfies(await expression.withoutCaching().toSynchronousExpression()) + } + } + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + @discardableResult + public func toEventuallyNot(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = await execute( + expression, + style: .toNotMatch, + to: "to eventually not", + description: description) { + await poll( + expression: expression, + style: .toNotMatch, + matchStyle: .eventually, + timeout: timeout, + poll: pollInterval, + fnName: "toEventuallyNot") { + try matcher.satisfies(await expression.withoutCaching().toSynchronousExpression()) + } + } + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toEventuallyNot() + @discardableResult + public func toNotEventually(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + return await toEventuallyNot(matcher, timeout: timeout, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + @discardableResult + public func toNever(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = await execute( + expression, + style: .toNotMatch, + to: "to never", + description: description) { + await poll( + expression: expression, + style: .toNotMatch, + matchStyle: .never, + timeout: until, + poll: pollInterval, + fnName: "toNever") { + try matcher.satisfies(await expression.withoutCaching().toSynchronousExpression()) + } + } + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toNever() + @discardableResult + public func neverTo(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + return await toNever(matcher, until: until, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + @discardableResult + public func toAlways(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = await execute( + expression, + style: .toMatch, + to: "to always", + description: description) { + await poll( + expression: expression, + style: .toMatch, + matchStyle: .always, + timeout: until, + poll: pollInterval, + fnName: "toAlways") { + try matcher.satisfies(await expression.withoutCaching().toSynchronousExpression()) + } + } + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + /// + /// Alias of toAlways() + @discardableResult + public func alwaysTo(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + return await toAlways(matcher, until: until, pollInterval: pollInterval, description: description) + } + + // MARK: - With AsyncMatchers + /// Tests the actual value using a matcher to match by checking continuously + /// at each pollInterval until the timeout is reached. + @discardableResult + public func toEventually(_ matcher: AsyncMatcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = await execute( + expression, + style: .toMatch, + to: "to eventually", + description: description) { + await poll( + expression: expression, + style: .toMatch, + matchStyle: .eventually, + timeout: timeout, + poll: pollInterval, + fnName: "toEventually") { + try await matcher.satisfies(expression.withoutCaching()) + } + } + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + @discardableResult + public func toEventuallyNot(_ matcher: AsyncMatcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = await execute( + expression, + style: .toNotMatch, + to: "to eventually not", + description: description) { + await poll( + expression: expression, + style: .toNotMatch, + matchStyle: .eventually, + timeout: timeout, + poll: pollInterval, + fnName: "toEventuallyNot") { + try await matcher.satisfies(expression.withoutCaching()) + } + } + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toEventuallyNot() + @discardableResult + public func toNotEventually(_ matcher: AsyncMatcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + return await toEventuallyNot(matcher, timeout: timeout, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + @discardableResult + public func toNever(_ matcher: AsyncMatcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = await execute( + expression, + style: .toNotMatch, + to: "to never", + description: description) { + await poll( + expression: expression, + style: .toNotMatch, + matchStyle: .never, + timeout: until, + poll: pollInterval, + fnName: "toNever") { + try await matcher.satisfies(expression.withoutCaching()) + } + } + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toNever() + @discardableResult + public func neverTo(_ matcher: AsyncMatcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + return await toNever(matcher, until: until, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + @discardableResult + public func toAlways(_ matcher: AsyncMatcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = await execute( + expression, + style: .toMatch, + to: "to always", + description: description) { + await poll( + expression: expression, + style: .toMatch, + matchStyle: .always, + timeout: until, + poll: pollInterval, + fnName: "toAlways") { + try await matcher.satisfies(expression.withoutCaching()) + } + } + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + /// + /// Alias of toAlways() + @discardableResult + public func alwaysTo(_ matcher: AsyncMatcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async -> Self { + return await toAlways(matcher, until: until, pollInterval: pollInterval, description: description) + } +} + +#endif // #if !os(WASI) diff --git a/Example/Pods/Nimble/Sources/Nimble/Polling+Require.swift b/Example/Pods/Nimble/Sources/Nimble/Polling+Require.swift new file mode 100644 index 000000000..673ce70b9 --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/Polling+Require.swift @@ -0,0 +1,762 @@ +// swiftlint:disable file_length +#if !os(WASI) + +import Dispatch + +extension SyncRequirement { + // MARK: - Dispatch Polling with Synchronous Matchers + /// Require the actual value using a matcher to match by checking continuously + /// at each pollInterval until the timeout is reached. + /// + /// @discussion + /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function + /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. + /// + /// @warning + /// This form of `toEventually` does not work in any kind of async context. Use the async form of `toEventually` if you are running tests in an async context. + @available(*, noasync, message: "the sync variant of `toEventually` does not work in async contexts. Use the async variant as a drop-in replacement") + @discardableResult + public func toEventually(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = execute( + expression, + .toMatch, + poll( + style: .toMatch, + matchStyle: .eventually, + matcher: matcher, + timeout: timeout, + poll: pollInterval, + fnName: "toEventually" + ), + to: "to eventually", + description: description, + captureExceptions: false + ) + return try verify(pass, msg, try expression.evaluate()) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// @discussion + /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function + /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. + /// + /// @warning + /// This form of `toEventuallyNot` does not work in any kind of async context. + /// Use the async form of `toEventuallyNot` if you are running tests in an async context. + @available(*, noasync, message: "the sync variant of `toEventuallyNot` does not work in async contexts. Use the async variant as a drop-in replacement") + @discardableResult + public func toEventuallyNot(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = execute( + expression, + .toNotMatch, + poll( + style: .toNotMatch, + matchStyle: .eventually, + matcher: matcher, + timeout: timeout, + poll: pollInterval, + fnName: "toEventuallyNot" + ), + to: "to eventually not", + description: description, + captureExceptions: false + ) + return try verify(pass, msg, try expression.evaluate()) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toEventuallyNot() + /// + /// @discussion + /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function + /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. + /// + /// @warning + /// This form of `toNotEventually` does not work in any kind of async context. + /// Use the async form of `toNotEventually` if you are running tests in an async context. + @available(*, noasync, message: "the sync variant of `toNotEventually` does not work in async contexts. Use the async variant as a drop-in replacement") + @discardableResult + public func toNotEventually(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) throws -> Value { + return try toEventuallyNot(matcher, timeout: timeout, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// @discussion + /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function + /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. + /// + /// @warning + /// This form of `toNever` does not work in any kind of async context. + /// Use the async form of `toNever` if you are running tests in an async context. + @available(*, noasync, message: "the sync variant of `toNever` does not work in async contexts. Use the async variant as a drop-in replacement") + @discardableResult + public func toNever(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = execute( + expression, + .toNotMatch, + poll( + style: .toNotMatch, + matchStyle: .never, + matcher: matcher, + timeout: until, + poll: pollInterval, + fnName: "toNever" + ), + to: "to never", + description: description, + captureExceptions: false + ) + return try verify(pass, msg, try expression.evaluate()) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toNever() + /// + /// @discussion + /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function + /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. + /// + /// @warning + /// This form of `neverTo` does not work in any kind of async context. + /// Use the async form of `neverTo` if you are running tests in an async context. + @available(*, noasync, message: "the sync variant of `neverTo` does not work in async contexts. Use the async variant as a drop-in replacement") + @discardableResult + public func neverTo(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) throws -> Value { + return try toNever(matcher, until: until, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + /// + /// @discussion + /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function + /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. + /// + /// @warning + /// This form of `toAlways` does not work in any kind of async context. + /// Use the async form of `toAlways` if you are running tests in an async context. + @available(*, noasync, message: "the sync variant of `toAlways` does not work in async contexts. Use the async variant as a drop-in replacement") + @discardableResult + public func toAlways(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = execute( + expression, + .toMatch, + poll( + style: .toMatch, + matchStyle: .always, + matcher: matcher, + timeout: until, + poll: pollInterval, + fnName: "toAlways" + ), + to: "to always", + description: description, + captureExceptions: false + ) + return try verify(pass, msg, try expression.evaluate()) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + /// + /// Alias of toAlways() + /// + /// @discussion + /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function + /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. + /// + /// @warning + /// This form of `alwaysTo` does not work in any kind of async context. + /// Use the async form of `alwaysTo` if you are running tests in an async context. + @available(*, noasync, message: "the sync variant of `alwaysTo` does not work in async contexts. Use the async variant as a drop-in replacement") + @discardableResult + public func alwaysTo(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) throws -> Value { + return try toAlways(matcher, until: until, pollInterval: pollInterval, description: description) + } + + // MARK: - Async Polling with Synchronous Matchers + /// Tests the actual value using a matcher to match by checking continuously + /// at each pollInterval until the timeout is reached. + @discardableResult + public func toEventually(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let asyncExpression = expression.toAsyncExpression() + + let (pass, msg) = await execute( + asyncExpression, + style: .toMatch, + to: "to eventually", + description: description) { + await poll( + expression: asyncExpression, + style: .toMatch, + matchStyle: .eventually, + timeout: timeout, + poll: pollInterval, + fnName: "toEventually") { @MainActor in + try matcher.satisfies(expression.withoutCaching()) + } + } + return try verify(pass, msg, try await asyncExpression.evaluate()) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + @discardableResult + public func toEventuallyNot(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let asyncExpression = expression.toAsyncExpression() + + let (pass, msg) = await execute( + asyncExpression, + style: .toNotMatch, + to: "to eventually not", + description: description) { + await poll( + expression: asyncExpression, + style: .toNotMatch, + matchStyle: .eventually, + timeout: timeout, + poll: pollInterval, + fnName: "toEventuallyNot") { @MainActor in + try matcher.satisfies(expression.withoutCaching()) + } + } + return try verify(pass, msg, try await asyncExpression.evaluate()) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toEventuallyNot() + @discardableResult + public func toNotEventually(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + return try await toEventuallyNot(matcher, timeout: timeout, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + @discardableResult + public func toNever(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + let asyncExpression = expression.toAsyncExpression() + + let (pass, msg) = await execute( + asyncExpression, + style: .toNotMatch, + to: "to never", + description: description) { + await poll( + expression: asyncExpression, + style: .toNotMatch, + matchStyle: .never, + timeout: until, + poll: pollInterval, + fnName: "toNever") { @MainActor in + try matcher.satisfies(expression.withoutCaching()) + } + } + return try verify(pass, msg, try await asyncExpression.evaluate()) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toNever() + @discardableResult + public func neverTo(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + return try await toNever(matcher, until: until, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + @discardableResult + public func toAlways(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + let asyncExpression = expression.toAsyncExpression() + + let (pass, msg) = await execute( + asyncExpression, + style: .toMatch, + to: "to always", + description: description) { + await poll( + expression: asyncExpression, + style: .toMatch, + matchStyle: .always, + timeout: until, + poll: pollInterval, + fnName: "toAlways") { @MainActor in + try matcher.satisfies(expression.withoutCaching()) + } + } + return try verify(pass, msg, try await asyncExpression.evaluate()) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + /// + /// Alias of toAlways() + @discardableResult + public func alwaysTo(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + return try await toAlways(matcher, until: until, pollInterval: pollInterval, description: description) + } + + // MARK: - Async Polling With AsyncMatchers + /// Tests the actual value using a matcher to match by checking continuously + /// at each pollInterval until the timeout is reached. + @discardableResult + public func toEventually(_ matcher: AsyncMatcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let asyncExpression = expression.toAsyncExpression() + + let (pass, msg) = await execute( + asyncExpression, + style: .toMatch, + to: "to eventually", + description: description) { + await poll( + expression: asyncExpression, + style: .toMatch, + matchStyle: .eventually, + timeout: timeout, + poll: pollInterval, + fnName: "toEventually") { @MainActor in + try await matcher.satisfies(expression.withoutCaching().toAsyncExpression()) + } + } + return try verify(pass, msg, try await asyncExpression.evaluate()) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + @discardableResult + public func toEventuallyNot(_ matcher: AsyncMatcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let asyncExpression = expression.toAsyncExpression() + + let (pass, msg) = await execute( + asyncExpression, + style: .toNotMatch, + to: "to eventually not", + description: description) { + await poll( + expression: asyncExpression, + style: .toNotMatch, + matchStyle: .eventually, + timeout: timeout, + poll: pollInterval, + fnName: "toEventuallyNot") { @MainActor in + try await matcher.satisfies(expression.withoutCaching().toAsyncExpression()) + } + } + return try verify(pass, msg, try await asyncExpression.evaluate()) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toEventuallyNot() + @discardableResult + public func toNotEventually(_ matcher: AsyncMatcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + return try await toEventuallyNot(matcher, timeout: timeout, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + @discardableResult + public func toNever(_ matcher: AsyncMatcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + let asyncExpression = expression.toAsyncExpression() + + let (pass, msg) = await execute( + asyncExpression, + style: .toNotMatch, + to: "to never", + description: description) { + await poll( + expression: asyncExpression, + style: .toNotMatch, + matchStyle: .never, + timeout: until, + poll: pollInterval, + fnName: "toNever") { @MainActor in + try await matcher.satisfies(expression.withoutCaching().toAsyncExpression()) + } + } + return try verify(pass, msg, try await asyncExpression.evaluate()) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toNever() + @discardableResult + public func neverTo(_ matcher: AsyncMatcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + return try await toNever(matcher, until: until, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + @discardableResult + public func toAlways(_ matcher: AsyncMatcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + let asyncExpression = expression.toAsyncExpression() + + let (pass, msg) = await execute( + asyncExpression, + style: .toMatch, + to: "to always", + description: description) { + await poll( + expression: asyncExpression, + style: .toMatch, + matchStyle: .always, + timeout: until, + poll: pollInterval, + fnName: "toAlways") { @MainActor in + try await matcher.satisfies(expression.withoutCaching().toAsyncExpression()) + } + } + return try verify(pass, msg, try await asyncExpression.evaluate()) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + /// + /// Alias of toAlways() + @discardableResult + public func alwaysTo(_ matcher: AsyncMatcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + return try await toAlways(matcher, until: until, pollInterval: pollInterval, description: description) + } +} + +extension AsyncRequirement { + // MARK: - Async Polling With Synchronous Matchers + /// Tests the actual value using a matcher to match by checking continuously + /// at each pollInterval until the timeout is reached. + @discardableResult + public func toEventually(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = await execute( + expression, + style: .toMatch, + to: "to eventually", + description: description) { + await poll( + expression: expression, + style: .toMatch, + matchStyle: .eventually, + timeout: timeout, + poll: pollInterval, + fnName: "toEventually") { + try matcher.satisfies(await expression.withoutCaching().toSynchronousExpression()) + } + } + return try verify(pass, msg, try await expression.evaluate()) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + @discardableResult + public func toEventuallyNot(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = await execute( + expression, + style: .toNotMatch, + to: "to eventually not", + description: description) { + await poll( + expression: expression, + style: .toNotMatch, + matchStyle: .eventually, + timeout: timeout, + poll: pollInterval, + fnName: "toEventuallyNot") { + try matcher.satisfies(await expression.withoutCaching().toSynchronousExpression()) + } + } + return try verify(pass, msg, try await expression.evaluate()) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toEventuallyNot() + @discardableResult + public func toNotEventually(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + return try await toEventuallyNot(matcher, timeout: timeout, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + @discardableResult + public func toNever(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = await execute( + expression, + style: .toNotMatch, + to: "to never", + description: description) { + await poll( + expression: expression, + style: .toNotMatch, + matchStyle: .never, + timeout: until, + poll: pollInterval, + fnName: "toNever") { + try matcher.satisfies(await expression.withoutCaching().toSynchronousExpression()) + } + } + return try verify(pass, msg, try await expression.evaluate()) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toNever() + @discardableResult + public func neverTo(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + return try await toNever(matcher, until: until, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + @discardableResult + public func toAlways(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = await execute( + expression, + style: .toMatch, + to: "to always", + description: description) { + await poll( + expression: expression, + style: .toMatch, + matchStyle: .always, + timeout: until, + poll: pollInterval, + fnName: "toAlways") { + try matcher.satisfies(await expression.withoutCaching().toSynchronousExpression()) + } + } + return try verify(pass, msg, try await expression.evaluate()) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + /// + /// Alias of toAlways() + @discardableResult + public func alwaysTo(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + return try await toAlways(matcher, until: until, pollInterval: pollInterval, description: description) + } + + // MARK: - Async Polling With AsyncMatchers + /// Tests the actual value using a matcher to match by checking continuously + /// at each pollInterval until the timeout is reached. + @discardableResult + public func toEventually(_ matcher: AsyncMatcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = await execute( + expression, + style: .toMatch, + to: "to eventually", + description: description) { + await poll( + expression: expression, + style: .toMatch, + matchStyle: .eventually, + timeout: timeout, + poll: pollInterval, + fnName: "toEventually") { + try await matcher.satisfies(expression.withoutCaching()) + } + } + return try verify(pass, msg, try await expression.evaluate()) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + @discardableResult + public func toEventuallyNot(_ matcher: AsyncMatcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = await execute( + expression, + style: .toNotMatch, + to: "to eventually not", + description: description) { + await poll( + expression: expression, + style: .toNotMatch, + matchStyle: .eventually, + timeout: timeout, + poll: pollInterval, + fnName: "toEventuallyNot") { + try await matcher.satisfies(expression.withoutCaching()) + } + } + return try verify(pass, msg, try await expression.evaluate()) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toEventuallyNot() + @discardableResult + public func toNotEventually(_ matcher: AsyncMatcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + return try await toEventuallyNot(matcher, timeout: timeout, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + @discardableResult + public func toNever(_ matcher: AsyncMatcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = await execute( + expression, + style: .toNotMatch, + to: "to never", + description: description) { + await poll( + expression: expression, + style: .toNotMatch, + matchStyle: .never, + timeout: until, + poll: pollInterval, + fnName: "toNever") { + try await matcher.satisfies(expression.withoutCaching()) + } + } + return try verify(pass, msg, try await expression.evaluate()) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toNever() + @discardableResult + public func neverTo(_ matcher: AsyncMatcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + return try await toNever(matcher, until: until, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + @discardableResult + public func toAlways(_ matcher: AsyncMatcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = await execute( + expression, + style: .toMatch, + to: "to always", + description: description) { + await poll( + expression: expression, + style: .toMatch, + matchStyle: .always, + timeout: until, + poll: pollInterval, + fnName: "toAlways") { + try await matcher.satisfies(expression.withoutCaching()) + } + } + return try verify(pass, msg, try await expression.evaluate()) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + /// + /// Alias of toAlways() + @discardableResult + public func alwaysTo(_ matcher: AsyncMatcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) async throws -> Value { + return try await toAlways(matcher, until: until, pollInterval: pollInterval, description: description) + } +} + +// MARK: - UnwrapEventually + +/// Makes sure that the expression evaluates to a non-nil value, otherwise throw an error. +/// As you can tell, this is a much less verbose equivalent to `require(expression).toEventuallyNot(beNil())` +@discardableResult +public func pollUnwrap(file: FileString = #file, line: UInt = #line, _ expression: @autoclosure @escaping () throws -> T?) throws -> T { + try require(file: file, line: line, expression()).toEventuallyNot(beNil()) +} + +/// Makes sure that the expression evaluates to a non-nil value, otherwise throw an error. +/// As you can tell, this is a much less verbose equivalent to `require(expression).toEventuallyNot(beNil())` +@discardableResult +public func pollUnwrap(file: FileString = #file, line: UInt = #line, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil, _ expression: @autoclosure () -> (() throws -> T?)) throws -> T { + try require(file: file, line: line, expression()).toEventuallyNot(beNil(), timeout: timeout, pollInterval: pollInterval, description: description) +} + +/// Makes sure that the expression evaluates to a non-nil value, otherwise throw an error. +/// As you can tell, this is a much less verbose equivalent to `require(expression).toEventuallyNot(beNil())` +@discardableResult +public func pollUnwraps(file: FileString = #file, line: UInt = #line, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil, _ expression: @autoclosure @escaping () throws -> T?) throws -> T { + try require(file: file, line: line, expression()).toEventuallyNot(beNil(), timeout: timeout, pollInterval: pollInterval, description: description) +} + +/// Makes sure that the expression evaluates to a non-nil value, otherwise throw an error. +/// As you can tell, this is a much less verbose equivalent to `require(expression).toEventuallyNot(beNil())` +@discardableResult +public func pollUnwraps(file: FileString = #file, line: UInt = #line, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil, _ expression: @autoclosure () -> (() throws -> T?)) throws -> T { + try require(file: file, line: line, expression()).toEventuallyNot(beNil(), timeout: timeout, pollInterval: pollInterval, description: description) +} + +/// Makes sure that the async expression evaluates to a non-nil value, otherwise throw an error. +/// As you can tell, this is a much less verbose equivalent to `requirea(expression).toEventuallyNot(beNil())` +@discardableResult +public func pollUnwrap(file: FileString = #file, line: UInt = #line, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil, _ expression: @escaping () async throws -> T?) async throws -> T { + try await requirea(file: file, line: line, try await expression()).toEventuallyNot(beNil(), timeout: timeout, pollInterval: pollInterval, description: description) +} + +/// Makes sure that the async expression evaluates to a non-nil value, otherwise throw an error. +/// As you can tell, this is a much less verbose equivalent to `requirea(expression).toEventuallyNot(beNil())` +@discardableResult +public func pollUnwrap(file: FileString = #file, line: UInt = #line, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil, _ expression: () -> (() async throws -> T?)) async throws -> T { + try await requirea(file: file, line: line, expression()).toEventuallyNot(beNil(), timeout: timeout, pollInterval: pollInterval, description: description) +} + +/// Makes sure that the async expression evaluates to a non-nil value, otherwise throw an error. +/// As you can tell, this is a much less verbose equivalent to `requirea(expression).toEventuallyNot(beNil())` +@discardableResult +public func pollUnwrapa(file: FileString = #file, line: UInt = #line, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil, _ expression: @autoclosure @escaping () async throws -> T?) async throws -> T { + try await requirea(file: file, line: line, try await expression()).toEventuallyNot(beNil(), timeout: timeout, pollInterval: pollInterval, description: description) +} + +/// Makes sure that the async expression evaluates to a non-nil value, otherwise throw an error. +/// As you can tell, this is a much less verbose equivalent to `requirea(expression).toEventuallyNot(beNil())` +@discardableResult +public func pollUnwrapa(file: FileString = #file, line: UInt = #line, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil, _ expression: @autoclosure () -> (() async throws -> T?)) async throws -> T { + try await requirea(file: file, line: line, expression()).toEventuallyNot(beNil(), timeout: timeout, pollInterval: pollInterval, description: description) +} + +#endif // #if !os(WASI) diff --git a/Example/Pods/Nimble/Sources/Nimble/Polling.swift b/Example/Pods/Nimble/Sources/Nimble/Polling.swift new file mode 100644 index 000000000..c74facb61 --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/Polling.swift @@ -0,0 +1,353 @@ +#if !os(WASI) + +import Foundation +import Dispatch + +/// If you are running on a slower machine, it could be useful to increase the default timeout value +/// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01. +/// +/// - Warning: This has been renamed to ``PollingDefaults``. Starting in Nimble 14, `AsyncDefaults` will be removed entirely. +/// +/// For the time being, `AsyncDefaults` will function the same. +/// However, `AsyncDefaults` will be removed in a future release. +@available(*, unavailable, renamed: "PollingDefaults") +public struct AsyncDefaults { + public static var timeout: NimbleTimeInterval { + get { + PollingDefaults.timeout + } + set { + PollingDefaults.timeout = newValue + } + } + public static var pollInterval: NimbleTimeInterval { + get { + PollingDefaults.pollInterval + } + set { + PollingDefaults.pollInterval = newValue + } + } +} + +/// If you are running on a slower machine, it could be useful to increase the default timeout value +/// or slow down poll interval. Default timeout interval is 1, and poll interval is 0.01. +/// +/// - Note: This used to be known as ``AsyncDefaults``. +public struct PollingDefaults: @unchecked Sendable { + private static let lock = NSRecursiveLock() + + private static var _timeout: NimbleTimeInterval = .seconds(1) + private static var _pollInterval: NimbleTimeInterval = .milliseconds(10) + + public static var timeout: NimbleTimeInterval { + get { + lock.lock() + defer { lock.unlock() } + return _timeout + } + set { + lock.lock() + defer { lock.unlock() } + _timeout = newValue + } + } + public static var pollInterval: NimbleTimeInterval { + get { + lock.lock() + defer { lock.unlock() } + return _pollInterval + } + set { + lock.lock() + defer { lock.unlock() } + _pollInterval = newValue + } + } +} + +internal enum AsyncMatchStyle { + case eventually, never, always + + var isContinous: Bool { + switch self { + case .eventually: + return false + case .never, .always: + return true + } + } +} + +// swiftlint:disable:next function_parameter_count +internal func poll( + style: ExpectationStyle, + matchStyle: AsyncMatchStyle, + matcher: Matcher, + timeout: NimbleTimeInterval, + poll: NimbleTimeInterval, + fnName: String +) -> Matcher { + return Matcher { actualExpression in + let uncachedExpression = actualExpression.withoutCaching() + let fnName = "expect(...).\(fnName)(...)" + var lastMatcherResult: MatcherResult? + let result = pollBlock( + pollInterval: poll, + timeoutInterval: timeout, + sourceLocation: actualExpression.location, + fnName: fnName) { + lastMatcherResult = try matcher.satisfies(uncachedExpression) + if lastMatcherResult!.toBoolean(expectation: style) { + if matchStyle.isContinous { + return .incomplete + } + return .finished(true) + } else { + if matchStyle.isContinous { + return .finished(false) + } else { + return .incomplete + } + } + } + return processPollResult(result, matchStyle: matchStyle, lastMatcherResult: lastMatcherResult, fnName: fnName) + } +} + +// swiftlint:disable:next cyclomatic_complexity +internal func processPollResult(_ result: PollResult, matchStyle: AsyncMatchStyle, lastMatcherResult: MatcherResult?, fnName: String) -> MatcherResult { + switch result { + case .completed: + switch matchStyle { + case .eventually: + return lastMatcherResult! + case .never: + return MatcherResult( + status: .fail, + message: lastMatcherResult?.message ?? .fail("matched the matcher when it shouldn't have") + ) + case .always: + return MatcherResult( + status: .fail, + message: lastMatcherResult?.message ?? .fail("didn't match the matcher when it should have") + ) + } + case .timedOut: + switch matchStyle { + case .eventually: + let message = lastMatcherResult?.message ?? .fail("timed out before returning a value") + return MatcherResult(status: .fail, message: message) + case .never: + return MatcherResult(status: .doesNotMatch, message: .expectedTo("never match the matcher")) + case .always: + return MatcherResult(status: .matches, message: .expectedTo("always match the matcher")) + } + case let .errorThrown(error): + return MatcherResult(status: .fail, message: .fail("unexpected error thrown: <\(error)>")) + case let .raisedException(exception): + return MatcherResult(status: .fail, message: .fail("unexpected exception raised: \(exception)")) + case .blockedRunLoop: + let message = lastMatcherResult?.message.appended(message: " (timed out, but main run loop was unresponsive).") ?? + .fail("main run loop was unresponsive") + return MatcherResult(status: .fail, message: message) + case .incomplete: + internalError("Reached .incomplete state for \(fnName)(...).") + } +} + +internal let toEventuallyRequiresClosureError = FailureMessage( + stringValue: """ + expect(...).toEventually(...) requires an explicit closure (eg - expect { ... }.toEventually(...) ) + Swift 1.2 @autoclosure behavior has changed in an incompatible way for Nimble to function + """ +) + +extension SyncExpectation { + /// Tests the actual value using a matcher to match by checking continuously + /// at each pollInterval until the timeout is reached. + /// + /// @discussion + /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function + /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. + /// + /// @warning + /// This form of `toEventually` does not work in any kind of async context. Use the async form of `toEventually` if you are running tests in an async context. + @discardableResult + @available(*, noasync, message: "the sync variant of `toEventually` does not work in async contexts. Use the async variant as a drop-in replacement") + public func toEventually(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = execute( + expression, + .toMatch, + poll( + style: .toMatch, + matchStyle: .eventually, + matcher: matcher, + timeout: timeout, + poll: pollInterval, + fnName: "toEventually" + ), + to: "to eventually", + description: description, + captureExceptions: false + ) + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// @discussion + /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function + /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. + /// + /// @warning + /// This form of `toEventuallyNot` does not work in any kind of async context. + /// Use the async form of `toEventuallyNot` if you are running tests in an async context. + @discardableResult + @available(*, noasync, message: "the sync variant of `toEventuallyNot` does not work in async contexts. Use the async variant as a drop-in replacement") + public func toEventuallyNot(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = execute( + expression, + .toNotMatch, + poll( + style: .toNotMatch, + matchStyle: .eventually, + matcher: matcher, + timeout: timeout, + poll: pollInterval, + fnName: "toEventuallyNot" + ), + to: "to eventually not", + description: description, + captureExceptions: false + ) + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to not match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toEventuallyNot() + /// + /// @discussion + /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function + /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. + /// + /// @warning + /// This form of `toNotEventually` does not work in any kind of async context. + /// Use the async form of `toNotEventually` if you are running tests in an async context. + @discardableResult + @available(*, noasync, message: "the sync variant of `toNotEventually` does not work in async contexts. Use the async variant as a drop-in replacement") + public func toNotEventually(_ matcher: Matcher, timeout: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) -> Self { + return toEventuallyNot(matcher, timeout: timeout, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// @discussion + /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function + /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. + /// + /// @warning + /// This form of `toNever` does not work in any kind of async context. + /// Use the async form of `toNever` if you are running tests in an async context. + @discardableResult + @available(*, noasync, message: "the sync variant of `toNever` does not work in async contexts. Use the async variant as a drop-in replacement") + public func toNever(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = execute( + expression, + .toNotMatch, + poll( + style: .toNotMatch, + matchStyle: .never, + matcher: matcher, + timeout: until, + poll: pollInterval, + fnName: "toNever" + ), + to: "to never", + description: description, + captureExceptions: false + ) + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to never match by checking + /// continuously at each pollInterval until the timeout is reached. + /// + /// Alias of toNever() + /// + /// @discussion + /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function + /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. + /// + /// @warning + /// This form of `neverTo` does not work in any kind of async context. + /// Use the async form of `neverTo` if you are running tests in an async context. + @discardableResult + @available(*, noasync, message: "the sync variant of `neverTo` does not work in async contexts. Use the async variant as a drop-in replacement") + public func neverTo(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) -> Self { + return toNever(matcher, until: until, pollInterval: pollInterval, description: description) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + /// + /// @discussion + /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function + /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. + /// + /// @warning + /// This form of `toAlways` does not work in any kind of async context. + /// Use the async form of `toAlways` if you are running tests in an async context. + @discardableResult + @available(*, noasync, message: "the sync variant of `toAlways` does not work in async contexts. Use the async variant as a drop-in replacement") + public func toAlways(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) -> Self { + nimblePrecondition(expression.isClosure, "NimbleInternalError", toEventuallyRequiresClosureError.stringValue) + + let (pass, msg) = execute( + expression, + .toMatch, + poll( + style: .toMatch, + matchStyle: .always, + matcher: matcher, + timeout: until, + poll: pollInterval, + fnName: "toAlways" + ), + to: "to always", + description: description, + captureExceptions: false + ) + return verify(pass, msg) + } + + /// Tests the actual value using a matcher to always match by checking + /// continusouly at each pollInterval until the timeout is reached + /// + /// Alias of toAlways() + /// + /// @discussion + /// This function manages the main run loop (`NSRunLoop.mainRunLoop()`) while this function + /// is executing. Any attempts to touch the run loop may cause non-deterministic behavior. + /// + /// @warning + /// This form of `alwaysTo` does not work in any kind of async context. + /// Use the async form of `alwaysTo` if you are running tests in an async context. + @discardableResult + @available(*, noasync, message: "the sync variant of `alwaysTo` does not work in async contexts. Use the async variant as a drop-in replacement") + public func alwaysTo(_ matcher: Matcher, until: NimbleTimeInterval = PollingDefaults.timeout, pollInterval: NimbleTimeInterval = PollingDefaults.pollInterval, description: String? = nil) -> Self { + return toAlways(matcher, until: until, pollInterval: pollInterval, description: description) + } +} + +#endif // #if !os(WASI) diff --git a/Example/Pods/Nimble/Sources/Nimble/Requirement.swift b/Example/Pods/Nimble/Sources/Nimble/Requirement.swift new file mode 100644 index 000000000..91c8487da --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/Requirement.swift @@ -0,0 +1,210 @@ +import Foundation + +public struct RequireError: Error, CustomNSError { + let message: String + let location: SourceLocation + + var localizedDescription: String { message } + public var errorUserInfo: [String: Any] { + // Required to prevent Xcode from reporting that we threw an error. + // The default assertionHandlers will report this to XCode for us. + ["XCTestErrorUserInfoKeyShouldIgnore": true] + } + + static func unknown(_ location: SourceLocation) -> RequireError { + RequireError(message: "Nimble error - file a bug if you see this!", location: location) + } +} +internal func executeRequire(_ expression: Expression, _ style: ExpectationStyle, _ matcher: Matcher, to: String, description: String?, captureExceptions: Bool = true) -> (Bool, FailureMessage, T?) { + func run() -> (Bool, FailureMessage, T?) { + let msg = FailureMessage() + msg.userDescription = description + msg.to = to + do { + let cachedExpression = expression.withCaching() + let result = try matcher.satisfies(cachedExpression) + let value = try cachedExpression.evaluate() + result.message.update(failureMessage: msg) + if msg.actualValue == "" { + msg.actualValue = "<\(stringify(value))>" + } + return (result.toBoolean(expectation: style), msg, value) + } catch let error { + msg.stringValue = "unexpected error thrown: <\(error)>" + return (false, msg, nil) + } + } + + var result: (Bool, FailureMessage, T?) = (false, FailureMessage(), nil) + if captureExceptions { + let capture = NMBExceptionCapture(handler: ({ exception -> Void in + let msg = FailureMessage() + msg.stringValue = "unexpected exception raised: \(exception)" + result = (false, msg, nil) + }), finally: nil) + capture.tryBlock { + result = run() + } + } else { + result = run() + } + + return result +} + +internal func executeRequire(_ expression: AsyncExpression, _ style: ExpectationStyle, _ matcher: AsyncMatcher, to: String, description: String?) async -> (Bool, FailureMessage, T?) { + let msg = FailureMessage() + msg.userDescription = description + msg.to = to + do { + let cachedExpression = expression.withCaching() + let result = try await matcher.satisfies(cachedExpression) + let value = try await cachedExpression.evaluate() + result.message.update(failureMessage: msg) + if msg.actualValue == "" { + msg.actualValue = "<\(stringify(value))>" + } + return (result.toBoolean(expectation: style), msg, value) + } catch let error { + msg.stringValue = "unexpected error thrown: <\(error)>" + return (false, msg, nil) + } +} + +public struct SyncRequirement { + public let expression: Expression + + /// A custom error to throw. + /// If nil, then we will throw a ``RequireError`` on failure. + public let customError: Error? + + public var location: SourceLocation { expression.location } + + public init(expression: Expression, customError: Error?) { + self.expression = expression + self.customError = customError + } + + public func verify(_ pass: Bool, _ message: FailureMessage, _ value: Value?) throws -> Value { + let handler = NimbleEnvironment.activeInstance.assertionHandler + handler.assert(pass, message: message, location: expression.location) + guard pass, let value else { + throw customError ?? RequireError(message: message.stringValue, location: self.location) + } + return value + } + + /// Tests the actual value using a matcher to match. + @discardableResult + public func to(_ matcher: Matcher, description: String? = nil) throws -> Value { + let (pass, msg, result) = executeRequire(expression, .toMatch, matcher, to: "to", description: description) + return try verify(pass, msg, result) + } + + /// Tests the actual value using a matcher to not match. + @discardableResult + public func toNot(_ matcher: Matcher, description: String? = nil) throws -> Value { + let (pass, msg, result) = executeRequire(expression, .toNotMatch, matcher, to: "to not", description: description) + return try verify(pass, msg, result) + } + + /// Tests the actual value using a matcher to not match. + /// + /// Alias to toNot(). + @discardableResult + public func notTo(_ matcher: Matcher, description: String? = nil) throws -> Value { + try toNot(matcher, description: description) + } + + // MARK: - AsyncMatchers + /// Tests the actual value using a matcher to match. + @discardableResult + public func to(_ matcher: AsyncMatcher, description: String? = nil) async throws -> Value { + let (pass, msg, result) = await executeRequire(expression.toAsyncExpression(), .toMatch, matcher, to: "to", description: description) + return try verify(pass, msg, result) + } + + /// Tests the actual value using a matcher to not match. + @discardableResult + public func toNot(_ matcher: AsyncMatcher, description: String? = nil) async throws -> Value { + let (pass, msg, result) = await executeRequire(expression.toAsyncExpression(), .toNotMatch, matcher, to: "to not", description: description) + return try verify(pass, msg, result) + } + + /// Tests the actual value using a matcher to not match. + /// + /// Alias to toNot(). + @discardableResult + public func notTo(_ matcher: AsyncMatcher, description: String? = nil) async throws -> Value { + try await toNot(matcher, description: description) + } +} + +public struct AsyncRequirement { + public let expression: AsyncExpression + + /// A custom error to throw. + /// If nil, then we will throw a ``RequireError`` on failure. + public let customError: Error? + + public var location: SourceLocation { expression.location } + + public init(expression: AsyncExpression, customError: Error?) { + self.expression = expression + self.customError = customError + } + + public func verify(_ pass: Bool, _ message: FailureMessage, _ value: Value?) throws -> Value { + let handler = NimbleEnvironment.activeInstance.assertionHandler + handler.assert(pass, message: message, location: expression.location) + guard pass, let value else { + throw customError ?? RequireError(message: message.stringValue, location: self.location) + } + return value + } + + /// Tests the actual value using a matcher to match. + @discardableResult + public func to(_ matcher: Matcher, description: String? = nil) async throws -> Value { + let (pass, msg, result) = executeRequire(await expression.toSynchronousExpression(), .toMatch, matcher, to: "to", description: description) + return try verify(pass, msg, result) + } + + /// Tests the actual value using a matcher to not match. + @discardableResult + public func toNot(_ matcher: Matcher, description: String? = nil) async throws -> Value { + let (pass, msg, result) = executeRequire(await expression.toSynchronousExpression(), .toNotMatch, matcher, to: "to not", description: description) + return try verify(pass, msg, result) + } + + /// Tests the actual value using a matcher to not match. + /// + /// Alias to toNot(). + @discardableResult + public func notTo(_ matcher: Matcher, description: String? = nil) async throws -> Value { + try await toNot(matcher, description: description) + } + + // MARK: - AsyncMatchers + /// Tests the actual value using a matcher to match. + @discardableResult + public func to(_ matcher: AsyncMatcher, description: String? = nil) async throws -> Value { + let (pass, msg, result) = await executeRequire(expression, .toMatch, matcher, to: "to", description: description) + return try verify(pass, msg, result) + } + + /// Tests the actual value using a matcher to not match. + @discardableResult + public func toNot(_ matcher: AsyncMatcher, description: String? = nil) async throws -> Value { + let (pass, msg, result) = await executeRequire(expression, .toNotMatch, matcher, to: "to not", description: description) + return try verify(pass, msg, result) + } + + /// Tests the actual value using a matcher to not match. + /// + /// Alias to toNot(). + @discardableResult + public func notTo(_ matcher: AsyncMatcher, description: String? = nil) async throws -> Value { + try await toNot(matcher, description: description) + } +} diff --git a/Example/Pods/Nimble/Sources/Nimble/Utils/AsyncAwait.swift b/Example/Pods/Nimble/Sources/Nimble/Utils/AsyncAwait.swift new file mode 100644 index 000000000..141662259 --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/Utils/AsyncAwait.swift @@ -0,0 +1,344 @@ +#if !os(WASI) + +#if canImport(CoreFoundation) +import CoreFoundation +#endif + +import Dispatch +import Foundation + +private let timeoutLeeway = NimbleTimeInterval.milliseconds(1) +private let pollLeeway = NimbleTimeInterval.milliseconds(1) + +// Like PollResult, except it doesn't support objective-c exceptions. +// Which is tolerable because Swift Concurrency doesn't support recording objective-c exceptions. +internal enum AsyncPollResult { + /// Incomplete indicates None (aka - this value hasn't been fulfilled yet) + case incomplete + /// TimedOut indicates the result reached its defined timeout limit before returning + case timedOut + /// BlockedRunLoop indicates the main runloop is too busy processing other blocks to trigger + /// the timeout code. + /// + /// This may also mean the async code waiting upon may have never actually ran within the + /// required time because other timers & sources are running on the main run loop. + case blockedRunLoop + /// The async block successfully executed and returned a given result + case completed(T) + /// When a Swift Error is thrown + case errorThrown(Error) + + func isIncomplete() -> Bool { + switch self { + case .incomplete: return true + default: return false + } + } + + func isCompleted() -> Bool { + switch self { + case .completed: return true + default: return false + } + } + + func toPollResult() -> PollResult { + switch self { + case .incomplete: return .incomplete + case .timedOut: return .timedOut + case .blockedRunLoop: return .blockedRunLoop + case .completed(let value): return .completed(value) + case .errorThrown(let error): return .errorThrown(error) + } + } +} + +// A mechanism to send a single value between 2 tasks. +// Inspired by swift-async-algorithm's AsyncChannel, but massively simplified +// especially given Nimble's usecase. +// AsyncChannel: https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/Channels/AsyncChannel.swift +internal actor AsyncPromise { + private let storage = Storage() + + private final class Storage { + private var continuations: [UnsafeContinuation] = [] + private var value: T? + // Yes, this is not the fastest lock, but it's platform independent, + // which means we don't have to have a Lock protocol and separate Lock + // implementations for Linux & Darwin (and Windows if we ever add + // support for that). + private let lock = NSLock() + + func await() async -> T { + await withUnsafeContinuation { continuation in + lock.lock() + defer { lock.unlock() } + if let value { + continuation.resume(returning: value) + } else { + continuations.append(continuation) + } + } + } + + func send(_ value: T) { + lock.lock() + defer { lock.unlock() } + if self.value != nil { return } + continuations.forEach { continuation in + continuation.resume(returning: value) + } + continuations = [] + self.value = value + } + } + + nonisolated func send(_ value: T) { + self.storage.send(value) + } + + var value: T { + get async { + await self.storage.await() + } + } +} + +/// Wait until the timeout period, then checks why the matcher might have timed out +/// +/// Why Dispatch? +/// +/// Using Dispatch gives us mechanisms for detecting why the matcher timed out. +/// If it timed out because the main thread was blocked, then we want to report that, +/// as that's a performance concern. If it timed out otherwise, then we need to +/// report that. +/// This **could** be done using mechanisms like locks, but instead we use +/// `DispatchSemaphore`. That's because `DispatchSemaphore` is fast and +/// platform independent. However, while `DispatchSemaphore` itself is +/// `Sendable`, the `wait` method is not safe to use in an async context. +/// To get around that, we must ensure that all usages of +/// `DispatchSemaphore.wait` are in synchronous contexts, which +/// we can ensure by dispatching to a `DispatchQueue`. Unlike directly calling +/// a synchronous closure, or using something ilke `MainActor.run`, using +/// a `DispatchQueue` to run synchronous code will actually run it in a +/// synchronous context. +/// +/// +/// Run Loop Management +/// +/// In order to properly interrupt the waiting behavior performed by this factory class, +/// this timer stops the main run loop to tell the waiter code that the result should be +/// checked. +/// +/// In addition, stopping the run loop is used to halt code executed on the main run loop. +private func timeout(timeoutQueue: DispatchQueue, timeoutInterval: NimbleTimeInterval, forcefullyAbortTimeout: NimbleTimeInterval) async -> AsyncPollResult { + do { + try await Task.sleep(nanoseconds: timeoutInterval.nanoseconds) + } catch {} + + let promise = AsyncPromise>() + + let timedOutSem = DispatchSemaphore(value: 0) + let semTimedOutOrBlocked = DispatchSemaphore(value: 0) + semTimedOutOrBlocked.signal() + + DispatchQueue.main.async { + if semTimedOutOrBlocked.wait(timeout: .now()) == .success { + timedOutSem.signal() + semTimedOutOrBlocked.signal() + promise.send(.timedOut) + } + } + + // potentially interrupt blocking code on run loop to let timeout code run + timeoutQueue.async { + let abortTimeout = DispatchTime.now() + timeoutInterval.divided.dispatchTimeInterval + let didNotTimeOut = timedOutSem.wait(timeout: abortTimeout) != .success + let timeoutWasNotTriggered = semTimedOutOrBlocked.wait(timeout: .now()) == .success + if didNotTimeOut && timeoutWasNotTriggered { + promise.send(.blockedRunLoop) + } else { + promise.send(.timedOut) + } + } + + return await promise.value +} + +private func poll(_ pollInterval: NimbleTimeInterval, expression: @escaping () async throws -> PollStatus) async -> AsyncPollResult { + for try await _ in AsyncTimerSequence(interval: pollInterval) { + do { + if case .finished(let result) = try await expression() { + return .completed(result) + } + } catch { + return .errorThrown(error) + } + } + return .completed(false) +} + +/// Blocks for an asynchronous result. +/// +/// @discussion +/// This function cannot be nested. This is because this function (and it's related methods) +/// coordinate through the main run loop. Tampering with the run loop can cause undesirable behavior. +/// +/// This method will return an AwaitResult in the following cases: +/// +/// - The main run loop is blocked by other operations and the async expectation cannot be +/// be stopped. +/// - The async expectation timed out +/// - The async expectation succeeded +/// - The async expectation raised an unexpected exception (objc) +/// - The async expectation raised an unexpected error (swift) +/// +/// The returned AsyncPollResult will NEVER be .incomplete. +private func runPoller( + timeoutInterval: NimbleTimeInterval, + pollInterval: NimbleTimeInterval, + awaiter: Awaiter, + fnName: String, + sourceLocation: SourceLocation, + expression: @escaping () async throws -> PollStatus +) async -> AsyncPollResult { + awaiter.waitLock.acquireWaitingLock( + fnName, + sourceLocation: sourceLocation + ) + + defer { + awaiter.waitLock.releaseWaitingLock() + } + let timeoutQueue = awaiter.timeoutQueue + return await withTaskGroup(of: AsyncPollResult.self) { taskGroup in + taskGroup.addTask { + await timeout( + timeoutQueue: timeoutQueue, + timeoutInterval: timeoutInterval, + forcefullyAbortTimeout: timeoutInterval.divided + ) + } + + taskGroup.addTask { + await poll(pollInterval, expression: expression) + } + + defer { + taskGroup.cancelAll() + } + + return await taskGroup.next() ?? .timedOut + } +} + +private final class Box: @unchecked Sendable { + private var _value: T + var value: T { + lock.lock() + defer { lock.unlock() } + return _value + } + + private let lock = NSLock() + + init(value: T) { + _value = value + } + + func operate(_ closure: @Sendable (T) -> T) { + lock.lock() + defer { lock.unlock() } + _value = closure(_value) + } +} + +// swiftlint:disable:next function_parameter_count +private func runAwaitTrigger( + awaiter: Awaiter, + timeoutInterval: NimbleTimeInterval, + leeway: NimbleTimeInterval, + sourceLocation: SourceLocation, + _ closure: @escaping (@escaping (T) -> Void) async throws -> Void +) async -> AsyncPollResult { + let timeoutQueue = awaiter.timeoutQueue + let completionCount = Box(value: 0) + return await withTaskGroup(of: AsyncPollResult.self) { taskGroup in + let promise = AsyncPromise() + + taskGroup.addTask { + defer { + promise.send(nil) + } + return await timeout( + timeoutQueue: timeoutQueue, + timeoutInterval: timeoutInterval, + forcefullyAbortTimeout: leeway + ) + } + + taskGroup.addTask { + do { + try await closure { result in + completionCount.operate { $0 + 1 } + if completionCount.value < 2 { + promise.send(result) + } else { + fail( + "waitUntil(..) expects its completion closure to be only called once", + fileID: sourceLocation.fileID, + file: sourceLocation.filePath, + line: sourceLocation.line, + column: sourceLocation.column + ) + } + } + if let value = await promise.value { + return .completed(value) + } else { + return .timedOut + } + } catch { + return .errorThrown(error) + } + } + + defer { + taskGroup.cancelAll() + } + + return await taskGroup.next() ?? .timedOut + } +} + +internal func performBlock( + timeoutInterval: NimbleTimeInterval, + leeway: NimbleTimeInterval, + sourceLocation: SourceLocation, + _ closure: @escaping (@escaping (T) -> Void) async throws -> Void +) async -> AsyncPollResult { + await runAwaitTrigger( + awaiter: NimbleEnvironment.activeInstance.awaiter, + timeoutInterval: timeoutInterval, + leeway: leeway, + sourceLocation: sourceLocation, + closure) +} + +internal func pollBlock( + pollInterval: NimbleTimeInterval, + timeoutInterval: NimbleTimeInterval, + sourceLocation: SourceLocation, + fnName: String, + expression: @escaping () async throws -> PollStatus) async -> AsyncPollResult { + await runPoller( + timeoutInterval: timeoutInterval, + pollInterval: pollInterval, + awaiter: NimbleEnvironment.activeInstance.awaiter, + fnName: fnName, + sourceLocation: sourceLocation, + expression: expression + ) + } + +#endif // #if !os(WASI) diff --git a/Example/Pods/Nimble/Sources/Nimble/Utils/AsyncTimerSequence.swift b/Example/Pods/Nimble/Sources/Nimble/Utils/AsyncTimerSequence.swift new file mode 100644 index 000000000..83c2485f9 --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/Utils/AsyncTimerSequence.swift @@ -0,0 +1,140 @@ +#if !os(WASI) + +#if canImport(CoreFoundation) +import CoreFoundation +#endif +import Dispatch +import Foundation + +// Basically a re-implementation of Clock and InstantProtocol. +// This can be removed once we drop support for iOS < 16. +internal protocol NimbleClockProtocol: Sendable { + associatedtype Instant: NimbleInstantProtocol + + func now() -> Instant + + func sleep(until: Instant) async throws +} + +internal protocol NimbleInstantProtocol: Sendable, Comparable { + associatedtype Interval: NimbleIntervalProtocol + + func advanced(byInterval: Interval) -> Self + + func intervalSince(_: Self) -> Interval +} + +internal protocol NimbleIntervalProtocol: Sendable, Comparable { + static func + (lhs: Self, rhs: Self) -> Self + static func - (lhs: Self, rhs: Self) -> Self + static func * (lhs: Self, rhs: Self) -> Self + static func / (lhs: Self, rhs: Self) -> Self + + func rounded(_ rule: FloatingPointRoundingRule) -> Self +} + +internal struct DateClock: NimbleClockProtocol { + typealias Instant = Date + + func now() -> Instant { + Date() + } + + func sleep(until: Instant) async throws { + try await Task.sleep(nanoseconds: UInt64(Swift.max(0, until.timeIntervalSinceNow * 1_000_000_000))) + } +} + +// Date is Sendable as of at least iOS 16. +// But as of Swift 5.9, it's still not Sendable in the open source version. +extension Date: @unchecked Sendable {} + +extension Date: NimbleInstantProtocol { + typealias Interval = NimbleTimeInterval + + func advanced(byInterval interval: NimbleTimeInterval) -> Date { + advanced(by: interval.timeInterval) + } + + func intervalSince(_ other: Date) -> NimbleTimeInterval { + timeIntervalSince(other).nimbleInterval + } +} + +extension NimbleTimeInterval: NimbleIntervalProtocol { + func rounded(_ rule: FloatingPointRoundingRule) -> NimbleTimeInterval { + timeInterval.rounded(rule).nimbleInterval + } + + static func + (lhs: NimbleTimeInterval, rhs: NimbleTimeInterval) -> NimbleTimeInterval { + (lhs.timeInterval + rhs.timeInterval).nimbleInterval + } + + static func - (lhs: NimbleTimeInterval, rhs: NimbleTimeInterval) -> NimbleTimeInterval { + (lhs.timeInterval - rhs.timeInterval).nimbleInterval + } + + static func * (lhs: NimbleTimeInterval, rhs: NimbleTimeInterval) -> NimbleTimeInterval { + (lhs.timeInterval * rhs.timeInterval).nimbleInterval + } + + static func / (lhs: NimbleTimeInterval, rhs: NimbleTimeInterval) -> NimbleTimeInterval { + (lhs.timeInterval / rhs.timeInterval).nimbleInterval + } + + public static func < (lhs: NimbleTimeInterval, rhs: NimbleTimeInterval) -> Bool { + lhs.timeInterval < rhs.timeInterval + } +} + +// Similar to (made by directly referencing) swift-async-algorithm's AsyncTimerSequence. +// https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/AsyncTimerSequence.swift +// Only this one is compatible with OS versions that Nimble supports. +struct AsyncTimerSequence: AsyncSequence { + typealias Element = Void + let clock: Clock + let interval: Clock.Instant.Interval + + struct AsyncIterator: AsyncIteratorProtocol { + let clock: Clock + let interval: Clock.Instant.Interval + + var last: Clock.Instant? + + func nextDeadline() -> Clock.Instant { + let now = clock.now() + + let last = self.last ?? now + let next = last.advanced(byInterval: interval) + if next < now { + let nextTimestep = interval * (now.intervalSince(next) / interval).rounded(.up) + return last.advanced(byInterval: nextTimestep) + } else { + return next + } + } + + mutating func next() async -> Void? { + let next = nextDeadline() + do { + try await clock.sleep(until: next) + } catch { + return nil + } + last = next + return () + } + } + + func makeAsyncIterator() -> AsyncIterator { + return AsyncIterator(clock: clock, interval: interval) + } +} + +extension AsyncTimerSequence { + init(interval: NimbleTimeInterval) { + self.init(clock: DateClock(), interval: interval) + } +} + +#endif // os(WASI) diff --git a/Example/Pods/Nimble/Sources/Nimble/Utils/DispatchTimeInterval.swift b/Example/Pods/Nimble/Sources/Nimble/Utils/DispatchTimeInterval.swift deleted file mode 100644 index 958368345..000000000 --- a/Example/Pods/Nimble/Sources/Nimble/Utils/DispatchTimeInterval.swift +++ /dev/null @@ -1,45 +0,0 @@ -#if !os(WASI) - -import Dispatch - -#if canImport(CDispatch) -import CDispatch -#endif - -extension DispatchTimeInterval { - // ** Note: We cannot simply divide the time interval because DispatchTimeInterval associated value type is Int - var divided: DispatchTimeInterval { - switch self { - case let .seconds(val): return val < 2 ? .milliseconds(Int(Float(val)/2*1000)) : .seconds(val/2) - case let .milliseconds(val): return .milliseconds(val/2) - case let .microseconds(val): return .microseconds(val/2) - case let .nanoseconds(val): return .nanoseconds(val/2) - case .never: return .never - @unknown default: fatalError("Unknown DispatchTimeInterval value") - } - } - - var description: String { - switch self { - case let .seconds(val): return val == 1 ? "\(Float(val)) second" : "\(Float(val)) seconds" - case let .milliseconds(val): return "\(Float(val)/1_000) seconds" - case let .microseconds(val): return "\(Float(val)/1_000_000) seconds" - case let .nanoseconds(val): return "\(Float(val)/1_000_000_000) seconds" - default: fatalError("Unknown DispatchTimeInterval value") - } - } -} - -#if canImport(Foundation) -import typealias Foundation.TimeInterval - -extension TimeInterval { - var dispatchInterval: DispatchTimeInterval { - let microseconds = Int64(self * TimeInterval(USEC_PER_SEC)) - // perhaps use nanoseconds, though would more often be > Int.max - return microseconds < Int.max ? .microseconds(Int(microseconds)) : .seconds(Int(self)) - } -} -#endif - -#endif // #if !os(WASI) diff --git a/Example/Pods/Nimble/Sources/Nimble/Utils/NimbleTimeInterval.swift b/Example/Pods/Nimble/Sources/Nimble/Utils/NimbleTimeInterval.swift new file mode 100644 index 000000000..abe0218e6 --- /dev/null +++ b/Example/Pods/Nimble/Sources/Nimble/Utils/NimbleTimeInterval.swift @@ -0,0 +1,89 @@ +#if !os(WASI) + +import Dispatch + +#if canImport(CDispatch) +import CDispatch +#endif + +/// A reimplementation of `DispatchTimeInterval` without the `never` case, and conforming to `Sendable`. +public enum NimbleTimeInterval: Sendable, Equatable { + case seconds(Int) + case milliseconds(Int) + case microseconds(Int) + case nanoseconds(Int) +} + +extension NimbleTimeInterval: CustomStringConvertible { + public var dispatchTimeInterval: DispatchTimeInterval { + switch self { + case .seconds(let int): + return .seconds(int) + case .milliseconds(let int): + return .milliseconds(int) + case .microseconds(let int): + return .microseconds(int) + case .nanoseconds(let int): + return .nanoseconds(int) + } + } + + // ** Note: We cannot simply divide the time interval because NimbleTimeInterval associated value type is Int + internal var divided: NimbleTimeInterval { + switch self { + case let .seconds(val): return val < 2 ? .milliseconds(Int(Float(val)/2*1000)) : .seconds(val/2) + case let .milliseconds(val): return .milliseconds(val/2) + case let .microseconds(val): return .microseconds(val/2) + case let .nanoseconds(val): return .nanoseconds(val/2) + } + } + + public var nanoseconds: UInt64 { + switch self { + case .seconds(let int): return UInt64(int) * 1_000_000_000 + case .milliseconds(let int): return UInt64(int) * 1_000_000 + case .microseconds(let int): return UInt64(int) * 1_000 + case .nanoseconds(let int): return UInt64(int) + } + } + + public var description: String { + switch self { + case let .seconds(val): return val == 1 ? "\(Float(val)) second" : "\(Float(val)) seconds" + case let .milliseconds(val): return "\(Float(val)/1_000) seconds" + case let .microseconds(val): return "\(Float(val)/1_000_000) seconds" + case let .nanoseconds(val): return "\(Float(val)/1_000_000_000) seconds" + } + } +} + +#if canImport(Foundation) +import Foundation + +extension NimbleTimeInterval { + public var timeInterval: TimeInterval { + switch self { + case .seconds(let int): return TimeInterval(int) + case .milliseconds(let int): return TimeInterval(int) / 1_000 + case .microseconds(let int): return TimeInterval(int) / 1_000_000 + case .nanoseconds(let int): return TimeInterval(int) / 1_000_000_000 + } + } +} + +extension TimeInterval { + public var nimbleInterval: NimbleTimeInterval { + let microseconds = Int64(self * TimeInterval(USEC_PER_SEC)) + // perhaps use nanoseconds, though would more often be > Int.max + return microseconds < Int.max ? .microseconds(Int(microseconds)) : .seconds(Int(self)) + } +} + +extension Date { + public func advanced(by nimbleTimeInterval: NimbleTimeInterval) -> Date { + self.advanced(by: nimbleTimeInterval.timeInterval) + } +} +#endif + +#endif // #if !os(WASI) diff --git a/Example/Pods/Nimble/Sources/Nimble/Utils/Await.swift b/Example/Pods/Nimble/Sources/Nimble/Utils/PollAwait.swift similarity index 62% rename from Example/Pods/Nimble/Sources/Nimble/Utils/Await.swift rename to Example/Pods/Nimble/Sources/Nimble/Utils/PollAwait.swift index 1933d9930..1bc1311ba 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Utils/Await.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Utils/PollAwait.swift @@ -1,41 +1,40 @@ #if !os(WASI) +#if canImport(CoreFoundation) import CoreFoundation +#endif import Dispatch import Foundation -private let timeoutLeeway = DispatchTimeInterval.milliseconds(1) -private let pollLeeway = DispatchTimeInterval.milliseconds(1) +private let timeoutLeeway = NimbleTimeInterval.milliseconds(1) +private let pollLeeway = NimbleTimeInterval.milliseconds(1) /// Stores debugging information about callers -internal struct WaitingInfo: CustomStringConvertible { +internal struct WaitingInfo: CustomStringConvertible, Sendable { let name: String - let file: FileString - let lineNumber: UInt + let sourceLocation: SourceLocation var description: String { - return "\(name) at \(file):\(lineNumber)" + return "\(name) at \(sourceLocation)" } } internal protocol WaitLock { - func acquireWaitingLock(_ fnName: String, file: FileString, line: UInt) + func acquireWaitingLock(_ fnName: String, sourceLocation: SourceLocation) func releaseWaitingLock() func isWaitingLocked() -> Bool } -internal class AssertionWaitLock: WaitLock { +internal final class AssertionWaitLock: WaitLock, @unchecked Sendable { private var currentWaiter: WaitingInfo? + private let lock = NSRecursiveLock() + init() { } - func acquireWaitingLock(_ fnName: String, file: FileString, line: UInt) { - let info = WaitingInfo(name: fnName, file: file, lineNumber: line) - let isMainThread = Thread.isMainThread - nimblePrecondition( - isMainThread, - "InvalidNimbleAPIUsage", - "\(fnName) can only run on the main thread." - ) + func acquireWaitingLock(_ fnName: String, sourceLocation: SourceLocation) { + lock.lock() + defer { lock.unlock() } + let info = WaitingInfo(name: fnName, sourceLocation: sourceLocation) nimblePrecondition( currentWaiter == nil, "InvalidNimbleAPIUsage", @@ -53,15 +52,19 @@ internal class AssertionWaitLock: WaitLock { } func isWaitingLocked() -> Bool { + lock.lock() + defer { lock.unlock() } return currentWaiter != nil } func releaseWaitingLock() { + lock.lock() + defer { lock.unlock() } currentWaiter = nil } } -internal enum AwaitResult { +internal enum PollResult { /// Incomplete indicates None (aka - this value hasn't been fulfilled yet) case incomplete /// TimedOut indicates the result reached its defined timeout limit before returning @@ -94,10 +97,15 @@ internal enum AwaitResult { } } +internal enum PollStatus { + case finished(Bool) + case incomplete +} + /// Holds the resulting value from an asynchronous expectation. -/// This class is thread-safe at receiving an "response" to this promise. +/// This class is thread-safe at receiving a "response" to this promise. internal final class AwaitPromise { - private(set) internal var asyncResult: AwaitResult = .incomplete + private(set) internal var asyncResult: PollResult = .incomplete private var signal: DispatchSemaphore init() { @@ -113,7 +121,8 @@ internal final class AwaitPromise { /// /// @returns a Bool that indicates if the async result was accepted or rejected because another /// value was received first. - func resolveResult(_ result: AwaitResult) -> Bool { + @discardableResult + func resolveResult(_ result: PollResult) -> Bool { if signal.wait(timeout: .now()) == .success { self.asyncResult = result return true @@ -123,7 +132,7 @@ internal final class AwaitPromise { } } -internal struct AwaitTrigger { +internal struct PollAwaitTrigger { let timeoutSource: DispatchSourceTimer let actionSource: DispatchSourceTimer? let start: () throws -> Void @@ -136,59 +145,60 @@ internal struct AwaitTrigger { internal class AwaitPromiseBuilder { let awaiter: Awaiter let waitLock: WaitLock - let trigger: AwaitTrigger + let trigger: PollAwaitTrigger let promise: AwaitPromise internal init( awaiter: Awaiter, waitLock: WaitLock, promise: AwaitPromise, - trigger: AwaitTrigger) { + trigger: PollAwaitTrigger) { self.awaiter = awaiter self.waitLock = waitLock self.promise = promise self.trigger = trigger } - func timeout(_ timeoutInterval: DispatchTimeInterval, forcefullyAbortTimeout: DispatchTimeInterval) -> Self { - // = Discussion = - // - // There's a lot of technical decisions here that is useful to elaborate on. This is - // definitely more lower-level than the previous NSRunLoop based implementation. - // - // - // Why Dispatch Source? - // - // - // We're using a dispatch source to have better control of the run loop behavior. - // A timer source gives us deferred-timing control without having to rely as much on - // a run loop's traditional dispatching machinery (eg - NSTimers, DefaultRunLoopMode, etc.) - // which is ripe for getting corrupted by application code. - // - // And unlike dispatch_async(), we can control how likely our code gets prioritized to - // executed (see leeway parameter) + DISPATCH_TIMER_STRICT. - // - // This timer is assumed to run on the HIGH priority queue to ensure it maintains the - // highest priority over normal application / test code when possible. - // - // - // Run Loop Management - // - // In order to properly interrupt the waiting behavior performed by this factory class, - // this timer stops the main run loop to tell the waiter code that the result should be - // checked. - // - // In addition, stopping the run loop is used to halt code executed on the main run loop. + func timeout(_ timeoutInterval: NimbleTimeInterval, forcefullyAbortTimeout: NimbleTimeInterval) -> Self { + /// = Discussion = + /// + /// There's a lot of technical decisions here that is useful to elaborate on. This is + /// definitely more lower-level than the previous NSRunLoop based implementation. + /// + /// + /// Why Dispatch Source? + /// + /// + /// We're using a dispatch source to have better control of the run loop behavior. + /// A timer source gives us deferred-timing control without having to rely as much on + /// a run loop's traditional dispatching machinery (eg - NSTimers, DefaultRunLoopMode, etc.) + /// which is ripe for getting corrupted by application code. + /// + /// And unlike `dispatch_async()`, we can control how likely our code gets prioritized to + /// executed (see leeway parameter) + DISPATCH_TIMER_STRICT. + /// + /// This timer is assumed to run on the HIGH priority queue to ensure it maintains the + /// highest priority over normal application / test code when possible. + /// + /// + /// Run Loop Management + /// + /// In order to properly interrupt the waiting behavior performed by this factory class, + /// this timer stops the main run loop to tell the waiter code that the result should be + /// checked. + /// + /// In addition, stopping the run loop is used to halt code executed on the main run loop. trigger.timeoutSource.schedule( - deadline: DispatchTime.now() + timeoutInterval, + deadline: DispatchTime.now() + timeoutInterval.dispatchTimeInterval, repeating: .never, - leeway: timeoutLeeway + leeway: timeoutLeeway.dispatchTimeInterval ) trigger.timeoutSource.setEventHandler { guard self.promise.asyncResult.isIncomplete() else { return } let timedOutSem = DispatchSemaphore(value: 0) let semTimedOutOrBlocked = DispatchSemaphore(value: 0) semTimedOutOrBlocked.signal() + #if canImport(CoreFoundation) let runLoop = CFRunLoopGetMain() #if canImport(Darwin) let runLoopMode = CFRunLoopMode.defaultMode.rawValue @@ -206,12 +216,30 @@ internal class AwaitPromiseBuilder { } // potentially interrupt blocking code on run loop to let timeout code run CFRunLoopStop(runLoop) - let now = DispatchTime.now() + forcefullyAbortTimeout + #else + let runLoop = RunLoop.main + runLoop.perform(inModes: [.default], block: { + if semTimedOutOrBlocked.wait(timeout: .now()) == .success { + timedOutSem.signal() + semTimedOutOrBlocked.signal() + if self.promise.resolveResult(.timedOut) { + RunLoop.main._stop() + } + } + }) + // potentially interrupt blocking code on run loop to let timeout code run + runLoop._stop() + #endif + let now = DispatchTime.now() + forcefullyAbortTimeout.dispatchTimeInterval let didNotTimeOut = timedOutSem.wait(timeout: now) != .success let timeoutWasNotTriggered = semTimedOutOrBlocked.wait(timeout: .now()) == .success if didNotTimeOut && timeoutWasNotTriggered { if self.promise.resolveResult(.blockedRunLoop) { + #if canImport(CoreFoundation) CFRunLoopStop(CFRunLoopGetMain()) + #else + RunLoop.main._stop() + #endif } } } @@ -221,9 +249,8 @@ internal class AwaitPromiseBuilder { /// Blocks for an asynchronous result. /// /// @discussion - /// This function must be executed on the main thread and cannot be nested. This is because - /// this function (and it's related methods) coordinate through the main run loop. Tampering - /// with the run loop can cause undesirable behavior. + /// This function cannot be nested. This is because this function (and it's related methods) + /// coordinate through the main run loop. Tampering with the run loop can cause undesirable behavior. /// /// This method will return an AwaitResult in the following cases: /// @@ -234,12 +261,12 @@ internal class AwaitPromiseBuilder { /// - The async expectation raised an unexpected exception (objc) /// - The async expectation raised an unexpected error (swift) /// - /// The returned AwaitResult will NEVER be .incomplete. - func wait(_ fnName: String = #function, file: FileString = #file, line: UInt = #line) -> AwaitResult { + /// The returned PollResult will NEVER be .incomplete. + func wait(_ fnName: String = #function, sourceLocation: SourceLocation) -> PollResult { waitLock.acquireWaitingLock( fnName, - file: file, - line: line) + sourceLocation: sourceLocation + ) let capture = NMBExceptionCapture(handler: ({ exception in _ = self.promise.resolveResult(.raisedException(exception)) @@ -282,7 +309,7 @@ internal class Awaiter { self.timeoutQueue = timeoutQueue } - private func createTimerSource(_ queue: DispatchQueue) -> DispatchSourceTimer { + internal func createTimerSource(_ queue: DispatchQueue) -> DispatchSourceTimer { return DispatchSource.makeTimerSource(flags: .strict, queue: queue) } @@ -294,13 +321,17 @@ internal class Awaiter { let promise = AwaitPromise() let timeoutSource = createTimerSource(timeoutQueue) var completionCount = 0 - let trigger = AwaitTrigger(timeoutSource: timeoutSource, actionSource: nil) { + let trigger = PollAwaitTrigger(timeoutSource: timeoutSource, actionSource: nil) { try closure { result in completionCount += 1 if completionCount < 2 { func completeBlock() { if promise.resolveResult(.completed(result)) { + #if canImport(CoreFoundation) CFRunLoopStop(CFRunLoopGetMain()) + #else + RunLoop.main._stop() + #endif } } @@ -323,23 +354,35 @@ internal class Awaiter { trigger: trigger) } - func poll(_ pollInterval: DispatchTimeInterval, closure: @escaping () throws -> T?) -> AwaitPromiseBuilder { + func poll(_ pollInterval: NimbleTimeInterval, closure: @escaping () throws -> T?) -> AwaitPromiseBuilder { let promise = AwaitPromise() let timeoutSource = createTimerSource(timeoutQueue) let asyncSource = createTimerSource(asyncQueue) - let trigger = AwaitTrigger(timeoutSource: timeoutSource, actionSource: asyncSource) { + let trigger = PollAwaitTrigger(timeoutSource: timeoutSource, actionSource: asyncSource) { let interval = pollInterval - asyncSource.schedule(deadline: .now(), repeating: interval, leeway: pollLeeway) + asyncSource.schedule( + deadline: .now(), + repeating: interval.dispatchTimeInterval, + leeway: pollLeeway.dispatchTimeInterval + ) asyncSource.setEventHandler { do { if let result = try closure() { if promise.resolveResult(.completed(result)) { + #if canImport(CoreFoundation) CFRunLoopStop(CFRunLoopGetCurrent()) + #else + RunLoop.current._stop() + #endif } } } catch let error { if promise.resolveResult(.errorThrown(error)) { + #if canImport(CoreFoundation) CFRunLoopStop(CFRunLoopGetCurrent()) + #else + RunLoop.current._stop() + #endif } } } @@ -355,19 +398,20 @@ internal class Awaiter { } internal func pollBlock( - pollInterval: DispatchTimeInterval, - timeoutInterval: DispatchTimeInterval, - file: FileString, - line: UInt, + pollInterval: NimbleTimeInterval, + timeoutInterval: NimbleTimeInterval, + sourceLocation: SourceLocation, fnName: String = #function, - expression: @escaping () throws -> Bool) -> AwaitResult { + expression: @escaping () throws -> PollStatus) -> PollResult { let awaiter = NimbleEnvironment.activeInstance.awaiter let result = awaiter.poll(pollInterval) { () throws -> Bool? in - if try expression() { - return true + if case .finished(let result) = try expression() { + return result } return nil - }.timeout(timeoutInterval, forcefullyAbortTimeout: timeoutInterval.divided).wait(fnName, file: file, line: line) + } + .timeout(timeoutInterval, forcefullyAbortTimeout: timeoutInterval.divided) + .wait(fnName, sourceLocation: sourceLocation) return result } diff --git a/Example/Pods/Nimble/Sources/Nimble/Utils/SourceLocation.swift b/Example/Pods/Nimble/Sources/Nimble/Utils/SourceLocation.swift index 4e37aefad..557e11219 100644 --- a/Example/Pods/Nimble/Sources/Nimble/Utils/SourceLocation.swift +++ b/Example/Pods/Nimble/Sources/Nimble/Utils/SourceLocation.swift @@ -5,27 +5,35 @@ import Foundation // stdlib, and because recent versions of the XCTest overlay require `StaticString` // when calling `XCTFail`. Under the Objective-C runtime (i.e. building on Mac), we // have to use `String` instead because StaticString can't be generated from Objective-C -#if SWIFT_PACKAGE +#if !canImport(Darwin) public typealias FileString = StaticString #else public typealias FileString = String #endif -public final class SourceLocation: NSObject { - public let file: FileString +public final class SourceLocation: NSObject, Sendable { + public let fileID: String + @available(*, deprecated, renamed: "filePath") + public var file: FileString { filePath } + public let filePath: FileString public let line: UInt + public let column: UInt override init() { - file = "Unknown File" + fileID = "Unknown/File" + filePath = "Unknown File" line = 0 + column = 0 } - init(file: FileString, line: UInt) { - self.file = file + init(fileID: String, filePath: FileString, line: UInt, column: UInt) { + self.fileID = fileID + self.filePath = filePath self.line = line + self.column = column } override public var description: String { - return "\(file):\(line)" + return "\(filePath):\(line):\(column)" } } diff --git a/Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.m b/Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.m index 6f7572f1d..1aad14e36 100644 --- a/Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.m +++ b/Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.m @@ -1,10 +1,14 @@ -#import +#import "DSL.h" +#if SWIFT_PACKAGE +@import Nimble; +#else #if __has_include("Nimble-Swift.h") #import "Nimble-Swift.h" #else #import #endif +#endif NS_ASSUME_NONNULL_BEGIN @@ -28,71 +32,71 @@ NIMBLE_EXPORT void NMB_failWithMessage(NSString *msg, NSString *file, NSUInteger return [NMBExpectation failWithMessage:msg file:file line:line]; } -NIMBLE_EXPORT NMBPredicate *NMB_beAnInstanceOf(Class expectedClass) { - return [NMBPredicate beAnInstanceOfMatcher:expectedClass]; +NIMBLE_EXPORT NMBMatcher *NMB_beAnInstanceOf(Class expectedClass) { + return [NMBMatcher beAnInstanceOfMatcher:expectedClass]; } -NIMBLE_EXPORT NMBPredicate *NMB_beAKindOf(Class expectedClass) { - return [NMBPredicate beAKindOfMatcher:expectedClass]; +NIMBLE_EXPORT NMBMatcher *NMB_beAKindOf(Class expectedClass) { + return [NMBMatcher beAKindOfMatcher:expectedClass]; } -NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBObjCBeCloseToPredicate *NMB_beCloseTo(NSNumber *expectedValue) { - return [NMBPredicate beCloseToMatcher:expectedValue within:0.001]; +NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBObjCBeCloseToMatcher *NMB_beCloseTo(NSNumber *expectedValue) { + return [NMBMatcher beCloseToMatcher:expectedValue within:0.001]; } -NIMBLE_EXPORT NMBPredicate *NMB_beginWith(id itemElementOrSubstring) { - return [NMBPredicate beginWithMatcher:itemElementOrSubstring]; +NIMBLE_EXPORT NMBMatcher *NMB_beginWith(id itemElementOrSubstring) { + return [NMBMatcher beginWithMatcher:itemElementOrSubstring]; } -NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBPredicate *NMB_beGreaterThan(NSNumber *expectedValue) { - return [NMBPredicate beGreaterThanMatcher:expectedValue]; +NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBMatcher *NMB_beGreaterThan(NSNumber *expectedValue) { + return [NMBMatcher beGreaterThanMatcher:expectedValue]; } -NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBPredicate *NMB_beGreaterThanOrEqualTo(NSNumber *expectedValue) { - return [NMBPredicate beGreaterThanOrEqualToMatcher:expectedValue]; +NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBMatcher *NMB_beGreaterThanOrEqualTo(NSNumber *expectedValue) { + return [NMBMatcher beGreaterThanOrEqualToMatcher:expectedValue]; } -NIMBLE_EXPORT NMBPredicate *NMB_beIdenticalTo(id expectedInstance) { - return [NMBPredicate beIdenticalToMatcher:expectedInstance]; +NIMBLE_EXPORT NMBMatcher *NMB_beIdenticalTo(id expectedInstance) { + return [NMBMatcher beIdenticalToMatcher:expectedInstance]; } -NIMBLE_EXPORT NMBPredicate *NMB_be(id expectedInstance) { - return [NMBPredicate beIdenticalToMatcher:expectedInstance]; +NIMBLE_EXPORT NMBMatcher *NMB_be(id expectedInstance) { + return [NMBMatcher beIdenticalToMatcher:expectedInstance]; } -NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBPredicate *NMB_beLessThan(NSNumber *expectedValue) { - return [NMBPredicate beLessThanMatcher:expectedValue]; +NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBMatcher *NMB_beLessThan(NSNumber *expectedValue) { + return [NMBMatcher beLessThanMatcher:expectedValue]; } -NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBPredicate *NMB_beLessThanOrEqualTo(NSNumber *expectedValue) { - return [NMBPredicate beLessThanOrEqualToMatcher:expectedValue]; +NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBMatcher *NMB_beLessThanOrEqualTo(NSNumber *expectedValue) { + return [NMBMatcher beLessThanOrEqualToMatcher:expectedValue]; } -NIMBLE_EXPORT NMBPredicate *NMB_beTruthy() { - return [NMBPredicate beTruthyMatcher]; +NIMBLE_EXPORT NMBMatcher *NMB_beTruthy(void) { + return [NMBMatcher beTruthyMatcher]; } -NIMBLE_EXPORT NMBPredicate *NMB_beFalsy() { - return [NMBPredicate beFalsyMatcher]; +NIMBLE_EXPORT NMBMatcher *NMB_beFalsy(void) { + return [NMBMatcher beFalsyMatcher]; } -NIMBLE_EXPORT NMBPredicate *NMB_beTrue() { - return [NMBPredicate beTrueMatcher]; +NIMBLE_EXPORT NMBMatcher *NMB_beTrue(void) { + return [NMBMatcher beTrueMatcher]; } -NIMBLE_EXPORT NMBPredicate *NMB_beFalse() { - return [NMBPredicate beFalseMatcher]; +NIMBLE_EXPORT NMBMatcher *NMB_beFalse(void) { + return [NMBMatcher beFalseMatcher]; } -NIMBLE_EXPORT NMBPredicate *NMB_beNil() { - return [NMBPredicate beNilMatcher]; +NIMBLE_EXPORT NMBMatcher *NMB_beNil(void) { + return [NMBMatcher beNilMatcher]; } -NIMBLE_EXPORT NMBPredicate *NMB_beEmpty() { - return [NMBPredicate beEmptyMatcher]; +NIMBLE_EXPORT NMBMatcher *NMB_beEmpty(void) { + return [NMBMatcher beEmptyMatcher]; } -NIMBLE_EXPORT NMBPredicate *NMB_containWithNilTermination(id itemOrSubstring, ...) { +NIMBLE_EXPORT NMBMatcher *NMB_containWithNilTermination(id itemOrSubstring, ...) { NSMutableArray *itemOrSubstringArray = [NSMutableArray array]; if (itemOrSubstring) { @@ -107,54 +111,65 @@ NIMBLE_EXPORT void NMB_failWithMessage(NSString *msg, NSString *file, NSUInteger va_end(args); } - return [NMBPredicate containMatcher:itemOrSubstringArray]; + return [NMBMatcher containMatcher:itemOrSubstringArray]; } -NIMBLE_EXPORT NMBPredicate *NMB_containElementSatisfying(BOOL(^predicate)(id)) { - return [NMBPredicate containElementSatisfyingMatcher:predicate]; +NIMBLE_EXPORT NMBMatcher *NMB_containElementSatisfying(BOOL(^matcher)(id)) { + return [NMBMatcher containElementSatisfyingMatcher:matcher]; } -NIMBLE_EXPORT NMBPredicate *NMB_endWith(id itemElementOrSubstring) { - return [NMBPredicate endWithMatcher:itemElementOrSubstring]; +NIMBLE_EXPORT NMBMatcher *NMB_endWith(id itemElementOrSubstring) { + return [NMBMatcher endWithMatcher:itemElementOrSubstring]; } -NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBPredicate *NMB_equal(__nullable id expectedValue) { - return [NMBPredicate equalMatcher:expectedValue]; +NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBMatcher *NMB_equal(__nullable id expectedValue) { + return [NMBMatcher equalMatcher:expectedValue]; } -NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBPredicate *NMB_haveCount(id expectedValue) { - return [NMBPredicate haveCountMatcher:expectedValue]; +NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBMatcher *NMB_haveCount(id expectedValue) { + return [NMBMatcher haveCountMatcher:expectedValue]; } -NIMBLE_EXPORT NMBPredicate *NMB_match(id expectedValue) { - return [NMBPredicate matchMatcher:expectedValue]; +NIMBLE_EXPORT NMBMatcher *NMB_match(id expectedValue) { + return [NMBMatcher matchMatcher:expectedValue]; } -NIMBLE_EXPORT NMBPredicate *NMB_allPass(id expectedValue) { - return [NMBPredicate allPassMatcher:expectedValue]; +NIMBLE_EXPORT NMBMatcher *NMB_allPass(id expectedValue) { + return [NMBMatcher allPassMatcher:expectedValue]; } -NIMBLE_EXPORT NMBPredicate *NMB_satisfyAnyOfWithMatchers(id matchers) { - return [NMBPredicate satisfyAnyOfMatcher:matchers]; +NIMBLE_EXPORT NMBMatcher *NMB_satisfyAnyOfWithMatchers(id matchers) { + return [NMBMatcher satisfyAnyOfMatcher:matchers]; } -NIMBLE_EXPORT NMBPredicate *NMB_satisfyAllOfWithMatchers(id matchers) { - return [NMBPredicate satisfyAllOfMatcher:matchers]; +NIMBLE_EXPORT NMBMatcher *NMB_satisfyAllOfWithMatchers(id matchers) { + return [NMBMatcher satisfyAllOfMatcher:matchers]; } -NIMBLE_EXPORT NMBObjCRaiseExceptionPredicate *NMB_raiseException() { - return [NMBPredicate raiseExceptionMatcher]; +#if !SWIFT_PACKAGE +NIMBLE_EXPORT NMBObjCRaiseExceptionMatcher *NMB_raiseException(void) { + return [NMBMatcher raiseExceptionMatcher]; } +#endif NIMBLE_EXPORT NMBWaitUntilTimeoutBlock NMB_waitUntilTimeoutBuilder(NSString *file, NSUInteger line) { return ^(NSTimeInterval timeout, void (^ _Nonnull action)(void (^ _Nonnull)(void))) { - [NMBWait untilTimeout:timeout file:file line:line action:action]; + [NMBWait untilTimeout:timeout + fileID:[NSString stringWithFormat:@"Unknown/%@", file] + file:file + line:line + column:0 + action:action]; }; } NIMBLE_EXPORT NMBWaitUntilBlock NMB_waitUntilBuilder(NSString *file, NSUInteger line) { return ^(void (^ _Nonnull action)(void (^ _Nonnull)(void))) { - [NMBWait untilFile:file line:line action:action]; + [NMBWait untilFileID:[NSString stringWithFormat:@"Unknown/%@", file] + file:file + line:line + column:0 + action:action]; }; } diff --git a/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.m b/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.m index 31a80d6f5..5890e223a 100644 --- a/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.m +++ b/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.m @@ -1,10 +1,14 @@ #import "NMBStringify.h" +#if SWIFT_PACKAGE +@import Nimble; +#else #if __has_include("Nimble-Swift.h") #import "Nimble-Swift.h" #else #import #endif +#endif NSString *_Nonnull NMBStringify(id _Nullable anyObject) { return [NMBStringer stringify:anyObject]; diff --git a/Example/Pods/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m b/Example/Pods/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m index 3c1110bab..4f1ce6303 100644 --- a/Example/Pods/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m +++ b/Example/Pods/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m @@ -1,10 +1,14 @@ #import +#if SWIFT_PACKAGE +@import Nimble; +#else #if __has_include("Nimble-Swift.h") #import "Nimble-Swift.h" #else #import #endif +#endif #pragma mark - Private diff --git a/Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.h b/Example/Pods/Nimble/Sources/NimbleObjectiveC/include/DSL.h similarity index 71% rename from Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.h rename to Example/Pods/Nimble/Sources/NimbleObjectiveC/include/DSL.h index 9ae06a4d1..5d20fb1c2 100644 --- a/Example/Pods/Nimble/Sources/NimbleObjectiveC/DSL.h +++ b/Example/Pods/Nimble/Sources/NimbleObjectiveC/include/DSL.h @@ -1,9 +1,9 @@ #import @class NMBExpectation; -@class NMBPredicate; -@class NMBObjCBeCloseToPredicate; -@class NMBObjCRaiseExceptionPredicate; +@class NMBMatcher; +@class NMBObjCBeCloseToMatcher; +@class NMBObjCRaiseExceptionMatcher; NS_ASSUME_NONNULL_BEGIN @@ -66,16 +66,16 @@ NIMBLE_EXPORT NMBExpectation *NMB_expectAction(void(^actualBlock)(void), NSStrin #define DEFINE_OVERLOAD(TYPE, EXPR) \ NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE \ - NMBPredicate *NMB_equal(TYPE expectedValue) { \ + NMBMatcher *NMB_equal(TYPE expectedValue) { \ return NMB_equal((EXPR)); \ } \ - NIMBLE_SHORT_OVERLOADED(NMBPredicate *equal(TYPE expectedValue), NMB_equal(expectedValue)); + NIMBLE_SHORT_OVERLOADED(NMBMatcher *equal(TYPE expectedValue), NMB_equal(expectedValue)); NIMBLE_EXPORT NIMBLE_OVERLOADABLE - NMBPredicate *NMB_equal(__nullable id expectedValue); + NMBMatcher *NMB_equal(__nullable id expectedValue); - NIMBLE_SHORT_OVERLOADED(NMBPredicate *equal(__nullable id expectedValue), + NIMBLE_SHORT_OVERLOADED(NMBMatcher *equal(__nullable id expectedValue), NMB_equal(expectedValue)); // overloaded dispatch for nils - expect(nil) @@ -101,17 +101,17 @@ NIMBLE_EXPORT NMBExpectation *NMB_expectAction(void(^actualBlock)(void), NSStrin #define DEFINE_OVERLOAD(TYPE, EXPR) \ NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE \ - NMBPredicate *NMB_haveCount(TYPE expectedValue) { \ + NMBMatcher *NMB_haveCount(TYPE expectedValue) { \ return NMB_haveCount((EXPR)); \ } \ - NIMBLE_SHORT_OVERLOADED(NMBPredicate *haveCount(TYPE expectedValue), \ + NIMBLE_SHORT_OVERLOADED(NMBMatcher *haveCount(TYPE expectedValue), \ NMB_haveCount(expectedValue)); NIMBLE_EXPORT NIMBLE_OVERLOADABLE - NMBPredicate *NMB_haveCount(id expectedValue); + NMBMatcher *NMB_haveCount(id expectedValue); - NIMBLE_SHORT_OVERLOADED(NMBPredicate *haveCount(id expectedValue), + NIMBLE_SHORT_OVERLOADED(NMBMatcher *haveCount(id expectedValue), NMB_haveCount(expectedValue)); DEFINE_OVERLOAD(long, @(expectedValue)) @@ -127,14 +127,14 @@ NIMBLE_EXPORT NMBExpectation *NMB_expectAction(void(^actualBlock)(void), NSStrin #define DEFINE_OVERLOAD(TYPE, EXPR) \ NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE \ - NMBObjCBeCloseToPredicate *NMB_beCloseTo(TYPE expectedValue) { \ + NMBObjCBeCloseToMatcher *NMB_beCloseTo(TYPE expectedValue) { \ return NMB_beCloseTo((NSNumber *)(EXPR)); \ } \ - NIMBLE_SHORT_OVERLOADED(NMBObjCBeCloseToPredicate *beCloseTo(TYPE expectedValue), \ + NIMBLE_SHORT_OVERLOADED(NMBObjCBeCloseToMatcher *beCloseTo(TYPE expectedValue), \ NMB_beCloseTo(expectedValue)); - NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBObjCBeCloseToPredicate *NMB_beCloseTo(NSNumber *expectedValue); - NIMBLE_SHORT_OVERLOADED(NMBObjCBeCloseToPredicate *beCloseTo(NSNumber *expectedValue), + NIMBLE_EXPORT NIMBLE_OVERLOADABLE NMBObjCBeCloseToMatcher *NMB_beCloseTo(NSNumber *expectedValue); + NIMBLE_SHORT_OVERLOADED(NMBObjCBeCloseToMatcher *beCloseTo(NSNumber *expectedValue), NMB_beCloseTo(expectedValue)); // it would be better to only overload float & double, but zero becomes ambigious @@ -152,33 +152,33 @@ NIMBLE_EXPORT NMBExpectation *NMB_expectAction(void(^actualBlock)(void), NSStrin #undef DEFINE_OVERLOAD -NIMBLE_EXPORT NMBPredicate *NMB_beAnInstanceOf(Class expectedClass); -NIMBLE_EXPORT_INLINE NMBPredicate *beAnInstanceOf(Class expectedClass) { +NIMBLE_EXPORT NMBMatcher *NMB_beAnInstanceOf(Class expectedClass); +NIMBLE_EXPORT_INLINE NMBMatcher *beAnInstanceOf(Class expectedClass) { return NMB_beAnInstanceOf(expectedClass); } -NIMBLE_EXPORT NMBPredicate *NMB_beAKindOf(Class expectedClass); -NIMBLE_EXPORT_INLINE NMBPredicate *beAKindOf(Class expectedClass) { +NIMBLE_EXPORT NMBMatcher *NMB_beAKindOf(Class expectedClass); +NIMBLE_EXPORT_INLINE NMBMatcher *beAKindOf(Class expectedClass) { return NMB_beAKindOf(expectedClass); } -NIMBLE_EXPORT NMBPredicate *NMB_beginWith(id itemElementOrSubstring); -NIMBLE_EXPORT_INLINE NMBPredicate *beginWith(id itemElementOrSubstring) { +NIMBLE_EXPORT NMBMatcher *NMB_beginWith(id itemElementOrSubstring); +NIMBLE_EXPORT_INLINE NMBMatcher *beginWith(id itemElementOrSubstring) { return NMB_beginWith(itemElementOrSubstring); } #define DEFINE_OVERLOAD(TYPE, EXPR) \ NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE \ - NMBPredicate *NMB_beGreaterThan(TYPE expectedValue) { \ + NMBMatcher *NMB_beGreaterThan(TYPE expectedValue) { \ return NMB_beGreaterThan((EXPR)); \ } \ - NIMBLE_SHORT_OVERLOADED(NMBPredicate *beGreaterThan(TYPE expectedValue), NMB_beGreaterThan(expectedValue)); + NIMBLE_SHORT_OVERLOADED(NMBMatcher *beGreaterThan(TYPE expectedValue), NMB_beGreaterThan(expectedValue)); NIMBLE_EXPORT NIMBLE_OVERLOADABLE - NMBPredicate *NMB_beGreaterThan(NSNumber *expectedValue); + NMBMatcher *NMB_beGreaterThan(NSNumber *expectedValue); NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE - NMBPredicate *beGreaterThan(NSNumber *expectedValue) { + NMBMatcher *beGreaterThan(NSNumber *expectedValue) { return NMB_beGreaterThan(expectedValue); } @@ -197,17 +197,17 @@ NIMBLE_EXPORT_INLINE NMBPredicate *beginWith(id itemElementOrSubstring) { #define DEFINE_OVERLOAD(TYPE, EXPR) \ NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE \ - NMBPredicate *NMB_beGreaterThanOrEqualTo(TYPE expectedValue) { \ + NMBMatcher *NMB_beGreaterThanOrEqualTo(TYPE expectedValue) { \ return NMB_beGreaterThanOrEqualTo((EXPR)); \ } \ - NIMBLE_SHORT_OVERLOADED(NMBPredicate *beGreaterThanOrEqualTo(TYPE expectedValue), \ + NIMBLE_SHORT_OVERLOADED(NMBMatcher *beGreaterThanOrEqualTo(TYPE expectedValue), \ NMB_beGreaterThanOrEqualTo(expectedValue)); NIMBLE_EXPORT NIMBLE_OVERLOADABLE - NMBPredicate *NMB_beGreaterThanOrEqualTo(NSNumber *expectedValue); + NMBMatcher *NMB_beGreaterThanOrEqualTo(NSNumber *expectedValue); NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE - NMBPredicate *beGreaterThanOrEqualTo(NSNumber *expectedValue) { + NMBMatcher *beGreaterThanOrEqualTo(NSNumber *expectedValue) { return NMB_beGreaterThanOrEqualTo(expectedValue); } @@ -225,28 +225,28 @@ NIMBLE_EXPORT_INLINE NMBPredicate *beginWith(id itemElementOrSubstring) { #undef DEFINE_OVERLOAD -NIMBLE_EXPORT NMBPredicate *NMB_beIdenticalTo(id expectedInstance); -NIMBLE_SHORT(NMBPredicate *beIdenticalTo(id expectedInstance), +NIMBLE_EXPORT NMBMatcher *NMB_beIdenticalTo(id expectedInstance); +NIMBLE_SHORT(NMBMatcher *beIdenticalTo(id expectedInstance), NMB_beIdenticalTo(expectedInstance)); -NIMBLE_EXPORT NMBPredicate *NMB_be(id expectedInstance); -NIMBLE_SHORT(NMBPredicate *be(id expectedInstance), +NIMBLE_EXPORT NMBMatcher *NMB_be(id expectedInstance); +NIMBLE_SHORT(NMBMatcher *be(id expectedInstance), NMB_be(expectedInstance)); #define DEFINE_OVERLOAD(TYPE, EXPR) \ NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE \ - NMBPredicate *NMB_beLessThan(TYPE expectedValue) { \ + NMBMatcher *NMB_beLessThan(TYPE expectedValue) { \ return NMB_beLessThan((EXPR)); \ } \ - NIMBLE_SHORT_OVERLOADED(NMBPredicate *beLessThan(TYPE expectedValue), \ + NIMBLE_SHORT_OVERLOADED(NMBMatcher *beLessThan(TYPE expectedValue), \ NMB_beLessThan(expectedValue)); NIMBLE_EXPORT NIMBLE_OVERLOADABLE - NMBPredicate *NMB_beLessThan(NSNumber *expectedValue); + NMBMatcher *NMB_beLessThan(NSNumber *expectedValue); NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE - NMBPredicate *beLessThan(NSNumber *expectedValue) { + NMBMatcher *beLessThan(NSNumber *expectedValue) { return NMB_beLessThan(expectedValue); } @@ -266,18 +266,18 @@ NIMBLE_SHORT(NMBPredicate *be(id expectedInstance), #define DEFINE_OVERLOAD(TYPE, EXPR) \ NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE \ - NMBPredicate *NMB_beLessThanOrEqualTo(TYPE expectedValue) { \ + NMBMatcher *NMB_beLessThanOrEqualTo(TYPE expectedValue) { \ return NMB_beLessThanOrEqualTo((EXPR)); \ } \ - NIMBLE_SHORT_OVERLOADED(NMBPredicate *beLessThanOrEqualTo(TYPE expectedValue), \ + NIMBLE_SHORT_OVERLOADED(NMBMatcher *beLessThanOrEqualTo(TYPE expectedValue), \ NMB_beLessThanOrEqualTo(expectedValue)); NIMBLE_EXPORT NIMBLE_OVERLOADABLE - NMBPredicate *NMB_beLessThanOrEqualTo(NSNumber *expectedValue); + NMBMatcher *NMB_beLessThanOrEqualTo(NSNumber *expectedValue); NIMBLE_EXPORT_INLINE NIMBLE_OVERLOADABLE - NMBPredicate *beLessThanOrEqualTo(NSNumber *expectedValue) { + NMBMatcher *beLessThanOrEqualTo(NSNumber *expectedValue) { return NMB_beLessThanOrEqualTo(expectedValue); } @@ -294,63 +294,63 @@ NIMBLE_SHORT(NMBPredicate *be(id expectedInstance), #undef DEFINE_OVERLOAD -NIMBLE_EXPORT NMBPredicate *NMB_beTruthy(void); -NIMBLE_SHORT(NMBPredicate *beTruthy(void), +NIMBLE_EXPORT NMBMatcher *NMB_beTruthy(void); +NIMBLE_SHORT(NMBMatcher *beTruthy(void), NMB_beTruthy()); -NIMBLE_EXPORT NMBPredicate *NMB_beFalsy(void); -NIMBLE_SHORT(NMBPredicate *beFalsy(void), +NIMBLE_EXPORT NMBMatcher *NMB_beFalsy(void); +NIMBLE_SHORT(NMBMatcher *beFalsy(void), NMB_beFalsy()); -NIMBLE_EXPORT NMBPredicate *NMB_beTrue(void); -NIMBLE_SHORT(NMBPredicate *beTrue(void), +NIMBLE_EXPORT NMBMatcher *NMB_beTrue(void); +NIMBLE_SHORT(NMBMatcher *beTrue(void), NMB_beTrue()); -NIMBLE_EXPORT NMBPredicate *NMB_beFalse(void); -NIMBLE_SHORT(NMBPredicate *beFalse(void), +NIMBLE_EXPORT NMBMatcher *NMB_beFalse(void); +NIMBLE_SHORT(NMBMatcher *beFalse(void), NMB_beFalse()); -NIMBLE_EXPORT NMBPredicate *NMB_beNil(void); -NIMBLE_SHORT(NMBPredicate *beNil(void), +NIMBLE_EXPORT NMBMatcher *NMB_beNil(void); +NIMBLE_SHORT(NMBMatcher *beNil(void), NMB_beNil()); -NIMBLE_EXPORT NMBPredicate *NMB_beEmpty(void); -NIMBLE_SHORT(NMBPredicate *beEmpty(void), +NIMBLE_EXPORT NMBMatcher *NMB_beEmpty(void); +NIMBLE_SHORT(NMBMatcher *beEmpty(void), NMB_beEmpty()); -NIMBLE_EXPORT NMBPredicate *NMB_containWithNilTermination(id itemOrSubstring, ...) NS_REQUIRES_NIL_TERMINATION; +NIMBLE_EXPORT NMBMatcher *NMB_containWithNilTermination(id itemOrSubstring, ...) NS_REQUIRES_NIL_TERMINATION; #define NMB_contain(...) NMB_containWithNilTermination(__VA_ARGS__, nil) #ifndef NIMBLE_DISABLE_SHORT_SYNTAX #define contain(...) NMB_contain(__VA_ARGS__) #endif -NIMBLE_EXPORT NMBPredicate *NMB_containElementSatisfying(BOOL(^predicate)(id)); -NIMBLE_SHORT(NMBPredicate *containElementSatisfying(BOOL(^predicate)(id)), - NMB_containElementSatisfying(predicate)); +NIMBLE_EXPORT NMBMatcher *NMB_containElementSatisfying(BOOL(^matcher)(id)); +NIMBLE_SHORT(NMBMatcher *containElementSatisfying(BOOL(^matcher)(id)), + NMB_containElementSatisfying(matcher)); -NIMBLE_EXPORT NMBPredicate *NMB_endWith(id itemElementOrSubstring); -NIMBLE_SHORT(NMBPredicate *endWith(id itemElementOrSubstring), +NIMBLE_EXPORT NMBMatcher *NMB_endWith(id itemElementOrSubstring); +NIMBLE_SHORT(NMBMatcher *endWith(id itemElementOrSubstring), NMB_endWith(itemElementOrSubstring)); -NIMBLE_EXPORT NMBObjCRaiseExceptionPredicate *NMB_raiseException(void); -NIMBLE_SHORT(NMBObjCRaiseExceptionPredicate *raiseException(void), +NIMBLE_EXPORT NMBObjCRaiseExceptionMatcher *NMB_raiseException(void); +NIMBLE_SHORT(NMBObjCRaiseExceptionMatcher *raiseException(void), NMB_raiseException()); -NIMBLE_EXPORT NMBPredicate *NMB_match(id expectedValue); -NIMBLE_SHORT(NMBPredicate *match(id expectedValue), +NIMBLE_EXPORT NMBMatcher *NMB_match(id expectedValue); +NIMBLE_SHORT(NMBMatcher *match(id expectedValue), NMB_match(expectedValue)); -NIMBLE_EXPORT NMBPredicate *NMB_allPass(id matcher); -NIMBLE_SHORT(NMBPredicate *allPass(id matcher), +NIMBLE_EXPORT NMBMatcher *NMB_allPass(id matcher); +NIMBLE_SHORT(NMBMatcher *allPass(id matcher), NMB_allPass(matcher)); -NIMBLE_EXPORT NMBPredicate *NMB_satisfyAnyOfWithMatchers(id matchers); +NIMBLE_EXPORT NMBMatcher *NMB_satisfyAnyOfWithMatchers(id matchers); #define NMB_satisfyAnyOf(...) NMB_satisfyAnyOfWithMatchers(@[__VA_ARGS__]) #ifndef NIMBLE_DISABLE_SHORT_SYNTAX #define satisfyAnyOf(...) NMB_satisfyAnyOf(__VA_ARGS__) #endif -NIMBLE_EXPORT NMBPredicate *NMB_satisfyAllOfWithMatchers(id matchers); +NIMBLE_EXPORT NMBMatcher *NMB_satisfyAllOfWithMatchers(id matchers); #define NMB_satisfyAllOf(...) NMB_satisfyAllOfWithMatchers(@[__VA_ARGS__]) #ifndef NIMBLE_DISABLE_SHORT_SYNTAX #define satisfyAllOf(...) NMB_satisfyAllOf(__VA_ARGS__) diff --git a/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.h b/Example/Pods/Nimble/Sources/NimbleObjectiveC/include/NMBExceptionCapture.h similarity index 100% rename from Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.h rename to Example/Pods/Nimble/Sources/NimbleObjectiveC/include/NMBExceptionCapture.h diff --git a/Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.h b/Example/Pods/Nimble/Sources/NimbleObjectiveC/include/NMBStringify.h similarity index 100% rename from Example/Pods/Nimble/Sources/NimbleObjectiveC/NMBStringify.h rename to Example/Pods/Nimble/Sources/NimbleObjectiveC/include/NMBStringify.h diff --git a/Example/Pods/Nimble/Sources/NimbleSharedTestHelpers/utils.swift b/Example/Pods/Nimble/Sources/NimbleSharedTestHelpers/utils.swift new file mode 100644 index 000000000..1d94b91ac --- /dev/null +++ b/Example/Pods/Nimble/Sources/NimbleSharedTestHelpers/utils.swift @@ -0,0 +1,293 @@ +#if !os(WASI) +import Dispatch +#endif +import Foundation +@testable import Nimble +#if SWIFT_PACKAGE && canImport(Darwin) +@testable import NimbleObjectiveC +#endif +import XCTest + +public func failsWithErrorMessage( + _ messages: [String], + fileID: String = #fileID, + filePath: FileString = #filePath, + line: UInt = #line, + column: UInt = #column, + preferOriginalSourceLocation: Bool = false, + closure: () throws -> Void +) { + var location = SourceLocation(fileID: fileID, filePath: filePath, line: line, column: column) + + let recorder = AssertionRecorder() + withAssertionHandler(recorder, fileID: fileID, file: filePath, line: line, column: column, closure: closure) + + for msg in messages { + var lastFailure: AssertionRecord? + var foundFailureMessage = false + + for assertion in recorder.assertions where assertion.message.stringValue == msg && !assertion.success { + lastFailure = assertion + foundFailureMessage = true + break + } + + if foundFailureMessage { + continue + } + + if preferOriginalSourceLocation { + if let failure = lastFailure { + location = failure.location + } + } + + let message: String + if let lastFailure = lastFailure { + message = "Got failure message: \"\(lastFailure.message.stringValue)\", but expected \"\(msg)\"" + } else { + let knownFailures = recorder.assertions.filter { !$0.success }.map { $0.message.stringValue } + let knownFailuresJoined = knownFailures.joined(separator: ", ") + message = """ + Expected error message (\(msg)), got (\(knownFailuresJoined)) + + Assertions Received: + \(recorder.assertions) + """ + } + NimbleAssertionHandler.assert(false, + message: FailureMessage(stringValue: message), + location: location) + } +} + +// Verifies that the error message matches the given regex. +public func failsWithErrorRegex( + _ regex: String, + fileID: String = #fileID, + filePath: FileString = #filePath, + line: UInt = #line, + column: UInt = #column, + closure: () throws -> Void +) { + let recorder = AssertionRecorder() + withAssertionHandler(recorder, fileID: fileID, file: filePath, line: line, column: column, closure: closure) + + for assertion in recorder.assertions where assertion.message.stringValue.range(of: regex, options: .regularExpression) != nil && !assertion.success { + return + } + + let knownFailures = recorder.assertions.filter { !$0.success }.map { $0.message.stringValue } + let knownFailuresJoined = knownFailures.joined(separator: ", ") + let message = """ + Expected error message to match regex (\(regex)), got (\(knownFailuresJoined)) + + Assertions Received: + \(recorder.assertions) + """ + NimbleAssertionHandler.assert(false, + message: FailureMessage(stringValue: message), + location: SourceLocation(fileID: fileID, filePath: filePath, line: line, column: column)) +} + +public func failsWithErrorMessage( + _ message: String, + fileID: String = #fileID, + filePath: FileString = #filePath, + line: UInt = #line, + column: UInt = #column, + preferOriginalSourceLocation: Bool = false, + closure: () throws -> Void +) { + failsWithErrorMessage( + [message], + fileID: fileID, + filePath: filePath, + line: line, + column: column, + preferOriginalSourceLocation: preferOriginalSourceLocation, + closure: closure + ) +} + +public func failsWithErrorMessageForNil(_ message: String, fileID: String = #fileID, filePath: FileString = #filePath, line: UInt = #line, column: UInt = #column, preferOriginalSourceLocation: Bool = false, closure: () throws -> Void) { + failsWithErrorMessage( + "\(message) (use beNil() to match nils)", + fileID: fileID, + filePath: filePath, + line: line, + column: column, + preferOriginalSourceLocation: preferOriginalSourceLocation, + closure: closure + ) +} + +public func failsWithErrorMessage(_ messages: [String], fileID: String = #fileID, filePath: FileString = #filePath, line: UInt = #line, column: UInt = #column, preferOriginalSourceLocation: Bool = false, closure: () async throws -> Void) async { + var sourceLocation = SourceLocation(fileID: fileID, filePath: filePath, line: line, column: column) + + let recorder = AssertionRecorder() + await withAssertionHandler(recorder, fileID: fileID, file: filePath, line: line, column: column, closure: closure) + + for msg in messages { + var lastFailure: AssertionRecord? + var foundFailureMessage = false + + for assertion in recorder.assertions where assertion.message.stringValue == msg && !assertion.success { + lastFailure = assertion + foundFailureMessage = true + break + } + + if foundFailureMessage { + continue + } + + if preferOriginalSourceLocation { + if let failure = lastFailure { + sourceLocation = failure.location + } + } + + let message: String + if let lastFailure = lastFailure { + message = "Got failure message: \"\(lastFailure.message.stringValue)\", but expected \"\(msg)\"" + } else { + let knownFailures = recorder.assertions.filter { !$0.success }.map { $0.message.stringValue } + let knownFailuresJoined = knownFailures.joined(separator: ", ") + message = """ + Expected error message (\(msg)), got (\(knownFailuresJoined)) + + Assertions Received: + \(recorder.assertions) + """ + } + NimbleAssertionHandler.assert(false, + message: FailureMessage(stringValue: message), + location: sourceLocation) + } +} + +public func failsWithErrorMessage(_ message: String, fileID: String = #fileID, filePath: FileString = #filePath, line: UInt = #line, column: UInt = #column, preferOriginalSourceLocation: Bool = false, closure: () async throws -> Void) async { + await failsWithErrorMessage( + [message], + fileID: fileID, + filePath: filePath, + line: line, + column: column, + preferOriginalSourceLocation: preferOriginalSourceLocation, + closure: closure + ) +} + +public func failsWithErrorMessageForNil(_ message: String, fileID: String = #fileID, filePath: FileString = #filePath, line: UInt = #line, column: UInt = #column, preferOriginalSourceLocation: Bool = false, closure: () async throws -> Void) async { + await failsWithErrorMessage( + "\(message) (use beNil() to match nils)", + fileID: fileID, + filePath: filePath, + line: line, + column: column, + preferOriginalSourceLocation: preferOriginalSourceLocation, + closure: closure + ) +} + +@discardableResult +public func suppressErrors(closure: () -> T) -> T { + var output: T? + let recorder = AssertionRecorder() + withAssertionHandler(recorder) { + output = closure() + } + return output! +} + +public func producesStatus(_ status: ExpectationStatus, fileID: String = #fileID, filePath: FileString = #filePath, line: UInt = #line, column: UInt = #column, closure: () -> SyncExpectation) { + let expectation = suppressErrors(closure: closure) + + expect(fileID: fileID, file: filePath, line: line, column: column, expectation.status).to(equal(status)) +} + +public func producesStatus(_ status: ExpectationStatus, fileID: String = #fileID, filePath: FileString = #filePath, line: UInt = #line, column: UInt = #column, closure: () -> AsyncExpectation) { + let expectation = suppressErrors(closure: closure) + + expect(fileID: fileID, file: filePath, line: line, column: column, expectation.status).to(equal(status)) +} + +#if !os(WASI) +public func deferToMainQueue(action: @escaping () -> Void) { + DispatchQueue.main.async { + Thread.sleep(forTimeInterval: 0.01) + action() + } +} +#endif + +#if canImport(Darwin) +public class NimbleHelper: NSObject { + @objc public class func expectFailureMessage(_ message: NSString, block: () -> Void, file: FileString, line: UInt) { + failsWithErrorMessage( + String(describing: message), + fileID: "Unknown/\(file)", + filePath: file, + line: line, + column: 0, + preferOriginalSourceLocation: true, + closure: block + ) + } + + @objc public class func expectFailureMessages(_ messages: [NSString], block: () -> Void, file: FileString, line: UInt) { + failsWithErrorMessage( + messages.map({String(describing: $0)}), + fileID: "Unknown/\(file)", + filePath: file, + line: line, + column: 0, + preferOriginalSourceLocation: true, + closure: block + ) + } + + @objc public class func expectFailureMessageForNil(_ message: NSString, block: () -> Void, file: FileString, line: UInt) { + failsWithErrorMessageForNil( + String(describing: message), + fileID: "Unknown/\(file)", + filePath: file, + line: line, + column: 0, + preferOriginalSourceLocation: true, + closure: block + ) + } + + @objc public class func expectFailureMessageRegex(_ regex: NSString, block: () -> Void, file: FileString, line: UInt) { + failsWithErrorRegex( + String(describing: regex), + fileID: "Unknown/\(file)", + filePath: file, + line: line, + column: 0, + closure: block + ) + } +} +#endif + +#if !os(WASI) +extension Date { + public init(dateTimeString: String) { + let dateFormatter = DateFormatter() + dateFormatter.dateFormat = "yyyy-MM-dd HH:mm:ss" + dateFormatter.locale = Locale(identifier: "en_US_POSIX") + let date = dateFormatter.date(from: dateTimeString)! + self.init(timeInterval: 0, since: date) + } +} + +extension NSDate { + public convenience init(dateTimeString: String) { + let date = Date(dateTimeString: dateTimeString) + self.init(timeIntervalSinceReferenceDate: date.timeIntervalSinceReferenceDate) + } +} +#endif diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj index 151705379..6ec49d513 100644 --- a/Example/Pods/Pods.xcodeproj/project.pbxproj +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -9,9 +9,9 @@ /* Begin PBXAggregateTarget section */ 0010F36F9D103AAE441EA8E1058A19BC /* SPMobileCore-tvOS */ = { isa = PBXAggregateTarget; - buildConfigurationList = 2C07945D0D4B6E74A445872213878D99 /* Build configuration list for PBXAggregateTarget "SPMobileCore-tvOS" */; + buildConfigurationList = 1EBC19BA904E766FE0D14F5786FC3F54 /* Build configuration list for PBXAggregateTarget "SPMobileCore-tvOS" */; buildPhases = ( - 02431E8DA7BD05BC5FCB53652033F2C9 /* [CP] Copy XCFrameworks */, + D2563F8C51D75930A6B832D6E673E318 /* [CP] Copy XCFrameworks */, ); dependencies = ( ); @@ -19,9 +19,9 @@ }; 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */ = { isa = PBXAggregateTarget; - buildConfigurationList = E501C949B30AE425F88D45B20924B113 /* Build configuration list for PBXAggregateTarget "SPMobileCore-iOS" */; + buildConfigurationList = 6098B9CDCC5E3B555285349576DFBE48 /* Build configuration list for PBXAggregateTarget "SPMobileCore-iOS" */; buildPhases = ( - 40FAC58DAEA98F43C2FFB14FD7591630 /* [CP] Copy XCFrameworks */, + EE23006ECB6E077044AB05F97C143D3A /* [CP] Copy XCFrameworks */, ); dependencies = ( ); @@ -38,13 +38,13 @@ }; B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */ = { isa = PBXAggregateTarget; - buildConfigurationList = 8E564D619C8616F818D3573B794C886F /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */; + buildConfigurationList = 73698F5E307483982BBBFFD4EE9A21F0 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */; buildPhases = ( - D0A53AC835CD5175D3B56B19DECD8416 /* [CP] Copy XCFrameworks */, + 11D8A917FCCBD88C149BC69256451AC8 /* [CP] Copy XCFrameworks */, ); dependencies = ( - A987F953A0490112A1605EC8FA572323 /* PBXTargetDependency */, - 6B231096D4A422DA8B8E70567CA5D392 /* PBXTargetDependency */, + 56E6B2FE158AF5399DE266D405BF66FE /* PBXTargetDependency */, + 163B717C1BF1E4C088399BAFB95F16B1 /* PBXTargetDependency */, ); name = GoogleAppMeasurement; }; @@ -55,2742 +55,3199 @@ 8C5B5926777AB8C2838BC915F74F1BC1 /* [CP] Copy XCFrameworks */, ); dependencies = ( - 68928AE805950B7A5518B33BE9B34A30 /* PBXTargetDependency */, - CA29DADBFF0D1067966300D328852D05 /* PBXTargetDependency */, - E585386C811B08B9F3323FDBAE2E26AD /* PBXTargetDependency */, - 319FD69E2086698F7992A189F41910BC /* PBXTargetDependency */, - B4CDBD95A7242A6BAE0EC8BD85A44A83 /* PBXTargetDependency */, + 8F771E89EC8F67F91A6579ECB91ABE57 /* PBXTargetDependency */, + EC1FA60387FB3F7E4F38131FA528719A /* PBXTargetDependency */, + CC3D1D025804402805AA1086731D259B /* PBXTargetDependency */, + 4D30CAB7A72A43925B7482224C17D90D /* PBXTargetDependency */, + 80456ED01B0F1704445BA7C87ED43165 /* PBXTargetDependency */, ); name = FirebaseAnalytics; }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 002537927A2B4FF384F5E04F646F849C /* ShareUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = F545BBA9094C526C1501712CDDA78D9A /* ShareUtils.swift */; }; - 00E5C4D6775D3CC020A8F60968814A0B /* FIRCurrentDateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3663379ECD63B20466EF5967266590 /* FIRCurrentDateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0112F004204DEA54BA43699A384ACC05 /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = A0643F70B7B47E01C9A928D1EF6DEAD2 /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0175C4455873EB711E06E1DD13C7B309 /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61EBA6411B378215A7B76D04C5DD598E /* ThrowError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 01964FD43092972CE2DA2B2179420B25 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB8F1E10FDD04E9CE3BE4DB16B3043EF /* Filter.swift */; }; + 002537927A2B4FF384F5E04F646F849C /* ShareUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FA4E06192FBBD2D464EEB4AB46FCC50 /* ShareUtils.swift */; }; + 005CFE22A2ABBABB461FCF31E90DBAE9 /* ExpectationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF194C25B34AEA58DDC39968922E81AC /* ExpectationMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 01408ED940F0C4BC25688141CDA45895 /* IQTextInputViewNotification-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 01B7A0F12119250D0C87E0712F834199 /* IQTextInputViewNotification-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 01F118752BAFCE3B41C88F3575DA908A /* SPGDPRCategoryDetailsViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = F8C910DBDF5A6D2D1FD47EEAE69D7867 /* SPGDPRCategoryDetailsViewController.xib */; }; - 02B3BE229350BE25AC8DC14AAE1A13D3 /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 28D4C48FDBEBBB97BC27045B848FF1A0 /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 02CFC4E21EAF18B42E54076497D39991 /* QuickObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F50E71508CD580057F9C19374CC8111 /* QuickObjCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0219FE757B9413E61775A6BCB6B5834D /* images in Resources */ = {isa = PBXBuildFile; fileRef = 8BC7AF51FA2F0826802F6A36F319AEAE /* images */; }; 02D53E0C5AEE5D7155F47989839045D9 /* SPAppleTVButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 670261981CE4CA4F02735BAF553CF466 /* SPAppleTVButton.swift */; }; 036CBB08E74433519935991439C03522 /* ConsentViewController-iOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1840EBC85C38B3D34E599412FD06EE5F /* ConsentViewController-iOS-dummy.m */; }; - 042332EA4C925731CF5D532F83EBE9C9 /* Quick-tvOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 815EB9734D8C27D82374EA956EDBDFE3 /* Quick-tvOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 04FB3EE8176CA2D3D2DCE74AB0FB7F84 /* UIView+Hierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CAA96145FA19BE9F9B58715D0DDEF2A /* UIView+Hierarchy.swift */; }; - 05054ECBA9EFF7DB67061A6D552B7BB0 /* SP_Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 3AC41A4E33416989A7D8796B73BA4A07 /* SP_Icon.png */; }; - 051F63FC41ED071369213C9AD5B32AC4 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 89A886FC7EB0309BC0B6EF4FD2377D61 /* FBLPromise+Async.m */; }; - 05AADC98BDAAD33A7C737F71325183D1 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = B5853F140A27DF91481E63FF8B01194E /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 05AC9BC63148EA7467217D8502618CCE /* RequestDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEF183E42EC848C5FD513A7BEC3AB0E7 /* RequestDetailViewController.swift */; }; + 03D0213609AF47754608B4D421764EB1 /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 480A6F751D5CC62587A6E70F578A7252 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 048DE687F4DA16325F28D4A9F555A7F6 /* AtomicBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6958407BC993A53D89D27E4AA038B74E /* AtomicBox.swift */; }; + 04F53977B7E98FB594E0CC339C38A4D9 /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED4C44088D195E59E09E786F41DAD355 /* Map.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 04FB3EE8176CA2D3D2DCE74AB0FB7F84 /* UIView+Hierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA8CD736A98F2741BD96AF9CFB0498E4 /* UIView+Hierarchy.swift */; }; + 0598E3FB68037697F03D693581DC3BB8 /* AssertionRecorder+Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA26FA80CF19C1376665161D157B339A /* AssertionRecorder+Async.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 05AC9BC63148EA7467217D8502618CCE /* RequestDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8900858EF8CA1647169B147D2791DF67 /* RequestDetailViewController.swift */; }; + 05B22043CF9AAD54DF8530179AC5B74B /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A5B85C33CEAEF1D6C35FD328C4D76F4F /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05C024C8DC888045E08C3E15D526FBFC /* SPString.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA6B5382DCD05DA49AE8667BAAD85D46 /* SPString.swift */; }; - 064822D707C9D7FB7FE257A3E9CFE787 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = EC43BF4EE2CB5F1B08821248B0A321D0 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06495B5EBD9036841EAEBD8BBE4FEC99 /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = E040BACA9612D744000329AA00281651 /* BeLessThanOrEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 0661E9525E86F6A4BE065C4865DEDE6D /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = DAAEE94E181881930B3A616D1E8C8189 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 06A600C748A696386910923296F2F5E9 /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 691147EC323A13E5ADFBE451288ECDF2 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 077DFACEABBDB01951131AF0E5A173DC /* Nimble-iOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F302D73CDD48B864D4CDC0EF0A721D /* Nimble-iOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0645909EAD097C6E2EE313FC0F4D78A1 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E616169FBC8240945FC48D592274B4A /* RaisesException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 069E8C5D6394E382702451CCF591A765 /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 1789C906329962E5457BC43ADCAB742A /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; 07859B68B5A050F9A259B4E7115C26E8 /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = E022694EBD639B47976FDF834FB1C922 /* Date.swift */; }; - 079BB52D4F83360075376E744ED49821 /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C52ECDCD905E74708881137ADAE8164 /* FBLPromise+All.m */; }; - 07EA7E278EE885FDE69A3EEE49BC568F /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E533FF1F65553BEA49075A45649FAD8 /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 08C4A098A74D4D121A85CD0A906387EF /* UIView+ParentObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3773D6E23F79E376BE24670850083A07 /* UIView+ParentObjc.swift */; }; - 093EAB67EFF3C5AD121131B05D2F9474 /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4B16CD22C1AD2CCE2DC7CB454AF688C /* Config.swift */; }; - 09440F783DF7B10F03B206409201A508 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 3BEEEBEE99D5EE87F9174D9AEDE948BB /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 095408B9E3BD03874669115E390B6825 /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = F99323A8C236B9F091BF10F94BE6D3EE /* EndWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 09DA178729FFDF543147FD52DE547044 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 309C0270C20A21A240AC4C4C13ACF54D /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 080CC7053A2F2C7D273326D36A969C35 /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7006A5366815E0D1A1AC0BC96AF85400 /* AllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 08765EEB98CF088F7263077316CB1105 /* IQKeyboardToolbarConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1BEC02223C75794AFCD195F68ED8447 /* IQKeyboardToolbarConfiguration.swift */; }; + 08C4A098A74D4D121A85CD0A906387EF /* UIView+ParentObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 237601B38F13A3670A4070C1CAC6862D /* UIView+ParentObjc.swift */; }; + 0927772B94F2E0BEDEC2DA39580C19B2 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 309C0270C20A21A240AC4C4C13ACF54D /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 093EAB67EFF3C5AD121131B05D2F9474 /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AEFF9CB21CFE2C6E9CABE1E8FC2049E /* Config.swift */; }; + 09A8CA94D3D946B6E3A248495C95E5EA /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = CE83326423A35E77F8489B85BACF722B /* pb_common.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 09B28A835027614014E7D4945121DA5E /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18FC2954F1FB2A2E4820D10D9B873A50 /* HaveCount.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 09C209A2FAC47F3BE1E49B1C6D90AAC8 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 00760845D8B0C5DA675FA4CC4DE50940 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09E91ACB0667F1A80B81A95B21FBC90D /* IQBarButtonItemConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E054BBC07794A97A72D7F5FD34898FF /* IQBarButtonItemConfiguration.swift */; }; 09EC8C63446993BCD771BFBB29D6EDF5 /* UIApplicationExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA758438A6F939B8785F036B8FB7EC9A /* UIApplicationExtensions.swift */; }; - 09EFF04EA54C003882DD98713A76743A /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD827B0E0F1216CE3BA04D9A8CE4F55 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0A25294DC920C89DEC0C266EFE8E30D9 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DDC056DD3CF8CA9F8E3DE9DADF0C /* MatcherProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 0A424F89D8D1C9A6F5EB8A196FC446AF /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = B41FE3E86B3EAF6DB3508ADFBF9B331B /* BeGreaterThanOrEqualTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 0A5D3DB59C7C638CAEE278B62C910649 /* IQKeyboardToolbarManager+Toolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FBB5CE945BF34010FC34066F5B55095 /* IQKeyboardToolbarManager+Toolbar.swift */; }; + 0A027154BD8C18CCFEFDC6FBA4480484 /* IQKeyboardInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7C2329C3E94A50D0854E8A86D2E0C27 /* IQKeyboardInfo.swift */; }; + 0A0E259F7830642BB6611CACFA1059BB /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F964FBA416ED6D27F11DAAA6C0D730B /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0A528D1CD706A0D187C87AA488547FE2 /* RequestTitleSectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1CF9482DF9831CCB3E533ACFE2AACC24 /* RequestTitleSectionView.xib */; }; + 0B333576C998A22F40A9F863C766600F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; 0B4403F7BA9B11EB639F3ED2492CA10D /* SPMessageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 022AE72E29CD671904856E3584C975F9 /* SPMessageViewController.swift */; }; - 0B48833C1CCE472EF7535058CF3BDF6E /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = FA86756693B9DB9926E8FCA51F4C36D9 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0B6F04CE2EA80488636D90C4A8C86096 /* ContainElementSatisfying.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C6E0A6079652131BBD0DBAEEAC0EFAA /* ContainElementSatisfying.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 0B732EC53A3809F2EAAB812ED6D69A4A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; 0B8D62242B8BA81792F4044EB6747DE2 /* SPFocusableTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F045FC917421FFB4E16A9C05BD0B27C8 /* SPFocusableTextView.swift */; }; - 0B9CDFB5DEF9E5F1F222268A9EFBA97A /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B3240D98DC2763C0FBE6B506C6FE0D6 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; 0BA117D41AE7DF743E2BD691BD9E85B0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 886B70550F3C22CC20F9B77783E267E6 /* Foundation.framework */; }; - 0C561D06DD0FD16622D6C4759DEF1829 /* QuickSelectedTestSuiteBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 859CEF6FAAE11636D81A3943E0FED6DB /* QuickSelectedTestSuiteBuilder.swift */; }; + 0BB4D2CF32A898D12060CCC1E30F258E /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = F4717DE3C7C32C18CA230DEF9AE3D3FE /* PrivacyInfo.xcprivacy */; }; + 0BCC9000571E193669B73A666B8A3D6A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 0C54B693C4A8C43E728438EAF9E2096A /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B9096FD1A4F1C96E2829FA42428F04D /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C7E8C6D76B84FE123ACE539929AC205 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 983369F50E07F986B7B75FE69228C2EC /* FIRLogger.m */; }; + 0CA9FC6CAA57112356FC3437B7C25112 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = BBBB1C27BF4880E7D44DA1EA3A17A658 /* GULNetwork.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0CC428ABA928E852A1BD0DB497652191 /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B12C2B2013EFCA0F1FEB1D5379405A8 /* FailureMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 0CE1F7EE062F835142B3670F070B38E2 /* SPGCMData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00BA232A188CE8CB8BE0617C8DD20B4C /* SPGCMData.swift */; }; - 0CF1461DEF6B2B8377AD34DBC8556318 /* IQKeyboardConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 934913155FE9FC08620A127174CFC884 /* IQKeyboardConstants.swift */; }; - 0E0FE0B8B2BDCACB5ECEF62EF3375B80 /* SPGDPRVendorDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DFD25270998D2DDE6B8FC4CE1F1E2368 /* SPGDPRVendorDetailsViewController.xib */; }; + 0CF1461DEF6B2B8377AD34DBC8556318 /* IQKeyboardConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = E62B48AD78A8199016E9CC780B0C438D /* IQKeyboardConstants.swift */; }; + 0D8EEBB9CC617942ADB52211DD0BBECF /* Behavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 259EFEA7087E5468175533431A8057F5 /* Behavior.swift */; }; + 0D98860FE102C85029C9EF08AF393538 /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = CF5214681ADBB06F82221BD6E6C63ECF /* GULMutableDictionary.m */; }; + 0DA7CF0CB9572DF213806235E77E833A /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E41CA8AA74470D540AF0516CAAB225AD /* PrivacyInfo.xcprivacy */; }; + 0DC989E3B702C52A41143EADDCCD974B /* IQKeyboardReturnManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE3ACC9919EBFCC1AB3449F164F1C80 /* IQKeyboardReturnManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0E0AE17B0067ADB8EDDA24CA8B061DD0 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2F037708CF295D855EFDAD564C8EB8 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Public, ); }; }; 0E35C54CF0CA441B4185FDC10F9F2804 /* Pods-Examples-ConsentViewController_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D15D3DB152A6F0E9F5C482B377B5F225 /* Pods-Examples-ConsentViewController_Example-dummy.m */; }; - 0ECBF4523F22B3D4EA522A64F611D325 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A41324431E70A8A5D156D556509325E /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F1E0CA4D885CDD10E7337E870AFDFEB /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = CC3FED565A6CA2CA259AF2EEC3466425 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F48905042D68AF4F32F318969AA26BF /* QuickSpecBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 5720017BA09B4934FF19D9518B636B7B /* QuickSpecBase.m */; }; + 0EF5251B4830B5B176F38213B451319D /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E0FF0EB4ABF09B6C32D854A470072E8 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; 0F92C4B025204616701437DB215EBF46 /* ConnectivityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F469EC0035C69528C810216676EAA16 /* ConnectivityManager.swift */; }; - 0FA134DCCE57BCF3327804C773B459D9 /* SPGDPRManagePreferenceViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C03190257F1960B9B76BE102566E21AD /* SPGDPRManagePreferenceViewController.xib */; }; 0FE07A316F2174353CB169F2426F874D /* SPLocalStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 544D049FDBD11D7D2116C49CE621A93D /* SPLocalStorage.swift */; }; - 103BDF12D041DAEF170E7D55C51DA3B9 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 755B7B0C36656BD783592B3D323840D7 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 105D29C43A7D9CFE16108D41940ECBDC /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = DB2B7DC94D8855BFFC13168F43F0437E /* FIRInstallationsHTTPError.m */; }; - 106E256142B7A2C1B3291AF5D1BEC2AB /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FF30CD13696FD7A58825344738F12F1 /* BeGreaterThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 1054F8E57CB5D3E24A56017601184463 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = B1BEE24BA36FDA58A106C56809C0610C /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 106295D97388A896BBADD5F46794B9D2 /* AsyncWorld+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3B7F216AFAC272B8A629EBC12FA2E0A /* AsyncWorld+DSL.swift */; }; 10A9C60521259FEC70E382CEFEF1D4DA /* ErrorMetricsRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E61BABB7274D17637E09D5A58A03EFB /* ErrorMetricsRequest.swift */; }; 10AA1B43CFA96387A9A7C7B95769137F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 116CFA08BF9F55C07F615A9F795E7EEB /* CwlCatchException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AD3A4D450A2888AED931AF0FCDD38BA /* CwlCatchException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 120616E477FC9E0AA8BE194EE80238B7 /* SPGDPRPartnersViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4261DEFFFD9A94613A8785C9274D9CFB /* SPGDPRPartnersViewController.xib */; }; - 121CFD36C956323C6CC28B73CE53D7E7 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = FD5AA4B45035B9981FF7BD5B20966813 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12291DF40E73C467FA711D13E42E7AAE /* Equal+Tuple.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D755C57BF1B04B906F74F106928665C /* Equal+Tuple.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 1238A9819FF5C4984C57031E9A6B8C97 /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = B1B881F92E526A8209413F2ECC36111C /* FBLPromise+Validate.m */; }; - 12D06C9C16E2AAD1E58609B40375602B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 131E3410A9CB4365F4B6D39AC2E3CA0D /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3459CF29818A9903902E78A70468F8D /* ExampleMetadata.swift */; }; - 13280F0D71D833955A2D7D2350C9D554 /* PostNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D9EC2C8F5E9B4BB7A7B1FE5BA59C862 /* PostNotification.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 132F5127472AA5E6A4E81EB98CBFB3F1 /* SPCCPAVendorDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DC7D803B015186A369CD4EEDDEA702D5 /* SPCCPAVendorDetailsViewController.xib */; }; - 1386EE91D95678826FD49E96EFB2CEBF /* FIRTimestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = E64A915B64F830EEDD19CD122EBDA01E /* FIRTimestamp.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 14013781D68D24E9CA22D1DFFF4A57BC /* IQKeyboardToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4803177A0B10612AD80F82FA591AC858 /* IQKeyboardToolbar.swift */; }; - 1486A90D9BC9A30A3B37EA50467FDEAE /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 15D6C67FDC071D6EBE3063BD5AFA8121 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 149963B4E41DAB960398346E62E6C43F /* BeVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2747E5052238442DF33536DDD1F2A33 /* BeVoid.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 14A3E693D258756A9DC27670D78E46A4 /* Wormholy.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5C5D437971F6D991D20A6E5F5D3B8A0 /* Wormholy.swift */; }; - 14C357E4F33A7E1108A7532BE932809A /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 64B64F867C17E1AA06D73224AAB76E2D /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 14E79E04743C4E32079D996F8FD928FE /* Wormholy-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DBBC8EB45CF6569D76E1334BD431BD0 /* Wormholy-dummy.m */; }; - 1515D28BDA45B07AA3AFD1EC8CCF0A4D /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = 33E288796077779AB76E10F54206074F /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 154BA734A492E470746B950518BC93F0 /* IQKeyboardAppearanceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 017E4B6465E0C7525381577057A7B2C1 /* IQKeyboardAppearanceManager.swift */; }; - 1582A5800669CA8543B1FD8BD742A322 /* QuickConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A550D199A537903278DAC967EB2606A /* QuickConfiguration.swift */; }; + 10BB5BD599785055C092310B1FED7485 /* BeVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18C8FD65ACC0A1178BF37AB4EC3186DB /* BeVoid.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 10EF5E97991D442245AF7A2E29030684 /* AsyncBehavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FF007DE16FC76B92D2B471ADE891BED /* AsyncBehavior.swift */; }; + 10EFEBDEEA7241A841CBA5CE3452A60C /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 740097A017371498ADAAA1D0AB5B7F1C /* pb_decode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 12AEFB4DEFC2627E558D99A56F68495E /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A69621B2FFC5BDB799083519D042BA81 /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m */; }; + 131A2352CC8213EE7F580146D3A70338 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = A46E3B649881FB5DBD58A006029D4A9C /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; + 135FC315A97F8A2CE4F1D0BB470B1603 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = DCF101A454E3B6E2A06629217D2236D8 /* FIRInstallationsIDController.m */; }; + 13C2FD16E9B856418787A685B49DB321 /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDA0BEEBE00BD74FC0487862440E6BFC /* BeNil.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 141DA98037BFADDA0F32291A522BB3D6 /* TestSelectorNameProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26484551773621D3B85EA2980BF9C36E /* TestSelectorNameProvider.swift */; }; + 14470839BDDE9874905A805E5C06BCBA /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = 69211393A493FE597E264D3C509449FE /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 14A3E693D258756A9DC27670D78E46A4 /* Wormholy.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED1FC96C6EDA99EF67C2DA3C4A33582A /* Wormholy.swift */; }; + 14B6CD10CEEBAE2E97DD01C6ACCCEE65 /* AsyncTimerSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 475D9F18CAAD368552304C5852F05426 /* AsyncTimerSequence.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 14E79E04743C4E32079D996F8FD928FE /* Wormholy-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CFEF89211FE63A0A4B6ADD195A259172 /* Wormholy-dummy.m */; }; + 153221793E0474B7B93799990CB4989E /* Negation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77C1460EBE5ED2EA5DA2743DF370336D /* Negation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 154BA734A492E470746B950518BC93F0 /* IQKeyboardAppearanceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2B165934E9839F38ACCAC3155B9E1AD /* IQKeyboardAppearanceManager.swift */; }; + 15B9EB4CD4324D010E4798EC18AC7662 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AB648CCEE84EE032BC3748305CA25FA /* FIRApp.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15F7859A5D597281BEE4F7B58343F8E1 /* SPError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F85113A0AACDC00A440D14420910AE6 /* SPError.swift */; }; - 164DDD5B592A2A76DFC0AEA5625468C5 /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = DF0AF3A3FEA5052A9E6F4A2EF769DE92 /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 16ADFBF5F416B72A67F12B11933B3D2C /* WHCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70DB089D17A3FB29EF97D79E2DD93541 /* WHCollectionView.swift */; }; - 17CD423C00AAB14CD4EF14A876E9A1CE /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = EC949CD0164BF153DCE350A7138FEEA2 /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1882D0B58FBCBF538FFC2C8049AF2289 /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61EBA6411B378215A7B76D04C5DD598E /* ThrowError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 188E5BBF0DA369415205980E7F2EC0D3 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = F7707F3F0889C0C9C59F2BB31C131DFE /* PrivacyInfo.xcprivacy */; }; - 18D09055F466429C8162111618316F29 /* HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F22DC1D88529006BCFD403725F2939F /* HeartbeatsPayload.swift */; }; - 18DE42B17DD54EBD54E91C9F1DEEB361 /* ActionableTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63F91F45369096A820F02644183B5D6B /* ActionableTableViewCell.swift */; }; - 191F469716FE9D497DABF0FE4AADE480 /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C5A44B76A3D4D82D166B3640F49C77A /* Equal.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 1925D49EDCF5E0591A958ECB10996C5C /* NMBExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 901A3A8C529AD64155E3B230DC8D2744 /* NMBExpectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 196645F0AB4237F134F004FFC2E6432C /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 34242E996D5C8423D51AABA60E432F74 /* FBLPromise+Retry.m */; }; + 16ADFBF5F416B72A67F12B11933B3D2C /* WHCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B789CF2E82183FA849B2EE1AE3EEB80A /* WHCollectionView.swift */; }; + 17E5817291D1245A9F5B1ECED5A20613 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C58E8D9EEFDCDCAA11A3C5873FCF26 /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 18520690BEF54206E7584E6CCF103B32 /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46DC532A2458C8E24116BF023C0C228D /* World+DSL.swift */; }; + 18DE42B17DD54EBD54E91C9F1DEEB361 /* ActionableTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AF44F0431C5517FC97624B819A93234 /* ActionableTableViewCell.swift */; }; + 194C6A69F5CEFA8B647322223F3A1E11 /* URL+FileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72C7F44C43C5690DC0B883678B1A6DCB /* URL+FileName.swift */; }; 196B47392EE25ECDE796E984CDACAEFB /* SPGPPConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BF731E1A10A5B0E656AC139B62F8213 /* SPGPPConfig.swift */; }; - 19820A6F5E0349A8B8B18DA554277051 /* WHBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 752EF78D58BDF725929F2BA05E41072A /* WHBundle.swift */; }; - 1A0550D511DAF75F84A5DBC7BB08B9D7 /* CwlCatchBadInstructionPosix.swift in Sources */ = {isa = PBXBuildFile; fileRef = 284623473428AE00AAA189382025D8CE /* CwlCatchBadInstructionPosix.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 19820A6F5E0349A8B8B18DA554277051 /* WHBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DC4E9EF6EB31ED585E5F26358A9AB74 /* WHBundle.swift */; }; + 19A4D6EC725DAEAF6B356A41A2F42AA6 /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1AE3F717FE3E0E66C2B39495FB5A811 /* ThrowError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 19A8BA55445BDFF3673B440428CF20F2 /* AsyncWorld+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3B7F216AFAC272B8A629EBC12FA2E0A /* AsyncWorld+DSL.swift */; }; + 19D605E74EEAC94D578B9E0535D8B722 /* SPCCPAVendorDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DC7D803B015186A369CD4EEDDEA702D5 /* SPCCPAVendorDetailsViewController.xib */; }; + 1A2024BCE25A33C62313B1131A349D55 /* CwlPosixPreconditionTesting-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EC13EE03CEE8CE6A374E6B796A5FC24 /* CwlPosixPreconditionTesting-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1ABECC35106C9F2E17542ADE169DF594 /* CwlBadInstructionException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33C6E68936062BDC159B49D3849FB9A0 /* CwlBadInstructionException.swift */; }; 1B19AEF1438CB1242A40D3E2CA04909C /* SPPMHeader.xib in Sources */ = {isa = PBXBuildFile; fileRef = E809C61DAFA64E047AFD6934B3D368B1 /* SPPMHeader.xib */; }; 1B1A5EA137A86DACEE1E2EC63E6C5919 /* SPGDPRPartnersViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35A574F4B3BD123791C31E94F754B3BA /* SPGDPRPartnersViewController.swift */; }; - 1BFA4ABF251291148F55384528F10D38 /* IQScrollViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4A607350DE79A37FDB354A47F15B41F /* IQScrollViewConfiguration.swift */; }; - 1C0DFABE04942948E916F4300E9DCF1D /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6F5B8E77427FACDFD1FCB9B112E01B4 /* BeCloseTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 1C80E90501B8B0A10AD8041A3657C11F /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5EA81568F79ADF433E8D60D5FAB28B30 /* BeLogical.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 1D015364917691468C7F86970E977DBC /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = D3876108CB5C02CDEF3FBBCF054D49DE /* GULNetwork.m */; }; - 1D73C013BEADC1C65C37DD3DA1C4A4B5 /* IQKeyboardReturnManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 877511B4B35606AC2C50B9852F202BB3 /* IQKeyboardReturnManager.swift */; }; - 1D865AD0B8E532D1195118B9403BE6CA /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E4CB67CE83A4AEF9D33F91EF906307F /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1DB025C4433CC812AD91D07DBD09E5C6 /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 04CE77A17EF9DBA011C2708BE08947F3 /* GULSwizzler.m */; }; + 1B7A8F55CFCFE073C5C72C48977722B3 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B08161A2B63C49591A4C21B2AEC49EC /* World.swift */; }; + 1BAF203C3626D3820631D4635FC175C7 /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 97C08F366011ABF5B61B5D428C2A32B0 /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1BFA4ABF251291148F55384528F10D38 /* IQScrollViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = F43C191D5EFD4AA4564971E2F3E68FCF /* IQScrollViewConfiguration.swift */; }; + 1D4D62C7EE1C0CBADAC8F18A0FD319FB /* IQKeyboardReturnManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4847673071B546336221625AD9A94683 /* IQKeyboardReturnManager.swift */; }; + 1D68793DEB8218A1E7A36E9125E50F20 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = C9A9B7E43BDAD2F718FFD17A863D0A84 /* XCTestSuite+QuickTestSuiteBuilder.m */; }; 1DB1633C61DA140AF6E7BD63826CBC27 /* SourcepointClientCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBB9A9F0E5F0ED975F2A1A1AA5A8A5EC /* SourcepointClientCoordinator.swift */; }; 1DF9387949CFB08A4EE564C6EE1B0D0D /* Pods-Examples-SourcePointMetaApp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F30A2BF8247E3B49846E08BF91D6D6F /* Pods-Examples-SourcePointMetaApp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1E053EA3E972D66892D8AA539B0EF8B1 /* jest.config.json in Resources */ = {isa = PBXBuildFile; fileRef = F56C090F1C9366C37AB253AAB9FE1A05 /* jest.config.json */; }; - 1E6C0EC9F543EAD0F79B7C72C4DB315D /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 3460BF7473AA715C31E0ABAE13FCC42B /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EC424D0B35B56268A4DDD544BC3598A /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF1E91AEEA40055B4C9EBB4F98DF1FF /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EE64A869E61174C340E75D9ADA34D63 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 1F23F2351BB9D3736E213A5A749487EF /* HooksPhase.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4C600042597B3B8F838711B5AED3258 /* HooksPhase.swift */; }; + 1E1E1DE975154FFCC5E4D108CF9B8EEE /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73B841F3C3994F9FB5964CFADC739D15 /* BeEmpty.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 1E6E0992BF3458CCEA7F98CBB9ADE2CA /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 59C79470037DDC297119D5F6E19B71ED /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1F3B13CB4D8ABB3F2AD8AE85C72BF328 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FDD93343FCF19CFFE387161EBDBA43B /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Public, ); }; }; 1F5816EC51D2E6BC36187BD057F475DC /* SPGDPRVendorDetailsViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = DFD25270998D2DDE6B8FC4CE1F1E2368 /* SPGDPRVendorDetailsViewController.xib */; }; - 1FC1DFC0B608CE9C0AF268C05F97581D /* Pods-Tests-AuthExampleUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 27768312B574C1C195B5DA118542D5DA /* Pods-Tests-AuthExampleUITests-dummy.m */; }; + 1F6F6626C0CE2411BB510B9F89E28B0C /* jest.config.json in Resources */ = {isa = PBXBuildFile; fileRef = F56C090F1C9366C37AB253AAB9FE1A05 /* jest.config.json */; }; + 1F7BE94B345F840E50ED0C82B136A413 /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = B07C103C97EA779BB2E3F8418929E9EF /* Contain.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 20063354541D068DE84E06668361B094 /* SPUserDefaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = F82FF19FFE4F10307AE69709C965B235 /* SPUserDefaults.swift */; }; - 21B40D0F2A0AC0BA50E496AAC0ED6AB1 /* QuickTestObservation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D4A25F124618603C0420916AC3FD9A3 /* QuickTestObservation.swift */; }; - 21F825E922668A4067E648C62FB32FE4 /* NSBundle+CurrentTestBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECDCF0F3A30E9CE7ACD3E327E2BB92D2 /* NSBundle+CurrentTestBundle.swift */; }; - 2279A5DE0C2589ADD4D08D3AB750AA09 /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = E040BACA9612D744000329AA00281651 /* BeLessThanOrEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 200BB60276088AC5C663547014DB10E5 /* AsyncSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = E97532B3008EAD598A48D9E01B06B2B7 /* AsyncSpec.swift */; }; + 20C4A97DA1AF0A39F61F0A6DCE0A9349 /* SatisfyAnyOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5632689C6FB84E1275F7312AAC7B9057 /* SatisfyAnyOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 20F33144FABEFFDD570E3540FADED175 /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3DE70D4B74186544DE35040F08B1F68 /* BeAKindOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 20FE1FC4EABBDB36F4AD00B851123A87 /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = F12B154BCE2F829B35E14B1572A6A11B /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22484A83A78FADE7FD2803E90FBDCF82 /* GoogleUtilities-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E8B44AA61F315BDAD17181D9386F5FB4 /* GoogleUtilities-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 22AD547E4A39714B5A361ECE2E0CBFB6 /* StateNativeToCoreAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC6BF0CBB80DC543EA9A8290A1EB96A8 /* StateNativeToCoreAdapter.swift */; }; + 22C77BE8A58417F12686AC4DC7B03DE5 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 84B95C43D7B6F56248AD75135BE05088 /* GULLogger.m */; }; 22C980BB64F32D3A17A86D29E08AFBDE /* SPGDPRNativePrivacyManagerViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = F8E495568942DD4F992BA43DDA0C4D7A /* SPGDPRNativePrivacyManagerViewController.xib */; }; - 22D2A00BE65B6A06590D35EE5C36B38E /* HooksPhase.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4C600042597B3B8F838711B5AED3258 /* HooksPhase.swift */; }; - 234C61CAE82B1B4CE2F98253823F8EC6 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B7AB33041C6A6989A361F97925C4362 /* Storage.swift */; }; + 230937F1917C94B58F9C4369D9DE3850 /* AsyncDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95F0052081268DFDBE4A0120A806FDDD /* AsyncDSL.swift */; }; 239AFDF5CC3AA8ACF16F618C585289D1 /* QueryParamEncodableProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42B542E34AECF235CB07BFF55CE23673 /* QueryParamEncodableProtocol.swift */; }; - 23CEBED329A707B3ECB44B70A1EA7B52 /* PromisesObjC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 09D2345FF6CA8B1BC3F630B9E2E5F51E /* PromisesObjC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 23E61A00EE5D5DF7D53F2F1804928221 /* Pods-Tests-ObjC-ExampleAppUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC6FA136BB9434E8C85E93ED49F4B26A /* Pods-Tests-ObjC-ExampleAppUITests-dummy.m */; }; - 241E2DCF7294707E22536BB1A0A1A520 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0938054FF37292F241D2F03657DCA974 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m */; }; - 2429FAFAC4B5CB56A3AA18886F3EEAEF /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 052CD9042C4C35EA5916B2AA570C2EEE /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 242FC4CDD30FBA64695FD29F1296E71E /* IQRootControllerConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = B40BB952D7B8E74D6B9697915507E79F /* IQRootControllerConfiguration.swift */; }; - 248F72BFF743BE4B18E1FA060B06223E /* FIRFirebaseUserAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = ABF5610414805D9DAD4B9DFDCCE56C6F /* FIRFirebaseUserAgent.m */; }; - 24F0ABD3F519733D650BEFCF19064D3A /* Pods-Tests-ObjC-ExampleAppUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 70AAF1737DA93EA12FCC90DF925BEB8B /* Pods-Tests-ObjC-ExampleAppUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 251F059EA65982B8415A5920C12EA305 /* ActionableTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 689D7E3D33EE1251215987B4F8DDD31C /* ActionableTableViewCell.xib */; }; - 25A48C2C415254C3ABB66AA7149C61BF /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = D29219EDB23C34E00F2E2562696C9D72 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25E72B5EAB3CFAFED265F12121CE3E15 /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C48D347EAB6A81050959B1F63D527F /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 242C0F69AF70AD5FAA2D18BF1740C99F /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = A8B5754E3D9CF0928319A37F8D4D281A /* PrivacyInfo.xcprivacy */; }; + 242FC4CDD30FBA64695FD29F1296E71E /* IQRootControllerConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AE3C37AC143AA6187DAA70513DB82D2 /* IQRootControllerConfiguration.swift */; }; + 243ABAFD7E715E4E53E36231636C2268 /* AsyncExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5B09BA535863D4B01B71BFC5473DBC4 /* AsyncExampleGroup.swift */; }; + 25449CC98669E960AD824B69D0C87ABF /* utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9F90000E5510FE177292A21D0DB03 /* utils.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 254A4AC77D2C460E29C74A6301088EEA /* QuickTestSuite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8193AC37D693F05389BC7EE7817E74E2 /* QuickTestSuite.swift */; }; + 257CA545DD8F5B2CB45CE13F5D583EAE /* AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32BA42082EECC00B012859960BF28406 /* AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 25C31532F1D9885C3494945FC4C0CE80 /* CwlCatchExceptionSupport-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 11296EDFC129EA0521F51D9161E5136D /* CwlCatchExceptionSupport-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 25FDA283E050321C4C28100BAD81495D /* SPGDPRConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87AEFA2EAE4004039B9687ACD673B4AC /* SPGDPRConsent.swift */; }; - 263B310D60FC3636A0DD13DF908E317C /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = D16C3ABE9FB947B9FE3B6C21F667D025 /* Callsite.swift */; }; - 26A06F9AC404A05CF1D78CCE59157871 /* URL+FileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D27B3BC4B43A5259CFA3F41260ED3E /* URL+FileName.swift */; }; - 26ADA198C3BC8426575CD76F903E9EE7 /* IQKeyboardToolbarManager+Action.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B8194CC6DC632FC65E25C080D541DE0 /* IQKeyboardToolbarManager+Action.swift */; }; - 26CCDECF8718E916FC502E156F106E49 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = FE1A731941BF55255C950320665A2A0E /* FIRLogger.m */; }; - 2750C39990C396D6608E86190CCEE364 /* Behavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 914BF96E58D852EE5D60009D93D77EB5 /* Behavior.swift */; }; - 27ED9EE606EC9F3A161B5E47D77CFD7A /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = 313C420FCA09A122830B92CE256AD170 /* World.swift */; }; - 2802E8DC0C6C7B930815B5C90DEF75E9 /* StorageFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1593F2AFA09C8CB7CB497969362C16F2 /* StorageFactory.swift */; }; - 2834DFC95B6D29A395FB8AAA849CC49A /* PostNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D9EC2C8F5E9B4BB7A7B1FE5BA59C862 /* PostNotification.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 285FFDBDD413AC4CE1F8B09722A18314 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1531A61005719146F0AC17BCAF28D30 /* Match.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 2673A91E6AFC6B693144EC916708B9A2 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB05A5C3231DDF5CB5C7608FDAAED1A /* pb.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 26A77BF8C7623E15452A761030FBF733 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CF9B3750AC996B188363CC4B0C54DD7 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 26CFAE215D7DAE757062A199605F0C22 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = D2B8222ABD79FEDFA24A209D578BAC54 /* GULSceneDelegateSwizzler.m */; }; + 2733E422CC910FBC27AFE219C051E011 /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 7707BD7F05AEAD109DFAD1DC98CC9229 /* FIRInstallationsItem.m */; }; + 27B56CC927D5035AF2398B9A05289D8A /* FirebaseCoreInternal-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 44E39F8D18D1E7093CA122B1010CE382 /* FirebaseCoreInternal-dummy.m */; }; + 27B97C1F90C47C6679DBF368724DEEFC /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = E04746FC82CB76AC1DA809F7843EAF6C /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; }; 2889AD3AC4418F1D4DD8001C5F1C3E18 /* Pods-TVOSExampleApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B11A9FF20684FE5D4B69A774C992D8C /* Pods-TVOSExampleApp-dummy.m */; }; - 28CE8560A54102EC374B7A69A82838BC /* IQTextInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB98F11904104FA5986274E5E3AD1BF /* IQTextInputView.swift */; }; - 296ABA1DF54A8D521BC266555A3214BC /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = D18DC336E57A1818C8206883DADAEE9D /* PrivacyInfo.xcprivacy */; }; - 29D04D39C921660F8AAC0199802BD5F1 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = E651D575660BC8B65F75E486C03C6360 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 28CD80B0662073826349FD578F593830 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 28CE8560A54102EC374B7A69A82838BC /* IQTextInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE0739C1018CA17711EA54F49417946B /* IQTextInputView.swift */; }; + 28FAD079E457F696C78EC667A68BECC9 /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C468EBD52C660B829A9EF5CA0D838CD /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2979477FBD228A0D857FDFCE5B169E14 /* SPGDPRNativePrivacyManagerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F8E495568942DD4F992BA43DDA0C4D7A /* SPGDPRNativePrivacyManagerViewController.xib */; }; + 2993E41F4D816F700E95292B7E28AEB9 /* Quick-iOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A85E92CAEEEDC4C630593857225DA065 /* Quick-iOS-dummy.m */; }; + 29EAA1377CDEF3A4467EF58D99A9013C /* IQKeyboardToolbarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE7D597697731D9160062FDCF285D382 /* IQKeyboardToolbarManager.swift */; }; 2A6F44F5545F9718C10ACA9835731D5D /* SPGDPRNativePrivacyManagerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EA93FE946DA25CC8E5B843521B26098 /* SPGDPRNativePrivacyManagerViewController.swift */; }; - 2AB24340DDFD1ABB97149695FCD0BAC2 /* IQBarButtonItemConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE49826BDCB06935CCB17FFF3CCCF6EA /* IQBarButtonItemConfiguration.swift */; }; - 2B10AFB9135946A0896524AFAB2A367F /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 224D8359F0DFA2F028AF2E9EF23C6730 /* World+DSL.swift */; }; - 2BCEB579161CAE2404C8FDB7CFEFF45F /* DispatchTimeInterval.swift in Sources */ = {isa = PBXBuildFile; fileRef = 810EC0A6205889C5FBA7F83237740652 /* DispatchTimeInterval.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 2BF75B8FF1721C5FFBA8DBBD5471E785 /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = EDFF452AC6C1DF3F38720636E6C7779C /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2D13A5FC8AD6E1F6B807D4D86C7348BD /* javascript in Resources */ = {isa = PBXBuildFile; fileRef = 04DB65DCECD90C91E3B57C2CBD3A859A /* javascript */; }; - 2D2766BA5DFAEEB7012F447B13774CF6 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = E206D039662A29E2E130B8FABA1AD6FD /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2E53ED3ED2B65DA70ACAC25C9E801CE1 /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D2BE0375A9AF892350A380EF538C31 /* pb_common.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2A9549B0AE9C27665639987870E2CF0B /* IQTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7161B5DCDFE49231562B55DAA6066E11 /* IQTextView.swift */; }; + 2AB73082683D7D83ADB8BB50F30B9DAA /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B4FC1CAC1404126C258F956D45F9CCC6 /* FIRInstallationsSingleOperationPromiseCache.m */; }; + 2BCFE5F1E33F30397EABF79C911E78E8 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = C86E7B7B7BB35A919A914A174E125A7A /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C4ED8CCEC312B0B6FA2D0FBC4D602FF /* NMBStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = 050F9B9E655D48CD28778AA2297DA7BB /* NMBStringify.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 2CB251BA5ED66B35CA44C76151800FDA /* BeWithin.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0E65EFCCCF70977E03B71E52395AD11 /* BeWithin.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 2E3795EA821D8EC9119EB36E532D0914 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 2E40DE55394C0E8B1FC8C4E4DBF8B61F /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51933828D8851062D12D91760880D827 /* DSL.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 2E57BDAA75BF6B6B4C234EB7F28A526F /* PrivacyManagerViewData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53E5FC8C35255A7A82860F62CB1CAD67 /* PrivacyManagerViewData.swift */; }; - 2ED590B7279139DB8F1850CA4145890D /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = D31B6019D60BE8E6CBB60928E3CA4C69 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F12FB5EB40785F404030C1A836EA017 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = A1D77A57E1F329B435501672C908716B /* FBLPromise+Timeout.m */; }; - 2F3E552745CFCBC877CA338221C18E4E /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = EE5BE77C3FC31BEBE1959B057B72625C /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F4F6BD641DA625C262640D07EB99A01 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 514CEEC875BFF0788879C7CDA9CC6141 /* Errors.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 2F8AAEB06FC1400D4692A453112AF9BD /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9301DBF0942EABDDAF8A2D6E9FE6054 /* NimbleXCTestHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 2FDFC006662EEF2E9F7FF3574868DAE9 /* IQKeyboardManagerSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 18408DE331F4EA484DADE491FC255046 /* IQKeyboardManagerSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 300388E71539076177C976F0CE9A0D9A /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 514CEEC875BFF0788879C7CDA9CC6141 /* Errors.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 31B9F69F6195997DD1E14EADDAF6D54F /* IQKeyboardManager+Resign_Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50998EB5CD8C12282FA3B0E79A0A2451 /* IQKeyboardManager+Resign_Deprecated.swift */; }; - 3216D0B26C0F5FE27CEC8A525D9A63C3 /* Heartbeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9A1D9F64D4051E4B289E73937C42FF9 /* Heartbeat.swift */; }; - 3280F7DC7154AD807B35438E02086AB0 /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD71E83EF45F68DE3E4C88FD59CE157 /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E6A63B67ED2BE70D780A9740DD11B9B /* IQKeyboardReturnManager+UITextFieldDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA61691E97C846F19ADB7C40FD2B4ADB /* IQKeyboardReturnManager+UITextFieldDelegate.swift */; }; + 2E8B6514F514A729590A81E03B5DE65A /* TestState.swift in Sources */ = {isa = PBXBuildFile; fileRef = 054F7CF39326FC823FD090254AC82F87 /* TestState.swift */; }; + 2EFBCF44E12E01458BB1687B460645C8 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1A0C1E8502B39156213F23E163801B61 /* PrivacyInfo.xcprivacy */; }; + 2F40D27F39EF50A87195CA7AF2B91334 /* CwlMachBadInstructionHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 79613E4C842C69EAE38E095B7F90BD86 /* CwlMachBadInstructionHandler.m */; }; + 2FDFC006662EEF2E9F7FF3574868DAE9 /* IQKeyboardManagerSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FB1C98E910F1E6D0DACA28CF05FA08E /* IQKeyboardManagerSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 30C3BBD4A266167853362EC5C0C9ECCC /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = B38761F6B536F6512B2550EEFADD6366 /* FBLPromise+Race.m */; }; + 310BD61B10B942BDF047216298B94909 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = B9B245DECDD24C9AC0F75E7898CAEF76 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 311E961331F50AEB4A4D232CBE5FF389 /* FIRCurrentDateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 377CC3E93DF4518F2B7A6637C33D243F /* FIRCurrentDateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 318844FA1E66E09EEBAA61EF15A4EA9E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 31B9F69F6195997DD1E14EADDAF6D54F /* IQKeyboardManager+Resign_Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B2ED71044E7761E480E636165D8EFC6 /* IQKeyboardManager+Resign_Deprecated.swift */; }; + 31FAE8A64E6BE3ED94D713953D2B5914 /* Pods-Tests-SourcePointMetaAppUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 49550D844E07013FA3B4314D5FFDDFD2 /* Pods-Tests-SourcePointMetaAppUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3208575D9DFA94D5D594A6B7E138DD2E /* CwlCatchException.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D1EF07B4074C5D3B21D293539E811B4 /* CwlCatchException.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 323657BC696F1D62932DB6DD3262B511 /* PollAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EC6888F5775C185C1CDDABBBDBBA30D /* PollAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 328DBDC98F4A0C0A1FE2753A79CB1CDB /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F6BB2423C69F99EEAC09C7C9E7B6E66 /* Expectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 32928B90D3F4BA7FAEFE3875403991A3 /* SPNativeMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 946D9B91981FF3562F0B248C01EF193C /* SPNativeMessage.swift */; }; 32AF7AD38971CDDA662EB9180E03FE9E /* SPAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4316DD881EB24CB8967689A40A4A0E9 /* SPAction.swift */; }; - 32D317A394EB0A5DC75B7F93AA8CAB40 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CCFFA270204C150B82CA14265C8B8A1 /* GULLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 344F87F6AE3A0711BCF167B3DB21D9E1 /* ExpectationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C81DD2F22C774AC3D4CE877C34EFD02 /* ExpectationMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 33CFC3693A0F9032B74A14A4DCD9188B /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 62E9A3917CEA0826634BC756095B0CED /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33EF6EC39620AB9A739CA4BE11E72BC6 /* NimbleSwiftTestingHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E72C75729C5B0D555147F8E096CDF979 /* NimbleSwiftTestingHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 34090A0E457BDC62306BF8A2EB8AD43D /* BeginWithPrefix.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB2C05762A801FB522FBCB138FF1441E /* BeginWithPrefix.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3450E07D11B6725479708866A22CA0F0 /* NMBExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DE8448FA1AE310E2375710837E256E9 /* NMBExpectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 34B80C88F9E57499A4A92B90001182BF /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C65EE1CE46F0EF23C89F969024E6B02 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3527E7AF75181E57E0E2951F3CDFA0C2 /* Barcode.png in Resources */ = {isa = PBXBuildFile; fileRef = 87295588035B548CD735B7461612EFE9 /* Barcode.png */; }; + 355A2BB26622FBA7C7A1456D9D8206A2 /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D542779C488CF8ED5AD479BF0B8FB1A /* Equal.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3579BC1FCACFC2C40F8B762BD75F1E45 /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = B07C103C97EA779BB2E3F8418929E9EF /* Contain.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 357A7658034DDF01E8BD546F0F757FE4 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = FCC4D7BA5D8ACEC8567D676494521B19 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 365F73583037D0B277C80E70DDA88A62 /* AsyncMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D7754507C4F4A1D871BB0E2791C1968 /* AsyncMatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 3670CEDBC78B3828C40D41E70D757421 /* SPUserDefaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = F82FF19FFE4F10307AE69709C965B235 /* SPUserDefaults.swift */; }; - 3689692E1DA27C81794CD58FFF402CCA /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 07CE5597A5FF1D3D125158E39F082A22 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; - 36B67855F36A9537BF6E6D8D02D58DF9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 36A78A9EF7E943B3CE27D4A1567AE5BC /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = A26BBC7E4321F39E52EB7D529A6C5E94 /* DSL.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 370597C666009A4DA8B738DA7B6E2F40 /* PMCategoryManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D01AADE4EF28E9EA6E9B56822417319 /* PMCategoryManager.swift */; }; - 3708A119EF6E4A5970FC09D8B1AFCEAF /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E8F094B97DF26E1067DBDBAADD8C29D /* FIRComponentContainer.m */; }; 3742490D6E095118E08C6A6A2CE673EC /* PMVendorManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14A31B695BE605B7BC300ABA7A0BBD99 /* PMVendorManager.swift */; }; - 3744222D732FF91F8CA2572BE0A44AFC /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = FC1ED749A4177BCABC2AE08A9FA57AF4 /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 38078E5CC06FF0B19888FED18F35D6DC /* UIView+Responders.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A243B552A2DA6F9430F4F778E742D48 /* UIView+Responders.swift */; }; - 386E6BA9E6FEE80EFAB5EEFAE276C2A1 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8647BFEF78AB24889CB26C8410420CB6 /* XCTestSuite+QuickTestSuiteBuilder.m */; }; - 38D91D7A174BB9BF4FA606BFC5D6D926 /* NimbleEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 787A4178773C15B48FEB129B04DC6C05 /* NimbleEnvironment.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 379092C9902DD6CDF6550A71664139F2 /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = AB8A4A9B4157CDAA3D994D9F0DAA5886 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 37AC1886871D051C086DC4ED86EA159B /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE4C5BB8F7EA63BD8D6D7AA25EF08757 /* BeGreaterThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3820714A7C5BF205088A53517F71327D /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDA0BEEBE00BD74FC0487862440E6BFC /* BeNil.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3824E1CB9FB67C985E91FEE580743C73 /* Pods-Tests-ConsentViewController_ExampleTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B4807E584DB501AC5F5FAAB14026E391 /* Pods-Tests-ConsentViewController_ExampleTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 384716AA84A6AABC193E70BBD3551E4D /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = A633DBE772E554D5D84ED42635A8334C /* QCKDSL.m */; }; + 38806A19B071642225258043ACAC1F1B /* RequestCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 10F2EEC527F6E7935FFABF0983620715 /* RequestCell.xib */; }; 391884A124B6D8A5F636CB9DF862B68F /* SPCustomViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90E690FB1B8426FF22064D899B790E77 /* SPCustomViewController.swift */; }; - 393D4D97A781EB8334D8AB0E58E78A2D /* XCTestObservationCenter+Register.m in Sources */ = {isa = PBXBuildFile; fileRef = 02EE6C687792F6C27F1D79E927D2D8EE /* XCTestObservationCenter+Register.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 39711BC12AC59D82512E877C62769C6C /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E1A73CA05BF2ED526F076813B62F2B1 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; + 393150D916BC6931789162F62507B840 /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 698B6323D03AD253DEAE782E65E107E7 /* QuickSpec.m */; }; + 393EA19D753060B10D0E5476301A6D49 /* StopTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20BCCE3D8FFE4752339823149D7C43EF /* StopTest.swift */; }; + 398606BAE47F5838D86AAEA79AAD330C /* SPCCPAPartnersViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F69850BE0942AAF7569973E18927CB8F /* SPCCPAPartnersViewController.xib */; }; 399193B5F5A3C8C1E8E64F79383F7B50 /* Pods-Examples-NativeMessageExample-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A393314456FFB3E06800F9CD1A915F3 /* Pods-Examples-NativeMessageExample-dummy.m */; }; - 399C86E5FA7498952A82F1C0D5101B13 /* CwlCatchBadInstruction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C85826F64D9EEF4F42854F06E733277 /* CwlCatchBadInstruction.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 3A1A20037AC91D1B98D7C5FA320444C4 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 4BBA8D9441D3920DE7B0AAE73B78FC90 /* PrivacyInfo.xcprivacy */; }; + 39CDB19C4C05A139C9892619717AC07C /* String+C99ExtendedIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF374197388716B739DB5B8C30DAD6A0 /* String+C99ExtendedIdentifier.swift */; }; + 39E02AAFE91B74CA651E994A207A32DC /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AF12426E4EBBD9E1FDCCCB1D791C2B2 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; 3A2938794E3DAF508D4CDD3A553B59A1 /* SPAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4316DD881EB24CB8967689A40A4A0E9 /* SPAction.swift */; }; - 3A672306F5D270B384E98B8210DEDD2E /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 301C13BBF88E04E1EC6EEA09F6AE624C /* FirebaseCore-dummy.m */; }; - 3A890EE782CA0BF9EB4B5449819F7E2A /* NMBStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EA61A939CCD7358A691FDF7396A81F2 /* NMBStringify.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3A39CCA7D7AD4FD7F1A7B8B43554CF8C /* UIView+IQKeyboardExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44D7A9D4428EC8819191D61354C9DDD3 /* UIView+IQKeyboardExtension.swift */; }; 3A98C43354F336986C77D9BE0A4CDF97 /* MessagesResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A0C68D976DEFB9773D1E67B3627B6D1 /* MessagesResponse.swift */; }; 3AA804D2F0325EAA829545018DBBA4FD /* NSObjectExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = B449CC35881DF31AE43C3912C1B54623 /* NSObjectExtensions.swift */; }; - 3AD6D2087FE0FBDE5C73300B1BCF62FC /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8314830A14A113FF5CF64B7B0549946 /* Storage.swift */; }; - 3B1CE82076FBB716CB11EAED55E3F414 /* FIRTimestamp.m in Sources */ = {isa = PBXBuildFile; fileRef = 16FB1DD23699E89820267A22E344C0AC /* FIRTimestamp.m */; }; - 3BBC8D66B0A8F435D0BEC4FA056CAF67 /* FirebaseInstallations-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 20F77F98B9EC6D3423626236B5EE1A91 /* FirebaseInstallations-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3BC3AE83D0689640B689D51CA50D96E5 /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E3240CCE746F0BF677592D3F6CF5B1C /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3ABD286C73FE54EC18C5FF02C3156E3C /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = 547430F6B989F18B64D86FFC4646F10D /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3AD6D2087FE0FBDE5C73300B1BCF62FC /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3F0A86AF2E75FC5D43E56354F932455 /* Storage.swift */; }; + 3B150A756DBE89161A5E1D73FE9E06CF /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 957ECFCEB95A78EED2F84236B2271846 /* BeIdenticalTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3B25346E05DC25C0921A825E66A48D64 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = 833828B6DA0C15775334C4481526CC58 /* Match.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3B6B4253770D7DD8238C8490E45C25DB /* Pods-Tests-ObjC-ExampleAppUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 70AAF1737DA93EA12FCC90DF925BEB8B /* Pods-Tests-ObjC-ExampleAppUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3B7613669A268FDFC65FB3281E3BDE10 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 3B940D502D4A1469497702FDC3446BB8 /* SPCCPACategoryDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 95CE5BA6845C27259E5E75FF90D770CF /* SPCCPACategoryDetailsViewController.xib */; }; + 3B9AEA58A68761A13A9A1608EC111438 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DC8945AB452F2860FCC5CBB94324624 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BC4E7F029D69CE1A6CF4BD7B41495AE /* Pods-Examples-AuthExample-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B462B473A535B8124B294EBC6A4A8902 /* Pods-Examples-AuthExample-dummy.m */; }; - 3BC6A111CE45BF870CA4152461CC7A0B /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = DFBC83D9A9995191A977A068539989C3 /* GULLogger.m */; }; - 3BEEA5D261B10008D4AEC2BB27DF8C1D /* FIRCurrentDateProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A1435CDF83533A2FFCA0414C6DE85F2 /* FIRCurrentDateProvider.m */; }; - 3C0EE25A8332F0F496C8A6039761B4F7 /* WormholyMethodSwizzling.h in Headers */ = {isa = PBXBuildFile; fileRef = C869FF6A4E0AFD704A0FA11F50448CEF /* WormholyMethodSwizzling.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3C373210C22B6EC0DE873808F202A644 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = A2C680E8C88B85688EB764C70AE04356 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 3C4CAA054FCEC35D95D8B17C71A137AF /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = CF9C53FA56236C99A2DD68A546446E60 /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3C6CF7FED279B7B218DAAAE623F2D8C8 /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = CBE191C81958F269F0967C1724EAF1B7 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3D1C9D584A1BED1CBB8DF70E6AB18FA1 /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 65C452608D9849630DCDB7A7D31C4ADD /* FIRInstallations.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3C0EE25A8332F0F496C8A6039761B4F7 /* WormholyMethodSwizzling.h in Headers */ = {isa = PBXBuildFile; fileRef = B050097AE422BC05C6098DCF057DB272 /* WormholyMethodSwizzling.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3C159F369305E5B0486526D4569BE052 /* BeResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCE82D92BB4A30E93E343AE451E79C32 /* BeResult.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3C298F9D9EF861E82A79FDA9ECD161C4 /* mach_excServer.c in Sources */ = {isa = PBXBuildFile; fileRef = 018C7D6DA1414FA7FD58A494AA74FAF0 /* mach_excServer.c */; }; + 3C4FEB010213C05BA28D51A0CCB99E72 /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = F3AA96C6D3CC2339D41DFCCA064AE221 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3CD7469F814E39E2590078E9EF586773 /* ThrowAssertion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EFDF09D136087E961C24BA4E9EE1CD8 /* ThrowAssertion.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3CEEFF73AC131A090B954E435211F57A /* HooksPhase.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6CFFBFD33C80AE18D03D79100AF8558 /* HooksPhase.swift */; }; + 3CF525CDCD6877F0E35F8358089551E4 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = FBE547F9D281008A40E7EBF35CB5799A /* FBLPromise+Do.m */; }; + 3D0731D9EF07C1F4C9C6BF6A07BD0E03 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = A188CBEBC676609F35A63D53BA78950B /* FIROptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; 3D27A637EDEED748258B32EDBE520D08 /* SPGPPConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BF731E1A10A5B0E656AC139B62F8213 /* SPGPPConfig.swift */; }; + 3D58853F9CA6F470FA4A7BB940D83864 /* javascript in Resources */ = {isa = PBXBuildFile; fileRef = 04DB65DCECD90C91E3B57C2CBD3A859A /* javascript */; }; + 3D79750B26A2602EC0B63212A155BAE5 /* images in Resources */ = {isa = PBXBuildFile; fileRef = 8BC7AF51FA2F0826802F6A36F319AEAE /* images */; }; + 3D807046AAFEC1ADEFD197E0ABAE8745 /* StopTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20BCCE3D8FFE4752339823149D7C43EF /* StopTest.swift */; }; + 3DBB73DF5FE9561A3BF1376126AFA5A2 /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA1ADE3868CD5346F4F2BAA26B8668B3 /* BeLessThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 3DBE6B57FF79A8E22D7CB676066F574F /* Pods-Examples-ConsentViewController_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F86DDBECF7964F601C28D8407C8E5660 /* Pods-Examples-ConsentViewController_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3DE8B98413F0219C3FEB4CE64D6FA9D0 /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03C47438F7D8F2BE336C275B53DB6C77 /* FailureMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 3E51545AB4D6E8F37FBF8CDEFA5DDE3C /* IQKeyboardToolbarManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C29ACACD74E8D1E41E969C7B1E1CA02 /* IQKeyboardToolbarManager-dummy.m */; }; - 3E74E638D3B8671946E7F5DB25D66EBD /* GULNetworkInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = A8C32FE882E21AA05370CA7229768EDB /* GULNetworkInfo.m */; }; - 3E9418C3CDA572BDD47AE8E1242EEA5B /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = 10D4538FFA8E4CE761C61825CCB47478 /* FBLPromise+Catch.m */; }; + 3DCC0F266E64D40B629D62B58CBF2663 /* IQTextInputViewNotification-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F00A310658C463AD2E3C33FB171EC9F8 /* IQTextInputViewNotification-dummy.m */; }; + 3EA3CCD77D7A5E466C79EFB595B93EEE /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED4C44088D195E59E09E786F41DAD355 /* Map.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 3F2D5AEF425A1077679F0724C8D799D5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; 3F316DC99DB45FDF1D54445D736CFCF7 /* SPCustomViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = 11DDF4F1DF218CBFC359A60C30CF9EEA /* SPCustomViewController.xib */; }; - 4007F97612C59D77B483B8197D2D904D /* IQKeyboardManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F54E77D2923C355006C920F1E69265E /* IQKeyboardManager+Debug.swift */; }; + 3F36C9D6FB5F3A4CECE7904F72EA8A7F /* Polling+AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43244700C4FEBF5415C1C05108E62092 /* Polling+AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3F4D6C35513F3C64570772B201DA44C0 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36F2B7CBA2ADF7578C1336DE88F9EDCA /* MatcherProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3FAD9B750D7346E3B47DC71B23492C22 /* AsyncSpec+testMethodSelectors.m in Sources */ = {isa = PBXBuildFile; fileRef = E0A060E5DA1F12147B39CB28131FA6D2 /* AsyncSpec+testMethodSelectors.m */; }; + 4007F97612C59D77B483B8197D2D904D /* IQKeyboardManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C720A34C11B645F17B554825FB8C54C /* IQKeyboardManager+Debug.swift */; }; 401F43D3379D2807B81AA6E68B2D3C3E /* SPCCPAPartnersViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BBCE35A0421461965EDB0E1835692D8 /* SPCCPAPartnersViewController.swift */; }; - 402D12CAD8B0BB8AAD2EFC2E595B6574 /* FIRFirebaseUserAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = F962F7B041F7A5DE38CEEFDE23AEAE8F /* FIRFirebaseUserAgent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 405874631F50D07CF5AE1DBA997CD2A0 /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = D34603469A654EB2572EC096EFA28BF7 /* QuickSpec.m */; }; + 405E2B82217AF17D8D1A751D9CB5D61A /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB1E29251A4E8016DF94D588688631D /* FIRComponent.m */; }; 405E64DB9325C9809EC634C22E760615 /* QueryParamEncodableProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42B542E34AECF235CB07BFF55CE23673 /* QueryParamEncodableProtocol.swift */; }; - 406DBF10AC12A6A6866DA34301721A07 /* Colors.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5D142EA412F121AF15706C0EA03E524 /* Colors.swift */; }; - 40BA40339203043ABD6887138FC07FB5 /* QCKConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5169E05906D5EB1161B9E0FA9119155E /* QCKConfiguration.swift */; }; - 40BA97238F8D1E74D02E15CDD66F1B21 /* IQKeyboardAppearanceManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D0092EBA17005E4C5E8DFB84F9C8151 /* IQKeyboardAppearanceManager+Internal.swift */; }; - 40E398D78E3D57F76B8E0DDFEB65F628 /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FC918F341DB9D68F0ACF5F5297B7D0A /* ExampleHooks.swift */; }; - 4127F9B1C671DA671F0EA6AE3147A769 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 886B70550F3C22CC20F9B77783E267E6 /* Foundation.framework */; }; - 4158C6379E483A62403F03EB25858608 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 406DBF10AC12A6A6866DA34301721A07 /* Colors.swift in Sources */ = {isa = PBXBuildFile; fileRef = A36B888EBDB6ED11E7C0692FE5AAC0E7 /* Colors.swift */; }; + 4076F13A7D32F82EE5A4A1EF4DB520D8 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = 37BFCC7EAC8AA0681464CFDE2CF66640 /* FBLPromise+Catch.m */; }; + 40A83585CEE942FBA4FFEE0BD862A48E /* NSBundle+CurrentTestBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAC7A0B37A8D91FE55F50A479F14B44C /* NSBundle+CurrentTestBundle.swift */; }; + 40AF4CA0EDFA57BB4107C8CF0A899FFC /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E74DCAC75D8463E2BFEEDA549A0D38F /* FIRVersion.m */; }; + 40BA97238F8D1E74D02E15CDD66F1B21 /* IQKeyboardAppearanceManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 284792F06F89CA62D3E6123581FBA927 /* IQKeyboardAppearanceManager+Internal.swift */; }; + 4112FF331A8F8AFCFE98A20E5E7B9807 /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F6C453108D1D255C879A6DF690CA1097 /* FirebaseCore-dummy.m */; }; 4169408235535EBB60457F3CDCE48C16 /* SPGDPRVendorDetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28CFB897FC81ACF232126C93B8E36769 /* SPGDPRVendorDetailsViewController.swift */; }; - 4172C4AD76977E0D6DCFC6D39F3CCC03 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = D5182A11E3C599618A7632AF166DB46F /* FBLPromise+Testing.m */; }; - 418C83FC713C3877C66ABAAED133605C /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D5199EFE37C11CE3BB20702683D693F /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4194CE6A267555C8C4CC9FDA73FC6C30 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 41A9F94221F79F768567880ABCA586E1 /* CwlCatchException.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ACA26817716D3366E53B78915534E69 /* CwlCatchException.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 41C51C02491B275EEA86C62E9D295982 /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 040E03CB321E63CE5EFB5F9F97CFD55C /* FIRInstallationsErrorUtil.m */; }; + 4172E7C51B199D9FA4E8D007C5A29B66 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3427A27AC38028C5399CAE2BCF841D6E /* DSL.swift */; }; + 41850263BC8C5028BF7AA43C1DA451EC /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 18F9E19CA9D917CB5655F5450578C723 /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Public, ); }; }; 41F369ABA984CA9510DDE4E60AA579BB /* SPDeviceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3C4FC7367786DA4ADD5D4613303527E /* SPDeviceManager.swift */; }; - 42113B4B25D64D650438406FB18C50B9 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B8AB662BAB1AB709CD6C850132123EC /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; 421428EB687584018CF7713B83B8E39A /* SPCCPACategoryDetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDF69D30CA3D2B0C488942CB6B5D247E /* SPCCPACategoryDetailsViewController.swift */; }; - 421DB69EC75A310C718C0AD67A56D87F /* WormholyConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = E9A1E6E9364855F70D75F15A754E6259 /* WormholyConstructor.m */; }; - 43473E5150827F4BD0A4A8584AF435ED /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = B791C67B9CB613FFCA78731AAA7A7EB3 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 421DB69EC75A310C718C0AD67A56D87F /* WormholyConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = A2413C25A1E9B1773F4BB7C4A9918225 /* WormholyConstructor.m */; }; + 4224C3CD50F0706909A6707CC95A362C /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = C92509E734A6C345C96274A3E981A6A6 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 422FAF61381DBB442AF04CA133D9EFFD /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = BE6574F64FA1EA3700CF64D22C778856 /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 424CC30C0AB08ABF402C23CB194BED7B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 42C05503E1C6D3964E899A48CA0A9B31 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ADDC9DE53F9B7E1A134155B9342EECE /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 42E40E3FD6E214CDD1FD6B337A031E2F /* CwlCatchBadInstructionPosix.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33B80CC8EE0ECAB695524973E039F545 /* CwlCatchBadInstructionPosix.swift */; }; + 4341A1338AE2EBB9E309F8D076F4E3A1 /* UIView+RespondersObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A357AC195864E56D2592C1979BBAF05 /* UIView+RespondersObjc.swift */; }; 436E01B2F9A92092F71120855469374E /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FD841BE77E2D4BDDC8DF77D283B1FCB /* Constants.swift */; }; - 43A348E1B43BA7CA63A465BEC3B443DD /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB6B3D895D685ED1C8498161122E6D56 /* SourceLocation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 44C74568D79682594DBEEDAE1ABB67CD /* WHString.swift in Sources */ = {isa = PBXBuildFile; fileRef = D929F351C4ABDF90B788BA719A5E73A8 /* WHString.swift */; }; + 4393FFC58E875928839450ECF8223F14 /* HeartbeatsBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9098FE4D7D58067AE284C8C5FFAC0C68 /* HeartbeatsBundle.swift */; }; + 43FDBC0015161B1DECFF9DAEEEFCF9CE /* FIRCurrentDateProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = AE8A7BA9F0275B149E1D0749B53CDD49 /* FIRCurrentDateProvider.m */; }; + 4400CDB03973F646E753150BF596D719 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = D82C3C1195B47C222E0B307D98FBBBEA /* GULNetwork.m */; }; + 4421EE9436B1F697D69BC77F347B3E99 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AA1E8B56C1C4BB8239C7A2E5838E478 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 445E3B02C8A2566281256D9C80A8D29E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 4466446C7F53AEDE2EAAEDCF4DE2406F /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = A633DBE772E554D5D84ED42635A8334C /* QCKDSL.m */; }; + 447AC992306D854F91D322173D594746 /* CwlCatchException.m in Sources */ = {isa = PBXBuildFile; fileRef = CA51FBC8E872CD7ACAD950A44AB5F027 /* CwlCatchException.m */; }; + 44C74568D79682594DBEEDAE1ABB67CD /* WHString.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E02A55905C0BF2681E14D8456919ADA /* WHString.swift */; }; 45169E7E24EB6F5AAA4DA3E46B8B3DB6 /* SPCCPAManagePreferenceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C86F91CE1DB8CBB4F20B3FB5198EF7B /* SPCCPAManagePreferenceViewController.swift */; }; - 451BBB0BABC6501C80C3EC80FC41FCE1 /* SPJSReceiver.js in Resources */ = {isa = PBXBuildFile; fileRef = D58978C5A6A1FD143B441530BC082B6F /* SPJSReceiver.js */; }; + 45A59DA3ED4B808A2452F0953DC2B207 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D52CD7197ACC1E43E8550270796A4CE /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m */; }; 45AEC3888A32D59FED868B188F68952F /* ConsentViewController-tvOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B1C9B90A3AFF6D6A5D97A1651A7D2900 /* ConsentViewController-tvOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 45E4F8AC823144637F5B34265592EA9D /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 997D2B0154C946E71B9C8D06F6CFA0F8 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 464448A928B35D88AFDB4029AA35DDF1 /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9301DBF0942EABDDAF8A2D6E9FE6054 /* NimbleXCTestHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 462E7E84EEFCCE146DAA352A6BFE3C33 /* CwlPosixPreconditionTesting-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 561022AEBBB35FACDF6EF8E49CE29A97 /* CwlPosixPreconditionTesting-dummy.m */; }; 4697BAA122AB0AE34A48D53083F963B3 /* SPUSNatConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 033B5B585762808D4A67F6F6E91AFC96 /* SPUSNatConsent.swift */; }; - 46C4E7D514BF5F225F6844720D7FA6B0 /* Barcode.png in Resources */ = {isa = PBXBuildFile; fileRef = 87295588035B548CD735B7461612EFE9 /* Barcode.png */; }; - 47E5C94448BD594C98B3EFD2286A2A5E /* Nimble-tvOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 99BE6D7C2ABC9332D2FEDB1DA14CFD80 /* Nimble-tvOS-dummy.m */; }; - 48BF35EF4844B8730D50A6ECC45CF34D /* UIView+Parent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83B391AF7ECED0ECDC24C47FC3894AE3 /* UIView+Parent.swift */; }; - 48D9E94CE5DCFF680063977554BCC650 /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 224D8359F0DFA2F028AF2E9EF23C6730 /* World+DSL.swift */; }; - 493D270B4B565E4C4F10C1F233DEF072 /* CwlDarwinDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69F83A4309A08B5CE4FE64D97C59A7F8 /* CwlDarwinDefinitions.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 47A40083079AC4AE82C868B4879BDA85 /* IQKeyboardNotification-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DD2F058EBD88A736E9743D0365C027B9 /* IQKeyboardNotification-dummy.m */; }; + 47A79FD540BE671C2E737C8C2859EF21 /* LongButtonViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 74CF2D6A2D0D5DB2BD259BCCF764887B /* LongButtonViewCell.xib */; }; + 482E9B1513D10FBFF50099B87FC1F4CE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 48708299B5925AE04C9D91F73BCCC642 /* Pods-Tests-SourcePointMetaAppUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6526F67316636BAA3D3F8C518F0864BF /* Pods-Tests-SourcePointMetaAppUITests-dummy.m */; }; + 488457EC015E7FC982FC78FFA9D53CEB /* StorageFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68D160079C28255B1CFB259E7055E78C /* StorageFactory.swift */; }; + 48BF35EF4844B8730D50A6ECC45CF34D /* UIView+Parent.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4D63D4847FC55FF58BB4A31235A0BF9 /* UIView+Parent.swift */; }; + 48C6C5B1E8435F0AE8489E579807243A /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C8B3DAC5F77F196D806BEFA672A46F3 /* GULAppEnvironmentUtil.m */; }; 4976B445BFCBACA547D15C6B461F6278 /* SimpleClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10E0A1B4632BE74D7347FA8479A1CE4F /* SimpleClient.swift */; }; - 49AC0046C9F6D1D6C0B58AC4D549BD22 /* CustomActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2E1278DEF469D3EA83B6DDCC6458F39 /* CustomActivity.swift */; }; + 49AC0046C9F6D1D6C0B58AC4D549BD22 /* CustomActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DB9104337224F469F02FE1CFA054D8E /* CustomActivity.swift */; }; + 49CB882AA67A43AE9688262A8F673E54 /* IQBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2187FE9772F1A9A746A83A16204EDB91 /* IQBarButtonItem.swift */; }; 49D62B451A68F642233D6DBAD56A76E1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 49F3C560386F5984B94D8D4AA9B7B453 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 824147763C330FDDFEAAC82D913F54CA /* PrivacyInfo.xcprivacy */; }; - 4A044CA16C0CD7633ABD7D765DF03895 /* Wormholy-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 92A9405999E5F99B1E1CC157A521928B /* Wormholy-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4A5A8A410E724AF761976A49C746A61C /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = F99323A8C236B9F091BF10F94BE6D3EE /* EndWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 4B0FEAD43FEA63F0F3E46957A526533E /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EFD280852B3A28B8D9AF6B52AA8EADD /* SuiteHooks.swift */; }; - 4B1DED6EE2B15482E6F39643F166696F /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = 85B42C336123B93CE8962DC3EF0235F1 /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4B42F51D94C858CBB016EB5BAE9E4DCA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 4B9D79C40B91FAA2AD18083131412828 /* JSONView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 26D1F1D6BCDDDB585293AE58BE566864 /* JSONView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4BE32EF4C040065E69431F91A8F35754 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = F98D368CF7C7803BF4E87565AC7897A9 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CE772867590CE9E383A215E02B2E9BE /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 6AAFE2F05B99D2226D91C97507CA47B9 /* PrivacyInfo.xcprivacy */; }; - 4D8BD1FBAD92D1F2C7A54166F6046C04 /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = BB4C87A48ABBDAA97592080F85929A90 /* QCKDSL.m */; }; - 4DB397B2754844F0F585B25744E75BEE /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F41EAD0462930E28057D0AB75280CB4 /* BeNil.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 4A044CA16C0CD7633ABD7D765DF03895 /* Wormholy-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E75AE00E671306E9A58B2E5A5815D48F /* Wormholy-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4A9A72BD0456048AA3D2A4B838998B08 /* ToSucceed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81DFF5B09AFDDA41E61A9BC5AEDDC6FD /* ToSucceed.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 4AB96EDC993769A97C6DE3C9941049F2 /* AsyncDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95F0052081268DFDBE4A0120A806FDDD /* AsyncDSL.swift */; }; + 4AC342BFDFE4CBE507542F7158B7370D /* QuickSelectedTestSuiteBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = A65D69CB88594A9705501AF0677C3716 /* QuickSelectedTestSuiteBuilder.swift */; }; + 4AFE2AA43D013508A40397DC24FF2759 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EAF80D436E8A7F00E434A770B74AD91 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4B10E679DDDF43EA604B1B19A5AEE651 /* SPJSReceiver.spec.js in Resources */ = {isa = PBXBuildFile; fileRef = 27958D4E3AA3B961EBD163BD2E74D50E /* SPJSReceiver.spec.js */; }; + 4B6B743CB9C71EB943FEBD4AE1437FE1 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D9476A97FCF2A9624775C73C84BCE3 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B9D79C40B91FAA2AD18083131412828 /* JSONView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0C55A5303CFB5640DC3BDA91663E33 /* JSONView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4BA15C1EFB17DF94B7758A5552EFE301 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = AEFE0B8AB65CAA06ADCEC1AC92FB08CF /* FBLPromise+Testing.m */; }; 4E2C1297ABC02A22BFBF28B32C7D3CB8 /* SPQRCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE78CA102B7BD2FFD251FA862D4239DC /* SPQRCode.swift */; }; - 4E358EEE3B433EF6FDA5D4B2110A1F2B /* SP_Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 3AC41A4E33416989A7D8796B73BA4A07 /* SP_Icon.png */; }; - 4F1DE8199DE395EC00D7D5C1489B97E3 /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = B610340313F660971B0A5708C6C8A111 /* FBLPromise+Wrap.m */; }; - 4FA0BEFCC6F57EF89351840090802E47 /* UIViewController+ParentContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D7DB26A9E5C503DCCD3FFEA39056562 /* UIViewController+ParentContainer.swift */; }; + 4E838C65E0C476ED90E68A6D5ADF748E /* Nimble-tvOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 271B9303BE698648CA3470649FD280CD /* Nimble-tvOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4EE1F5E35A80958DD706031221117B2B /* ElementsEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B143EBC1966C88F868E06AAC74D1677 /* ElementsEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 4EE65849828C6F9BD0CE67D2B2868A46 /* Matcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A27B524BCCE68381BE0D1E3D5FEA7A6 /* Matcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 4EF14F6516D6C16A8D3B24D7CB14EEF4 /* Equal+Tuple.swift in Sources */ = {isa = PBXBuildFile; fileRef = F440B4F75146FD828851926CEEE43163 /* Equal+Tuple.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 4FA0BEFCC6F57EF89351840090802E47 /* UIViewController+ParentContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1C32D73EB2B645FC9BF38D9365ECCEA /* UIViewController+ParentContainer.swift */; }; 501DA5BDE8B9B9A9CB2F9C9649BEDF7A /* SPCampaigns.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9811C119055ADA50A0FB38EFA8F3237 /* SPCampaigns.swift */; }; - 509546C3B815F906B75334F37FB7B342 /* UIView+IQKeyboardExtensionDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57DC3140C36FB7024E08B43ABD2A4DC8 /* UIView+IQKeyboardExtensionDeprecated.swift */; }; 50BFD5D2763D34A0BD17A81965626913 /* SPMessageUIDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BC1FB1939BFE5F15D153AAC7FEF4A83 /* SPMessageUIDelegate.swift */; }; - 518EC710BDB399A0D6EE2D1A62C172B6 /* Quick-iOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FCAFB5CE831103247AF530B4A66E903 /* Quick-iOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 51A3890D89005002D0E83E2578AF804F /* UIView+ResignObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA80DA76BC89201F1508D2D28BBCDEB8 /* UIView+ResignObjc.swift */; }; + 5148653BD6608868D5B10E5B48644DDE /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = F90DDF1898184087BBAD77CEC96A842D /* GULApplication.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 51A3890D89005002D0E83E2578AF804F /* UIView+ResignObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 684D5E952D1884720316846DA0045368 /* UIView+ResignObjc.swift */; }; 51D8B67641358622716A1D73C5B88A6B /* SPCampaignEnv.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D6BAA29C8563F4A6E565468007F72C4 /* SPCampaignEnv.swift */; }; 51D8DE3681AFC11D58D676637C058249 /* ConsentViewController-tvOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C2D78C7CC2691E374ACEB1E6F473BD02 /* ConsentViewController-tvOS-dummy.m */; }; - 523CFA53BDDD6BAE5767916442DA0C20 /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB6B3D895D685ED1C8498161122E6D56 /* SourceLocation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 54165587F7540E0896F31607BF352C55 /* NMBExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 901A3A8C529AD64155E3B230DC8D2744 /* NMBExpectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 5418010BC3576CF4451B199D757558C6 /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27B0BCF2353094B4FD14CEF688580407 /* BeAKindOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 54750D5D19ECAC33B17287803C7B46C1 /* IQKeyboardToolbarConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC367538AF3A91F50F8236BC0EE96FD /* IQKeyboardToolbarConfiguration.swift */; }; - 54C9FE2F048A6FA9850135DF7FB1B80F /* LongButtonViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 74CF2D6A2D0D5DB2BD259BCCF764887B /* LongButtonViewCell.xib */; }; - 559B1D21B2B49E2B49F5E9F9CFB2E871 /* IQKeyboardManager+ToolbarManagerDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59061C73E42331C834ECD764DEB9F965 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */; }; - 55AA5ADAFC7C81A9D3641C6B339A146B /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = D0EE0EF7B41939A08E077B538D1C574F /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 567276F0DB9ADFB8E8A696930F13E537 /* BeWithin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C71C50FC2190EF102A817A4FFE9E3B3 /* BeWithin.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 5677346C84E9019FE1D2DC080DB61108 /* Pods-Tests-SPGDPRExampleAppUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 759D3EA383B901D142D2FC3A8CB640DB /* Pods-Tests-SPGDPRExampleAppUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 51DD2FECC69E8668BEC4F85436C7FE82 /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29978296061A1207DEE8CAB87764F0DA /* NimbleXCTestHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 524BDC4CB74414F98BD75FD8BA36226F /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = F6B816906F8A377175AF29FD385267AF /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; + 5301834732AA4B5A3B024F809C1F4DF5 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 32266AE7F761B56C2F69BA2BE77054A0 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 531F4516F0B15B271AF13355D8CD55D2 /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D4924F4ABCA937EF78C6D630F046064 /* EndWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 532CDEAD5A8DBA5C9F053FDA420C5D46 /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14EE15EE2D21740716E29AC2EE0A6076 /* Closures.swift */; }; + 541C62C64648C6F7A7B06C130855FA6C /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C925C17E276718B3B82E1F218B59371 /* AssertionRecorder.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 54AAB7E8FBEB048BB04F0620D8479FFB /* AsyncExample.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDE29F7E2C2B8181BDC86D8BC3C43A2F /* AsyncExample.swift */; }; + 54C1CA78AA74A3A51AF899625C9C11DA /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C7F93F7CFF13C43FCDDF68AC3D6522C /* BeGreaterThanOrEqualTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 551D3F3E2972DE40D696A161E4813F98 /* WeakContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3626ADBB3B7D16166250CB83C71FD62 /* WeakContainer.swift */; }; + 559B1D21B2B49E2B49F5E9F9CFB2E871 /* IQKeyboardManager+ToolbarManagerDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9293F38470C63C2962F16E019C59547 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */; }; + 5676384BE46B29B3008A5DCF5CA20905 /* Behavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 259EFEA7087E5468175533431A8057F5 /* Behavior.swift */; }; 567B9B6568EB9542D11647C5A5D08EB1 /* SPCampaignEnv.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D6BAA29C8563F4A6E565468007F72C4 /* SPCampaignEnv.swift */; }; - 56CFB0F78F4241687832E811B047ECE5 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = F54EF2D634D1BB821FC146E1CB6A5DA4 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Public, ); }; }; 56F9C3DB14923BD952C7EB9F8DD017BA /* SourcePointClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 182C561114B03D57F4A67E016CB87CFB /* SourcePointClient.swift */; }; - 5733CA6E576C107C7C9E2EEFE1FEA484 /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28664522455C5D2FEA5E3F6CFAC78884 /* BeLessThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 572E269AE112CECC7AE4B293E42151DA /* NSBundle+CurrentTestBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAC7A0B37A8D91FE55F50A479F14B44C /* NSBundle+CurrentTestBundle.swift */; }; 575FD7F32DE2AF256BE6B67FB8B5EDDF /* SharedNativeToCoreAdapters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 624334D7BEEF45679E6500B48CAF4E27 /* SharedNativeToCoreAdapters.swift */; }; - 5799EF43314BAA7D376EC8220F8263F1 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = B55549E765741E265FC8791EB86F5D41 /* FIROptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 57B0177BA2639DADA8F03F21BAEF0411 /* IQKeyboardToolbarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE443A8F6053E38AD6572F7DEAC8ADA9 /* IQKeyboardToolbarManager.swift */; }; + 5788F6A41F490BA4F8D89B6ED952C5FA /* MatchError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BFD36A5C928AC017F56C1D85904E4BA /* MatchError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 578A5B5AA434F789E77D79B621260648 /* NimbleSwiftTestingHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E72C75729C5B0D555147F8E096CDF979 /* NimbleSwiftTestingHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 57D5DE6136C3C41C02909DA74C316785 /* Polling.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0227A01D4F0BD28AF391B3A9DB204D03 /* Polling.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 57D620DC2F6FA4BD1251180934A8CA51 /* FIRTimestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = 50EAF75774A8D0D95B92DB43E3CDD6AE /* FIRTimestamp.h */; settings = {ATTRIBUTES = (Public, ); }; }; 584BC3B43F9279CB9C798919BBB35A85 /* SPPrivacyManagerRequestResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96046321F1D0A6B8DB94CFC1A02E4839 /* SPPrivacyManagerRequestResponse.swift */; }; - 58D0FBF3623C470D9D6CDABDDB991CFB /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 789D6CE53772597578AFD80063B3F720 /* FIRVersion.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 58E39D6FB552872E3737617337ECC694 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1053681B4826692FBA867492E079AFB5 /* DSL.swift */; }; - 5986B00861524DA2F47725668F38FC75 /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AD0D93A856F4F1E09591FE8E9E109DC /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5AD17C764CABD286274B3CE75D689956 /* DispatchTimeInterval.swift in Sources */ = {isa = PBXBuildFile; fileRef = 810EC0A6205889C5FBA7F83237740652 /* DispatchTimeInterval.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 5ADE01EE5586FA8594F3DB75A680DA9E /* FirebaseCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B996EB791EDA9EF2B054183A905F4391 /* FirebaseCore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5AFF146CC876F4DAEAE51F32284A36FD /* Pods-Tests-ConsentViewController_ExampleTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B4807E584DB501AC5F5FAAB14026E391 /* Pods-Tests-ConsentViewController_ExampleTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5B2C690DFD4AB4018DA5EB7D0E85A737 /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CC5D8F2943EB6445527FDCD29A3B03E /* FirebaseInstallations-dummy.m */; }; - 5B9B44EF8ED6FE5A68F5343F9791C80A /* IQKeyboardToolbarManager+Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA6FA77DAB27AAA6EB48FC6BC66D0F0D /* IQKeyboardToolbarManager+Deprecated.swift */; }; - 5BB0764D6484986A3B0749EEDDC4FCE9 /* QuickConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A550D199A537903278DAC967EB2606A /* QuickConfiguration.swift */; }; - 5BDB5FFEC4D2C360F949BCFA03AAFEF1 /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68C785ED323E67BF289970E122380EEC /* BeginWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 5C8C980C1D9E65A3EDE2DCFFEDBC4BD0 /* Await.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6DAFF4C34A4E5072E581581BD3C7320 /* Await.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 5DC101E82DFFD4DDE7BCD0BA2D8467DB /* UIView+Resign.swift in Sources */ = {isa = PBXBuildFile; fileRef = E034FCC9A3D1F65B7CC563D7E8E6294A /* UIView+Resign.swift */; }; - 5E82F9DAEC1EDCE5CC619E0909C432C1 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 356C7DA26091C0E7AA09180D9EBBEF19 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5EDA92BA21EB70B0718D4EDEE5CF32DE /* Nimble-iOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 588B99A79FB7A8ABC897E13AF05011E2 /* Nimble-iOS-dummy.m */; }; - 5EE3F23C9DBA846A89D3D83CA0BCDA51 /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74222BB8873866100AAA6C02D20B19C /* AdapterProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 585E27117F01D1FF8D5DBB2FBDD467D2 /* BeVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18C8FD65ACC0A1178BF37AB4EC3186DB /* BeVoid.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 59032A0895799CFF0F7E2E4DD192B38D /* IQInvocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A022E1234424683435C80940388BE00 /* IQInvocation.swift */; }; + 5932AC8235F4D68D5D1C8119DD03ACB7 /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = 547430F6B989F18B64D86FFC4646F10D /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5A1F0264F883C81BA3C9BB59B61C79FE /* javascript in Resources */ = {isa = PBXBuildFile; fileRef = 04DB65DCECD90C91E3B57C2CBD3A859A /* javascript */; }; + 5A247DA4A9BDEEB12619889B47ADFA6D /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 87D5ABE9F3D08E0E9D3B6E428A17FA0B /* NMBExceptionCapture.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 5A8AB7FCF66E0E146BD4FD15F420BDBF /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3F02076DF398AB04994F86592D2A03B /* SuiteHooks.swift */; }; + 5AAE8557F63374E68C8623A4965E7782 /* Polling.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0227A01D4F0BD28AF391B3A9DB204D03 /* Polling.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 5BEF5CEC91101BD98D478BD892528C70 /* AssertionRecorder+Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA26FA80CF19C1376665161D157B339A /* AssertionRecorder+Async.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 5C58080A1AF3D52C09D45D939C23854C /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4839977FE2F318D830B3611AAC7E0B07 /* ExampleGroup.swift */; }; + 5CF4698F9A8F89E3C94439F8438B66E2 /* IQTextInputViewInfoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F63F06A3984BCA7D29B059A0408A9A12 /* IQTextInputViewInfoModel.swift */; }; + 5DC101E82DFFD4DDE7BCD0BA2D8467DB /* UIView+Resign.swift in Sources */ = {isa = PBXBuildFile; fileRef = 135682E6BB9D8F99E34FEC9D5D0E744A /* UIView+Resign.swift */; }; + 5DC324A6C43DD20E69455BB33B4193BD /* NimbleEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA5D8EF50A7F32B84EBC90AF394CB7C8 /* NimbleEnvironment.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 5E24E5DF2F1B2FED867957864E7669F9 /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = E04746FC82CB76AC1DA809F7843EAF6C /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; }; 5EE447360FF7EF4A075BFE61D01CD457 /* GDPRPMConsentSnapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5D6584C89A476EAB14E471673012300 /* GDPRPMConsentSnapshot.swift */; }; - 5F2356AD458E58B1C831964834B215EC /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = C05FB56DAEEDCA29BA74D9393362D4A5 /* Example.swift */; }; - 5F545ABBC13F43DA3C51F12B8D624C77 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EBEB0A041DA976F6476AA0359B5185C7 /* PromisesObjC-dummy.m */; }; - 6005F6E17906C91BC51FD0069729DAB9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 608591708094D81FB8C000845AD3AAFF /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 393BACE0E9330B72FB850A8561E40F6E /* pb_encode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 60885B4F65D6100D247635A2EED05BC7 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C299B4D455A7FA34EA7FB05606CCF53 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EF6D9E6A32DD18D070F9197B77E621A /* IQKeyboardToolbarManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D7DE976823DEE57DFC868F29DF873AF /* IQKeyboardToolbarManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5F5F094636A99E789C83162A7BFF24B4 /* HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54A470A44EDE551DA0AFA256D2C5D4FF /* HeartbeatController.swift */; }; + 5FAE1D3236DC07D013196A1DDA0FC68C /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = F63D0B2446F40712AA7AD3941D1BCB53 /* ExampleHooks.swift */; }; + 60047BD8AF182AD53512CB4F23F741B5 /* CwlCatchException-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB21CCD209327E78352F268FE5D05DD /* CwlCatchException-dummy.m */; }; + 602B72C096BD766AAEB2286B8BD51294 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E616169FBC8240945FC48D592274B4A /* RaisesException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 60ADF92D28536AE91C8830EF1EE88545 /* OSLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DC58EDA4573836B36C15FE9D20DA773 /* OSLogger.swift */; }; - 6172C495BCF4F58B73EFBD9DF7321789 /* WHBaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36B938F832302BB306D0CD8E2194C1B0 /* WHBaseViewController.swift */; }; - 61755BDEB2A4095BDAF30D44FFF625CA /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 58B65CEF73ABE0FE8DD6B942CC4B50D6 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60B509039763325F5314393DCDD7C472 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F9C078C5139CC0543A765E2FF230C90 /* FBLPromise+Async.m */; }; + 610BB71178C79F5071FDB51045F79596 /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5E901D6799A4080D3DA5DE97F41AB72 /* BeLogical.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 610F47A5BBDD2271EA15F178856976AF /* IQPlaceholderable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53F00746A713E8D3E29D36852B7F2A61 /* IQPlaceholderable.swift */; }; + 6172C495BCF4F58B73EFBD9DF7321789 /* WHBaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A153645F2DDB19458FE1A4346444F6FE /* WHBaseViewController.swift */; }; + 6206E5CD384823133D7BF1C3B9DC9520 /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67957B9E77D349FDBA49CD741DA313D2 /* Stringers.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 62098C923A3CCFA2AB66EB8D158E984B /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = F7FC3DF3EC50F2594E30DE7CD391DC34 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6228B3B995726E67C14441AB35FBC912 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 6231F81849412A52C52287872172ED06 /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE61A8CA9758CA1D4AA14AA0909D6F4A /* Callsite.swift */; }; + 62344244793E5ABCC224B3EEF08F28EE /* AsyncWorld.swift in Sources */ = {isa = PBXBuildFile; fileRef = 629C5CA2DE65A4802EEBB04934FE67CE /* AsyncWorld.swift */; }; 6248C2A34AB4EAF291F190E72ECBE09C /* OSLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DC58EDA4573836B36C15FE9D20DA773 /* OSLogger.swift */; }; - 6346517877EC35B8785B4889DAB4BDD0 /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44C01843EB2DBD02D63167074C601F6A /* Expectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 63BB3FE283D8E824DC29750C7A4DA267 /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EFD280852B3A28B8D9AF6B52AA8EADD /* SuiteHooks.swift */; }; + 62E6BC8C9BB4CC12D26B654302A1103F /* NimbleTimeInterval.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54D129B0FF00E96ADA5E985D90AEB12D /* NimbleTimeInterval.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 62ED706B2E85A968AD1E0734698D1E00 /* Array+Sort.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD8A1623E24EBB185642DD871266F75A /* Array+Sort.swift */; }; + 630E93E0E73A19E7914139F6CAE445BB /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1AE3F717FE3E0E66C2B39495FB5A811 /* ThrowError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 633DC282F9B4394A0C8D3337B98BD76B /* IQTitleBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14250D74426E3F8CEAA313072076355C /* IQTitleBarButtonItem.swift */; }; + 6350B1EF54E299F8FD510F0FF03F885F /* GULNetworkInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CA07D267FBD8C4220DECC3B0848D17 /* GULNetworkInfo.m */; }; 63FA51277E3679AA04B09C05FB7E0D94 /* PrivacyManagerViewData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53E5FC8C35255A7A82860F62CB1CAD67 /* PrivacyManagerViewData.swift */; }; - 648DF26F5EE1B601C70ED34A5581C172 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 5523DD25E528AF35556AAC138CD44C29 /* PrivacyInfo.xcprivacy */; }; - 64F29FE005F9A0672B54554637C94605 /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3459CF29818A9903902E78A70468F8D /* ExampleMetadata.swift */; }; - 65070144980EBFD63872231D3E10FEAB /* WeakContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD8DBD37BFCC2189451CB076D74EC280 /* WeakContainer.swift */; }; - 65115B5AB93BCF92FB2023DA94E34401 /* SatisfyAllOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = B07B30B332CCCEFC8961E2C442315EF8 /* SatisfyAllOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 6408EEC4924B8B8B0439489358C47443 /* Quick-iOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C27FE6E8099EFAE616C0117F0A94461C /* Quick-iOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 654C6BCFF2B8365ECB3663536F5411E4 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 48A552628325A8E063430D78445EB2F1 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6562A3FFAACF4E2767DA2E1D933D1C18 /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 82C724D20EAC54F77E63A4B052CF0253 /* FIRInstallationsHTTPError.m */; }; + 6588E326C2A66E610993DFE4627E5F84 /* NMBExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DE8448FA1AE310E2375710837E256E9 /* NMBExpectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 65AAEB24AD3E2FA5235D2FF67A3BEB22 /* SPURLExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CDDC03D1A80206740DFE90B0356D8FC /* SPURLExtensions.swift */; }; - 66595A9246FAA5A6E49ADD491C909846 /* Section.swift in Sources */ = {isa = PBXBuildFile; fileRef = D374C38A488A93BD2F7C740BC5E16715 /* Section.swift */; }; - 66C358F15530E6C4D022541E8B2BC0BB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 66FD285F97A4253BD00880D9A9858BB5 /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B63F6C9B92344CE56A5AB925174C4BF /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6718B8C19725AFF7276A90559D058DFB /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 15DDE3CDBCEC2E6BBCBA1A4DE6B412BE /* FBLPromise+Delay.m */; }; - 67506269CAFD4BA23D8792AEA3EB0870 /* Barcode.png in Resources */ = {isa = PBXBuildFile; fileRef = 87295588035B548CD735B7461612EFE9 /* Barcode.png */; }; - 685BC1A06DEE045E12CE23B80D6DF97E /* CwlMachBadInstructionHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 52ACDE1EC0344F289043D4436F43BB63 /* CwlMachBadInstructionHandler.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 68CBF2474DDF2898E62E3A2BF495DE03 /* String+C99ExtendedIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8C8EC15FFBB6E926508B6E365732D16 /* String+C99ExtendedIdentifier.swift */; }; - 6904715FC16C62DB6803DBC040471504 /* Behavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 914BF96E58D852EE5D60009D93D77EB5 /* Behavior.swift */; }; - 6905A244533602348B3F5D6CB888A2E9 /* SPJSReceiver.spec.js in Resources */ = {isa = PBXBuildFile; fileRef = 27958D4E3AA3B961EBD163BD2E74D50E /* SPJSReceiver.spec.js */; }; - 696159B751AF382C468DE8E842CF1067 /* QuickObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F50E71508CD580057F9C19374CC8111 /* QuickObjCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69965143D4F7E238B15C040C09FF62D3 /* Quick-iOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 824D785E2FCB028E721F59A8235D6248 /* Quick-iOS-dummy.m */; }; - 69BA8E18742B5F0F24EB399B9330AA18 /* IQKeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = B14AE276C2279D801C19BC2519D636C6 /* IQKeyboardManager.swift */; }; - 69BF5320B33A9030753D05367430B180 /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9A8C3E06D197250F142140842379FE4 /* ExampleGroup.swift */; }; - 69F6551F6D4DD486BF8A53F9958CA3C6 /* ToSucceed.swift in Sources */ = {isa = PBXBuildFile; fileRef = C36F5EFB0BC6BFE4499C4B8EB6AF10EE /* ToSucceed.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 65D9F6E820F16343ED7779E027D114ED /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 8689BBFFCE916282306018B8C16C73A4 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; + 662B978B41014979E5FF2C6F72BCE893 /* QuickObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 39521561A3A1D050295F964A5391C69E /* QuickObjCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66595A9246FAA5A6E49ADD491C909846 /* Section.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6B6055780BBF42CF95D5E9937FA4B31 /* Section.swift */; }; + 66BD0AFE87FD37205D315B6429CD63F5 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51933828D8851062D12D91760880D827 /* DSL.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 66D0DE389F5E0B1B149A6687B9884E20 /* SatisfyAnyOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5632689C6FB84E1275F7312AAC7B9057 /* SatisfyAnyOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 6741E7FC57848343D9C6AEE59812A0DC /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 754BEF92020F4A1FC09E103BB777106A /* QuickConfiguration.m */; }; + 67E998107712685316435BEAEBD69DBA /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = D0A20F94BAC0F3868916549EF7807042 /* FIRInstallations.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 67EF68970A8DE610A52E54ADDE76B1DF /* ErrorUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5A307F97B8D4D230351B1E3803B356C /* ErrorUtility.swift */; }; + 67F28A410FE50AA82AAB5D72ACBD8806 /* SP_Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 3AC41A4E33416989A7D8796B73BA4A07 /* SP_Icon.png */; }; + 69BA8E18742B5F0F24EB399B9330AA18 /* IQKeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11F290A7274F920B01D24B662A5E5E88 /* IQKeyboardManager.swift */; }; + 69CE792E7DF70AF60636D71ACB7A5512 /* IQKeyboardToolbarManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32273C3579DDC80A0E04B464513AEC00 /* IQKeyboardToolbarManager+Internal.swift */; }; 6A1C8DA0BBED39C2342CFCAF4D1AA667 /* SPPublisherData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E67FC0C023FEEE646E022609D24DEC6 /* SPPublisherData.swift */; }; - 6B2FEFFB090DB4BBE89BA6F955A58DC8 /* String+C99ExtendedIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8C8EC15FFBB6E926508B6E365732D16 /* String+C99ExtendedIdentifier.swift */; }; - 6B4176B1ABFA9968C0FC146A6D5D4528 /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B550482A95BDE817167B35E62795013 /* FBLPromise.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6B574ED67A1E6431916110215187846C /* FIRInstallationsBackoffController.h in Headers */ = {isa = PBXBuildFile; fileRef = AC77D88FD4D2CC86CC688ED924B45089 /* FIRInstallationsBackoffController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BED0FA85021F5CECE79D6BB6D9E315F /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = CF9C53FA56236C99A2DD68A546446E60 /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6BF40CF982E084600A1260FB1015E402 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 6C17789D6FDA6B1EE7CC0FB38D5175F8 /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD620E8827ABB7E19850213C1965F3C2 /* AssertionDispatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 6C39B1BAC4EDCAAD86D19D4F2715FDD6 /* nanopb-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 186D36C1418B9DD6EA37D57A548EF049 /* nanopb-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6ADB6DB35E5E73BACB1AE79E30DA67E1 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = EF6900942D6C588E3E56535DCCF82EFD /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6AEFEE8DDE648E29A11CC391E311E11E /* FIRTimestamp.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E2B729B4FD4E54F4503424700745941 /* FIRTimestamp.m */; }; + 6B6663947381FFBBFE357E4134197C10 /* CwlMachBadInstructionHandler-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 85DCA40AD37456BE4FA02979143B558D /* CwlMachBadInstructionHandler-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6C061B03EEE882C3C7918717D81D325E /* SPPMHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = E809C61DAFA64E047AFD6934B3D368B1 /* SPPMHeader.xib */; }; + 6C0DDD6540653EA5EF76BAE08979D62C /* QuickTestObservation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01A004F916AE721171E411659CD37E18 /* QuickTestObservation.swift */; }; + 6C4F8229CC4C8329914D4F065DEF2C0D /* FIRHeartbeatLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AB47EF0B0C5748A52E14C8D16EB9DDC /* FIRHeartbeatLogger.m */; }; 6CB9559329ACAD8E1F935A11424CB37D /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = E022694EBD639B47976FDF834FB1C922 /* Date.swift */; }; - 6DFF0935323AE4B4F9AD731BBB5DBA01 /* images in Resources */ = {isa = PBXBuildFile; fileRef = 8BC7AF51FA2F0826802F6A36F319AEAE /* images */; }; + 6CF57A697F7DB553D24A0B6B994C4B4B /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 06AFB2FB1357339F642D525DD139645C /* GULNetworkConstants.m */; }; + 6DD1C263035F85DF005DD93D0F8C147A /* HeartbeatStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C776DCB2265A3C66F6F085B02E6B99C /* HeartbeatStorage.swift */; }; 6E17FE74B30432F638275F6CD4B6C1C6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 6E97BBB399DE479F74CC5E0DF6B76EDC /* SatisfyAllOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = B07B30B332CCCEFC8961E2C442315EF8 /* SatisfyAllOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 6E531B8B6E54DCD6D630CA1B66D2DD12 /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA1ADE3868CD5346F4F2BAA26B8668B3 /* BeLessThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 6E65891C6AEFDADA41F47D8BEE3A644B /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = EFFB42EBA6B36A4E257D3F51EF9DC7DC /* PrivacyInfo.xcprivacy */; }; + 6E7F5978F0533F02E58933C814C7CEA7 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B08161A2B63C49591A4C21B2AEC49EC /* World.swift */; }; + 6EE8133026BBAD9196509BE66F0D1454 /* SP_Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 3AC41A4E33416989A7D8796B73BA4A07 /* SP_Icon.png */; }; + 6F2CA58486E9F11EB52DA7584225E90D /* QuickSpecBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 1927DE642808C0399D8EC4D6EEBFFA2C /* QuickSpecBase.m */; }; + 6F3765FAE3920A18607D719137972E8E /* CwlCatchException-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E1B76FB29EA8F4A3A6137D51D23FADEF /* CwlCatchException-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6F5BFDD8F2B44360A2760CDBCF0E2BA5 /* SPDate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0D11B44C645CCA4370139EC3EE9C182 /* SPDate.swift */; }; + 6F9B24A0C0D89C8696C7C9681C2E9FEA /* BeWithin.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0E65EFCCCF70977E03B71E52395AD11 /* BeWithin.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 6FA68D9A75ADF262A50E2104D59EDAEB /* SPPrivacyManagerRequestResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96046321F1D0A6B8DB94CFC1A02E4839 /* SPPrivacyManagerRequestResponse.swift */; }; - 6FFB8A1E5D014E640BAE543F7D1D0212 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6203D42429D5E944274588317B782D /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7002D87D448EBFBF3F2B6CC545BEA033 /* InputStream+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E2C304FDF4D67400566CBBA2B787D8F /* InputStream+Utils.swift */; }; + 6FABC5B14DD375EB3D6079F8AE630E68 /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B12C2B2013EFCA0F1FEB1D5379405A8 /* FailureMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 7002D87D448EBFBF3F2B6CC545BEA033 /* InputStream+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30FA3D98286D1A49ADE17B7E8C9C5E77 /* InputStream+Utils.swift */; }; 70095025DD7842E6EFA9FE6BDC1E25E5 /* SPGDPRPartnersViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = 4261DEFFFD9A94613A8785C9274D9CFB /* SPGDPRPartnersViewController.xib */; }; - 70EB2F7CFA7F85E4F0AE0FDDD390BA26 /* CustomHTTPProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = A562257A7EE6A3602A66E6582DD95EAB /* CustomHTTPProtocol.swift */; }; - 70FC9BEC90FFFC97AE35E33D090EF1CC /* BeResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D4B1A9F978F3F86AC794C5AA19FACF8 /* BeResult.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 7171773532BA8607A9C99361F0D69C44 /* IQKeyboardManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C3E3CB761383A5F33EA2941AC616F6F /* IQKeyboardManager+Internal.swift */; }; - 7190E68E282465AAE900D152367CCCAA /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FB250AAAF8B838B4EF4268BC3F8F27D /* GULNetworkConstants.m */; }; - 71A04EBB1C14608A292EC31590F3128D /* IQKeyboardManager+ActiveConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 484F5E697B7673FCBC7DB9958AA5877E /* IQKeyboardManager+ActiveConfiguration.swift */; }; + 706546C97EFF9C0C7BA5ED415432F4C9 /* SPCCPAManagePreferenceViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D407B14424BEC0F39C5A5519E9569AAB /* SPCCPAManagePreferenceViewController.xib */; }; + 70EB2F7CFA7F85E4F0AE0FDDD390BA26 /* CustomHTTPProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = D648943AD1475644A64F5CB20717192A /* CustomHTTPProtocol.swift */; }; + 710A48C754849C6722436AEA00D0ECD7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 7171773532BA8607A9C99361F0D69C44 /* IQKeyboardManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A89F671C269C20114AD5CEEF81E691E /* IQKeyboardManager+Internal.swift */; }; + 719FF446F175A25EBFC0546BD4CF3AB0 /* SPCustomViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 11DDF4F1DF218CBFC359A60C30CF9EEA /* SPCustomViewController.xib */; }; + 71A04EBB1C14608A292EC31590F3128D /* IQKeyboardManager+ActiveConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7DA271879C5545FA95AC3A9F8807B2B /* IQKeyboardManager+ActiveConfiguration.swift */; }; 71A53BFA3C4C43E666F8C0DA6028FCF6 /* Pods-Examples-ObjC-ExampleApp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5076611C4673EEC7B845A13EEDAABDCD /* Pods-Examples-ObjC-ExampleApp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 71F08E1EC2D0C8CA35BE4BD9BBF3698E /* SPJSReceiver.js in Resources */ = {isa = PBXBuildFile; fileRef = D58978C5A6A1FD143B441530BC082B6F /* SPJSReceiver.js */; }; - 71F2FCC9E452CA31D2ED1BB8AF6A89A1 /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6BCF353F54D6803B0577E9013F8AFCF /* Expression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 72030D2AFBC5E0DE5353F515A92F9C36 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 68909044419BDFB4B2869748A4C422AC /* GULUserDefaults.m */; }; - 7303D59174144DC2FFA9FD55A75DEB70 /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71849E329BE263D85B52CB004AD51AB5 /* DSL+Wait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 730AAFFA807494C613D94C1A49A105D1 /* IQKeyboardManager+Appearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F002CCEFD50B47751B8C051FF7E20A1 /* IQKeyboardManager+Appearance.swift */; }; - 73986CCFA88FE227785408DB7FBF81F0 /* IQKeyboardInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0223A8872E2DE9040417C22BEE36FF8 /* IQKeyboardInfo.swift */; }; - 73FC32CA42ED30D3B475A536A8204A7E /* IQKeyboardReturnManager+UITextFieldDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CDDBDDF4BA670964E102E1B5D01DFAC /* IQKeyboardReturnManager+UITextFieldDelegate.swift */; }; - 7487E38D40E66F5FFFD005A2B623D6CB /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F46ABC219787CB09845CCE85B3B87FB /* DSL.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 7561F6BE1BCDF661394A621041D4CC65 /* NMBStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EA61A939CCD7358A691FDF7396A81F2 /* NMBStringify.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 75CFF68F44C474CA28AE5133FAD90731 /* GULNetworkInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = BCFA56426C8CA914EB49D1171DEB1BB7 /* GULNetworkInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 764E02B413B0707B86C093D026B9E20B /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = D16C3ABE9FB947B9FE3B6C21F667D025 /* Callsite.swift */; }; - 76FB584D728BC713D2A1234635F7CD85 /* SPPMHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = E809C61DAFA64E047AFD6934B3D368B1 /* SPPMHeader.xib */; }; + 722CFE49C5289FFB97B9662AD7208381 /* FirebaseCoreInternal-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E0A038CAFCE049FCCA2B19001A4C4C96 /* FirebaseCoreInternal-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7278303400D2ABC6AA304C9325B02701 /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4839977FE2F318D830B3611AAC7E0B07 /* ExampleGroup.swift */; }; + 728EAA16343AACA073D8B4FD67105313 /* Equal+TupleArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18F6047FB83FFEC12D6F0FE6CE4703E5 /* Equal+TupleArray.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 72D3DC3B6531EA6BC558FB653D1DF9FF /* Equal+Tuple.swift in Sources */ = {isa = PBXBuildFile; fileRef = F440B4F75146FD828851926CEEE43163 /* Equal+Tuple.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 72D9A45E0F0DE9C9CEFE9529ED72FE76 /* SubclassDetection.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA0F831F10B5385C15685F1BE6EEC902 /* SubclassDetection.swift */; }; + 730AAFFA807494C613D94C1A49A105D1 /* IQKeyboardManager+Appearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B9ACFD5AA593AE2F9E646FAD249CCAA /* IQKeyboardManager+Appearance.swift */; }; + 7451F8CB89E1E04B366DBFF51B829AE0 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ECFAAFC62A2DFE367B301D75F04E4EE /* FBLPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7493C9A6B26E0389E19D56F4E597B420 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 9203BA4D6A6B272DBF889E011390B373 /* FIRApp.m */; }; + 749CB711DD437086998B63AD8E67067F /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEED0B0D8119723149D7E468C5282C0B /* Expression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 74C463E9D6DD2F959C453D80B77646E8 /* AsyncExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5CF58C2980FC8C6E33960F8257583AD /* AsyncExampleHooks.swift */; }; + 74D8047BF13BE50C4380FA0FA14B5398 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = B1C3C5D363C62E3B2674821C53520683 /* FIRBundleUtil.m */; }; + 74E2C46143EC1F9C92E87DE22E41CF9F /* QuickConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBE8437615205B25F5BEF35B3A81EDEE /* QuickConfiguration.swift */; }; + 760AD73609933DD80F292087F77C65B6 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03A4E26FDAB2812977B49469A6B6B561 /* Example.swift */; }; + 760B5F227A6234520658AE2331625379 /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4E19260113E31B01ACC4A40F06CC32 /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 764AAC6D37DCEE0CC7B6487094B2E76D /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 627553C3D560EA9D715BD1548B0CF3D7 /* ExampleMetadata.swift */; }; 7738FD778570CCA09140B99DD3A97C49 /* SPMessageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 022AE72E29CD671904856E3584C975F9 /* SPMessageViewController.swift */; }; 775943CEAAED11AE1AF65DB923F269CC /* SPWebViewExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 617D70F6D92E44183B59218BA5F565AB /* SPWebViewExtensions.swift */; }; - 77A752EBE7E08799F050F633BEF6FDF4 /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C4502AF490D6892982195E8C8A7F53B /* FIRVersion.m */; }; - 77AB953F19B64A50F29AED23EC5BA19D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 77CD5E3407D23101729E2FC02108365B /* RingBuffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92E4F96A08E513B2922ACE89FF98D93A /* RingBuffer.swift */; }; - 77D7C2409F5FADEEC010D48C48008EE3 /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = B41FE3E86B3EAF6DB3508ADFBF9B331B /* BeGreaterThanOrEqualTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 778B4229E23E12218122EE92523628A4 /* IQDeepResponderContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 790698D1907D96D40B94366B158B24F3 /* IQDeepResponderContainerView.swift */; }; 780834545C4B5786840807BF14CB7DD1 /* SPPublisherData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E67FC0C023FEEE646E022609D24DEC6 /* SPPublisherData.swift */; }; - 7868CFBD184F790A176B74B5026E39F1 /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 7645796C13F9EDC0C400E92890E1303E /* FIRInstallationsAuthTokenResult.m */; }; - 789F719DDEB3C998DFC3124B9644D736 /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = 85B42C336123B93CE8962DC3EF0235F1 /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 79078669FADB1D015FFD6541663F09EB /* Await.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6DAFF4C34A4E5072E581581BD3C7320 /* Await.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 7947251E913838664C2C5D46E931C9A5 /* ToSucceed.swift in Sources */ = {isa = PBXBuildFile; fileRef = C36F5EFB0BC6BFE4499C4B8EB6AF10EE /* ToSucceed.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 7948D82F68FD8B1BCE4962FE81B8E1D0 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 5204E4DD30CEF75C3A2F42A5154182C7 /* GULNetworkURLSession.m */; }; + 78D36ECD4B1C245F739FE0DCDD86D62A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 7907D88CE0210C78C74F77A38220E2F2 /* UIView+IQKeyboardExtensionDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1EF5C57CF95EEDFB6147F92D19FD6F7 /* UIView+IQKeyboardExtensionDeprecated.swift */; }; 794A673A2F56336E980F75EDA02CD25F /* Bundle+Framework.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1049229D7F62564EA52B9AC96A0C3031 /* Bundle+Framework.swift */; }; - 79AB00FAA745A1CB8FEE3059696B2036 /* IQKeyboardResignHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E3D41C45D858EB2DA46CB6B47944F41 /* IQKeyboardResignHandler.swift */; }; - 7A962F48CA17296DDDBD1B08734554F0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 9C1CF97D6E2D910E716566E0E6577558 /* PrivacyInfo.xcprivacy */; }; + 7977571FB80FA05A18B90134DB1DAD88 /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF2760999E9505C542C43463DA33C683 /* BeginWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 79AB00FAA745A1CB8FEE3059696B2036 /* IQKeyboardResignHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E79685EF80A61FB64E0432F6162A1238 /* IQKeyboardResignHandler.swift */; }; + 79DE2217B3EC175E089F343CE6C81BFD /* TestSelectorNameProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26484551773621D3B85EA2980BF9C36E /* TestSelectorNameProvider.swift */; }; 7A9D98D0FC3AA6086664643910DA2744 /* SPCCPANativePrivacyManagerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FC119477F460006B723993FA489467 /* SPCCPANativePrivacyManagerViewController.swift */; }; 7ADBF20309E846BF636F5ABE3B3518E4 /* SPSDK.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64D94984CD5EFE5B89EF3B4A04CE304D /* SPSDK.swift */; }; - 7ADC3912328ADC803DDD4023CEC59D26 /* ExpectationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C81DD2F22C774AC3D4CE877C34EFD02 /* ExpectationMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 7B2D294C4972F7DA816F9B2AC0A1E524 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D52CD7197ACC1E43E8550270796A4CE /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m */; }; - 7B41F5CE95732E965ACC4D817E88B517 /* SPJSReceiver.spec.js in Resources */ = {isa = PBXBuildFile; fileRef = 27958D4E3AA3B961EBD163BD2E74D50E /* SPJSReceiver.spec.js */; }; - 7BBE2FD1C217A6E99934F8B8EF40FDD0 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = D18A08E958F91835B67DA617DC313A92 /* RaisesException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 7BEA3E5604FEAC7F29FD4F290B3E30A0 /* BodyDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8ACBDD2D08FBECE60B571501F156A9C /* BodyDetailViewController.swift */; }; + 7B3F92A62D124C593C5B226CA3E64008 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 30F24B2C15D59F40D98C16A0F0F912AE /* GULReachabilityChecker.m */; }; + 7B6D521C8CADB209699197EB18BC7D6B /* QuickTestObservation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01A004F916AE721171E411659CD37E18 /* QuickTestObservation.swift */; }; + 7BE767F73E5535731A05F40242B88746 /* AsyncAllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FFDDD271BD34C9D86E1125AE8EADE30 /* AsyncAllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 7BEA3E5604FEAC7F29FD4F290B3E30A0 /* BodyDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43EAE0D413F9625D75E608495B1CD93E /* BodyDetailViewController.swift */; }; 7C04C250FC247CFA1C98A6F30C47F1FA /* SPUserDataCoreToNativeAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFC7850E9B7310BAB913C6048A714A7D /* SPUserDataCoreToNativeAdapter.swift */; }; - 7C662755DCFD4EEFB906EAF13FBE4CAD /* Quick-tvOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EF994FE247663F4A82F3ED97A8181E6 /* Quick-tvOS-dummy.m */; }; - 7C777932941C6EA53EAB855BDC8EDF7A /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 7941E29EA7E328B36CAFF35CE9737F57 /* GULMutableDictionary.m */; }; - 7D07B96E6C59EB307A889347251A2A63 /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9C973AA0FBD247656B58ACB72D0EFD9 /* Async.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 7D7F74526560F8EF6135017A7FA83B5E /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A9305FF39B7901376A007AD1B77B75B /* GULAppEnvironmentUtil.m */; }; - 7D8B007D9AE0F874855B0B45B47B0FEF /* IQKeyboardToolbarPlaceholderConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED80881EA361D147468F7A78A220F6BD /* IQKeyboardToolbarPlaceholderConfiguration.swift */; }; - 7E9BDE2473704BB03D3E291E36E7D52C /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = BB4C87A48ABBDAA97592080F85929A90 /* QCKDSL.m */; }; + 7C0FD2392C294920707F2964049C1152 /* PollAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EC6888F5775C185C1CDDABBBDBBA30D /* PollAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 7C53650E45FFC5893B26340624FE3998 /* MatchError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BFD36A5C928AC017F56C1D85904E4BA /* MatchError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 7C575A96C6D5B3C12254601A9CB6CC21 /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 627553C3D560EA9D715BD1548B0CF3D7 /* ExampleMetadata.swift */; }; + 7D4A73D72E8D7B2BDCF552EA967344CA /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C925C17E276718B3B82E1F218B59371 /* AssertionRecorder.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 7D79E4E25E2D93C44FDE85B2E64DBED1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 7DEA49FF918EF9A70822082BDAF2AF33 /* CurrentSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1B783765AFDBBC9FF7903D64E5A39B0 /* CurrentSpec.swift */; }; + 7E40A8DC22BF42BE8A7D1601EBB1473F /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = EF9D8ACBD90B202ED7671AED491D5F28 /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7ECB33DE7F4F4C3FB20671F5D7AE957A /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 06CDCF1DEF066100C9A8DA515BF0F69F /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Public, ); }; }; 7EF4C8B7230594D639F76CA67D0A2C93 /* SPCCPAManagePreferenceViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = D407B14424BEC0F39C5A5519E9569AAB /* SPCCPAManagePreferenceViewController.xib */; }; - 7F9E674BC80C1EB3E5B85843CF877F3B /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6BCF353F54D6803B0577E9013F8AFCF /* Expression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 7FA9122DFFB32B0BAC60D11B59042FA2 /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A69621B2FFC5BDB799083519D042BA81 /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m */; }; - 807D2E423EA2EF3BFC0649A900513658 /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 691147EC323A13E5ADFBE451288ECDF2 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7F60AC23122F708035574FF801073698 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 369624BF24186412CC06088709AEE3CF /* GoogleUtilities-dummy.m */; }; + 7F67DF9E85AF90BC113B999543A1E3EF /* AsyncTimerSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 475D9F18CAAD368552304C5852F05426 /* AsyncTimerSequence.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 804F74BE6D57E34B1655405D20EEFA1D /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58C9FAAE4EC65C106EE35B0F9CB1D07F /* BeLessThanOrEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 8096E5FBF3ED5E75A63F7C63773023B0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 8097D3814DD761805D17C1D26F355540 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0938054FF37292F241D2F03657DCA974 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m */; }; 80AEFD5BAB5659618A5D918DE49272EF /* SPGCMData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00BA232A188CE8CB8BE0617C8DD20B4C /* SPGCMData.swift */; }; - 80C458407AD8BC005BFD304DD2D506C9 /* IQTextInputViewNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = A95932A805643F9F77750936A4A03862 /* IQTextInputViewNotification.swift */; }; + 80B82781B81C338EC01EB2715CDAD602 /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = A26BBC7E4321F39E52EB7D529A6C5E94 /* DSL.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 80C47BB4735447FF3A5BD28D85A79FB7 /* IQKeyboardToolbarManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = C936250F69BC4E03BF6EFDD20C6E0449 /* IQKeyboardToolbarManager+Debug.swift */; }; 80C6EB50762974A82A84DD03629AA148 /* Bundle+Framework.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1049229D7F62564EA52B9AC96A0C3031 /* Bundle+Framework.swift */; }; - 8140773BB445E8546DFAABAF7E666615 /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = D249544530276105CB9036CD6A7192A1 /* Closures.swift */; }; - 816DADA2E1B3314639219FF47F1B8ED9 /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FF30CD13696FD7A58825344738F12F1 /* BeGreaterThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 8195628AC0D48405ABFDABF6197D4957 /* SPError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F85113A0AACDC00A440D14420910AE6 /* SPError.swift */; }; - 81B1DE81A5C16460AC83F4990248FF8E /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD569AC6FE64AB701ED68AA2D98F144 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 822705204098FCECD2F2658824E84ACD /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 880BC78F4E9E665E279300D955AB03E0 /* PrivacyInfo.xcprivacy */; }; - 823A69EF48212CA7AFDDE4949FECDDB5 /* ElementsEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = A19DBDACF73DF8A661FABAF35E57ADE1 /* ElementsEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 82B5DFEBC64045221755C35F2785FC27 /* ContainElementSatisfying.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1977D158C8E9B436CD6D3027B9A13F76 /* ContainElementSatisfying.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 82BB43F626D42C809F3CF9E826452354 /* JSONCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF699755FDEB1A32DC1FB124C03FF4D7 /* JSONCell.swift */; }; - 83422F037A16EDCB0C871E2EA82FA358 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = EF7642BA7C25EE9CE4D0167A9285A7EB /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 838ECFEEFFEAF6C0048E063FAC968E81 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = BF893A9ABCE11078B3438156F1640B3B /* GULSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 83DADF0BC430E8378A0EA2E440F01F9E /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = C30025A4F64B593C3085A683F7D1C262 /* BeAnInstanceOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 84C5FE455DFA83CA32A4EA0C21846C6F /* Wormholy.h in Headers */ = {isa = PBXBuildFile; fileRef = 249FFAAA24EC0831F3C320D83DB031AC /* Wormholy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 84DAA0B06C27902A9F78DE22485BF188 /* NSBundle+CurrentTestBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECDCF0F3A30E9CE7ACD3E327E2BB92D2 /* NSBundle+CurrentTestBundle.swift */; }; - 84F83965D58A60728311ECBAF76C2836 /* BeResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D4B1A9F978F3F86AC794C5AA19FACF8 /* BeResult.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 850123D3B174F091C5C7076F6221E3AD /* IQTextInputViewInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F4D889F499A01F669282D6F42B9ED88 /* IQTextInputViewInfo.swift */; }; - 8505344974A53EE60061BBFA3A9D6D4A /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 7573518237677C0E6B57D981941036A6 /* FIRComponentType.m */; }; - 856F57EB0EC433C9AF8E7E089D282C12 /* IQTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D34A2DCD23DA65175EFE09E23F089D2F /* IQTextView.swift */; }; - 859B6F58397D28FB6595F081C6C3EA2A /* IQKeyboardCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CDDDB1E71C30352FDEF7C83C02CF7745 /* IQKeyboardCore-dummy.m */; }; - 85A77336505B3EA0D13BE8DA1CEE3147 /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DFAD2755DFADA501DCDEE7481708E60D /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m */; }; + 8197C81A6E3651313B7688D3C30CDDCE /* SPJSReceiver.js in Resources */ = {isa = PBXBuildFile; fileRef = D58978C5A6A1FD143B441530BC082B6F /* SPJSReceiver.js */; }; + 81C52C82CF4217406DE6A1E7F4F09307 /* PostNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46DECD16C4B5D1902DD9C67D4E8B0D99 /* PostNotification.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 827D4AC084DA2FE3179B4DFB1258B388 /* ContainElementSatisfying.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C6E0A6079652131BBD0DBAEEAC0EFAA /* ContainElementSatisfying.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 8297AD82EB8109C3EF5FF70BEEA55088 /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D861833DDD7FD6648C4077FAB6A45AD /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 82BB43F626D42C809F3CF9E826452354 /* JSONCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42309A7D3A62F66FC79D91D12F041257 /* JSONCell.swift */; }; + 82CADEA8EA1BDE0CD2922067E51E9A70 /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 97C08F366011ABF5B61B5D428C2A32B0 /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 83000B2F87DA911236FFA2F745497D79 /* IQKeyboardToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = E96E350596132C3A65B58D48E75232FE /* IQKeyboardToolbar.swift */; }; + 834088734717D2B434F2DDB4867B6C14 /* HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8B93BF6FE9F9C181C11A80BA91A4930 /* HeartbeatsPayload.swift */; }; + 84437A3D524AF26BCF0B0AAF98530EC3 /* NimbleEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA5D8EF50A7F32B84EBC90AF394CB7C8 /* NimbleEnvironment.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 846460D4C51BDAA4A54E1696111C45FC /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEED0B0D8119723149D7E468C5282C0B /* Expression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 846BF5330DD96081D86381224386284F /* DSL+Require.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1D1AC22D8A04C1B881C008DB0F7CC7 /* DSL+Require.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 847D9BDEEAD4A1E126744333E60CB939 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED6272CCA83508A3A34BA111C6A513BB /* Filter.swift */; }; + 84C5FE455DFA83CA32A4EA0C21846C6F /* Wormholy.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BEE253B425B0AFC6BE08AEB7A374D86 /* Wormholy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 859B6F58397D28FB6595F081C6C3EA2A /* IQKeyboardCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 588242DA939C771DAED4F4CAD87ADD5D /* IQKeyboardCore-dummy.m */; }; + 859E01C4C3F14B093EFCA40D225468EF /* ElementsEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B143EBC1966C88F868E06AAC74D1677 /* ElementsEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 8608810E938F441DE59979EA9E6F9CF4 /* ConsentStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B4EE46F7F6CD84E907D32A3E394405B /* ConsentStatus.swift */; }; - 860B015CBB2C11A3782DDAB34D72C582 /* ElementsEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = A19DBDACF73DF8A661FABAF35E57ADE1 /* ElementsEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 862A6D2DA83E6024BACDA8F52C44ED36 /* CwlBadInstructionException.swift in Sources */ = {isa = PBXBuildFile; fileRef = E70DF14428EB0C35012D69FFCB808172 /* CwlBadInstructionException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 86A6AC20D1D6012F421F9AD2968572D6 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4463D53FFAE7FC5181B6344DE4693AA5 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */; }; - 86BB8D71F18862245BD8272B7682F5DB /* QuickSpecBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 17C54054A65D6AB7E21A5D6829DC0D93 /* QuickSpecBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 876D830BDDCF74F447906E087693E70F /* WHTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF5A4886C0DA3C0905EC20EC9E16EEEC /* WHTextView.swift */; }; - 8773C1F7E001149251F72F3B0E05F474 /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D9FE6BE7D01AFF37E1F76BF3302ED01 /* Contain.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 88457669403905BD1FE37BDBD3F796EC /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 114EB343440B05856B1F4C37CD3BB335 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 86A6AC20D1D6012F421F9AD2968572D6 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 105CE05DE7CD3B0A74D93C6AD4B5EA00 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */; }; + 86B851708932AE4EF4FAD37947BC387D /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 374E98AEF6664423828FD8464896DD0C /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 876D830BDDCF74F447906E087693E70F /* WHTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EBA88DFA4CE4EECE2EB0957F3BC9427 /* WHTextView.swift */; }; + 87AB4377AAD026B0B29FFBFB8E8BD643 /* AsyncSpec+testMethodSelectors.m in Sources */ = {isa = PBXBuildFile; fileRef = E0A060E5DA1F12147B39CB28131FA6D2 /* AsyncSpec+testMethodSelectors.m */; }; + 881297DFAE7FCD0B7CE35BCB17B9BB04 /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 08F357DF6D86BCE1B955CCA6588B08ED /* FBLPromise+Wrap.m */; }; + 889F8838BA5B9ABE765593C9B4EFC2CC /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EFFD7A3CE87229F9775E2437AB22494 /* FirebaseInstallations-dummy.m */; }; + 8906731121D7E71D8356EB7841785652 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 79B5DEFDD954FFD119B8D63652978BD1 /* FBLPromise+Timeout.m */; }; 890F2A7EE9B3FB2379ED6C6CBBF29CC7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 89100D489AC8EC43E70F6CE4B967AB9F /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B6595610EBED427CA9A17FD63904EF6 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 89CDE11DFBA5DB3C586A8465C956CD0F /* JSONView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B6CE89B16F4EDDF0AD4EAFB1726E592B /* JSONView-dummy.m */; }; + 8929213E64105C6B992DF474C3C13FED /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 8931C1D7D40FF9403C542602C138B39E /* FIRFirebaseUserAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = 81333C8E5279606026C2964759B6A72B /* FIRFirebaseUserAgent.m */; }; + 89399D22C8977574686FDA973CC3FF4A /* mach_excServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C82904C58AECE94225849CD3382BF5E /* mach_excServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 893E76A1AE8389810AF5D77B1660A5F3 /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = F63D0B2446F40712AA7AD3941D1BCB53 /* ExampleHooks.swift */; }; + 89C0678D56738ECDF86E588E1454FA9D /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C74BF65952CA34C7E7E7CE246246DDE /* FIRInstallationsErrorUtil.m */; }; + 89CDE11DFBA5DB3C586A8465C956CD0F /* JSONView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9486C1AFBFBCE9306650338B9FBFB1AD /* JSONView-dummy.m */; }; 89EF73204A64835221F4B21B4535F663 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 886B70550F3C22CC20F9B77783E267E6 /* Foundation.framework */; }; + 8A481A74BCADC048A3F809F45FA77791 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A3F91679C52A3A821136E6505DD539 /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; }; 8B6C19D45B1A98FC534B68A5480F4AF9 /* ErrorMetricsRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E61BABB7274D17637E09D5A58A03EFB /* ErrorMetricsRequest.swift */; }; - 8BCB828676F75412C423F76688D87FE1 /* MatchError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3055702285B0D06F231C983A71921A46 /* MatchError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 8CE12BB12518908B570DFE4921C01603 /* RequestTitleSectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3B980FCE4E284EFB5392F27CE383026 /* RequestTitleSectionView.swift */; }; - 8D2759B025D3A48027A72AD41BBA395F /* mach_excServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA718FEBF563149B47AABD80345B5A8 /* mach_excServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8BA002887FDB1808AA352DCF5959267E /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = AD32F2285581C5240F786F49CA8C33E4 /* GULUserDefaults.m */; }; + 8C16C6296EBD70821735825CE53CC264 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C60DC2B63ACF15C0A2D4E186A8D9450 /* PromisesObjC-dummy.m */; }; + 8C1EB97D4A8944524ED5AC5D3F01D0D5 /* SPGDPRVendorDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DFD25270998D2DDE6B8FC4CE1F1E2368 /* SPGDPRVendorDetailsViewController.xib */; }; + 8CE12BB12518908B570DFE4921C01603 /* RequestTitleSectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D7A3F73EF1C63F9610263E2A3C4EBA /* RequestTitleSectionView.swift */; }; + 8D1D77250AC74F5C88B1481C0FC02813 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 96BEBF5B770103D49A6779BB3F23B618 /* PrivacyInfo.xcprivacy */; }; + 8D3AED7AD2C1FE2CB9DC4CF97989CC1D /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = D81FFB2F47CA4FE79FA032EFB71FA53C /* GULSwizzler.m */; }; 8D86A22050F42CA10B647F2DB3B8FAA5 /* SPNativeUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 663B58787E8E424813FCC0E36111F619 /* SPNativeUI.swift */; }; 8DA33568F24969949661DA3449BF97F4 /* SPPrivacyManagerTab.swift in Sources */ = {isa = PBXBuildFile; fileRef = A602E08A711C2221EF6229727384A7CF /* SPPrivacyManagerTab.swift */; }; - 8DDD3267EC8486CEAC8E246C309AB53E /* IQKeyboardReturnManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3198E138D98A322C2A1BDA3E2FC9CC49 /* IQKeyboardReturnManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8DF96287A1CBBD2079C8BE1D2C195401 /* SPCCPAPartnersViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F69850BE0942AAF7569973E18927CB8F /* SPCCPAPartnersViewController.xib */; }; 8E19FE8BB72AB8610CCD04B529532803 /* SPCCPAVendorDetailsViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = DC7D803B015186A369CD4EEDDEA702D5 /* SPCCPAVendorDetailsViewController.xib */; }; - 8E42163D7EF727ACA2DFDE9C034873E5 /* IQTextInputViewInfoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88DA477CC472B6C4297FD3E3512B8C55 /* IQTextInputViewInfoModel.swift */; }; - 8E57C787B2848ACF71FCFFCAECD980A0 /* IQKeyboardToolbar-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F88675335567AA4306DF59F91BBA41B /* IQKeyboardToolbar-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8E5D3BEE8639C262E88813CA06907A8A /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 907E846CE0F2573B140312B3DF059B67 /* BeEmpty.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 8E488F785EEA12B53987EC7C15DAB186 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = D1F15C0CB1373E0CDEC3585B63805043 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; + 8E4DC5BD2B4BB86B7CA6FD70F6AE2CD8 /* NMBStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = 050F9B9E655D48CD28778AA2297DA7BB /* NMBStringify.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 8E5E43286B05CBC5366AD6130DB3F3B6 /* DSL+AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E7F1F0F821C28473F4A86C41B25AB7 /* DSL+AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 8E6AFA01D007651B14641DF08ABB45BA /* SPNativeMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 946D9B91981FF3562F0B248C01EF193C /* SPNativeMessage.swift */; }; - 8ECC1AA997309E820CEFA4658849C5AD /* UIView+IQKeyboardExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 520CB1A9CBC9C1C36AD135B5CA65FF69 /* UIView+IQKeyboardExtensionObjc.swift */; }; - 8EF81EFD62E29889DC509AFC7B9A4DD9 /* _ObjC_HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2D4E2CA4FAC5D4ADD2C8AE2C401DDE1 /* _ObjC_HeartbeatController.swift */; }; - 8F2BE2405B3CEC590A4210535571CE16 /* NSURLSessionConfiguration+Wormholy.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A665D3B04CA1B83D89AB874F4041163 /* NSURLSessionConfiguration+Wormholy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8F8267A271EDA41808A73D90CF0F44AE /* Postman.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDCCE99C011988A7788B57327E840618 /* Postman.swift */; }; - 904901E31A4661BCDD7733BF4812C3A2 /* IsAppEncrypted.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E8488943FE22D17A3F4605A7CB55677 /* IsAppEncrypted.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 914FB74629A77885611153AE7B53F20D /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 0034872F1B60FB5FED00F412D9D7A439 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8EFCD85B3221620E636ED6D24D5C39F9 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 8B53BBE2A0D25B5C8D58832F4D0ACE1F /* PrivacyInfo.xcprivacy */; }; + 8F2BE2405B3CEC590A4210535571CE16 /* NSURLSessionConfiguration+Wormholy.h in Headers */ = {isa = PBXBuildFile; fileRef = 236DE9F22C6527027547CC5C4DD8596D /* NSURLSessionConfiguration+Wormholy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8F4874B5FAB85EA9FAA7CE1C916F2E12 /* IQKeyboardToolbarManager+Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = BED36662D4F72A2E1B9DA8B9823EA686 /* IQKeyboardToolbarManager+Deprecated.swift */; }; + 8F8267A271EDA41808A73D90CF0F44AE /* Postman.swift in Sources */ = {isa = PBXBuildFile; fileRef = 611A4150162221DA6ED1C214A3384D0B /* Postman.swift */; }; + 8FA56A61526ECBCBB3DA5B46F7D957E7 /* RingBuffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 135F15712F2E26302AF7A1B3321C1933 /* RingBuffer.swift */; }; + 9002AF57A91A2FF26C5DE7E2A0604550 /* Pods-Tests-SPGDPRExampleAppUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 759D3EA383B901D142D2FC3A8CB640DB /* Pods-Tests-SPGDPRExampleAppUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 903A10BDE9684F07578F7E107DBDFD92 /* Quick-tvOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A109023FCA68FDE015141DD67DC29755 /* Quick-tvOS-dummy.m */; }; + 903D9DFC1F4BD71907599D69F1452209 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC3007A68D81AA5A7DD2C0D79C5DA30 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9085F53299A9FA89BABB78FFF4CD2942 /* AsyncBehavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FF007DE16FC76B92D2B471ADE891BED /* AsyncBehavior.swift */; }; + 9102E9871401005BC3F6C310D5A080F0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 914421E8A8B0CB5D7F60E944EBBF3934 /* CurrentSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1B783765AFDBBC9FF7903D64E5A39B0 /* CurrentSpec.swift */; }; + 91549396B013707E28228B371738EDCB /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 48083DE72EF8FFB2C009AEF98D922690 /* PrivacyInfo.xcprivacy */; }; + 91A9CA7AF46D6CE2880DCA610D02FBD2 /* Requirement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 288EEEA8AEE2176ED91869E38426DC17 /* Requirement.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 91BD46E56E9D77CDEC90AAB2878518FC /* SPUserData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B1C4DA30BEAE3606FF4DCEFDA3729DD /* SPUserData.swift */; }; - 921906896418BD5370447A3078F2736E /* RequestModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 669C36C9D006E74794BD40EFDCA193C2 /* RequestModel.swift */; }; - 925E70F8D174E69BD097BE93CFB963D4 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = D25A947E6669C5DD957CE3956C908ED1 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 92CC18262D662902701519F57892E803 /* SPCCPAManagePreferenceViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D407B14424BEC0F39C5A5519E9569AAB /* SPCCPAManagePreferenceViewController.xib */; }; - 930696A73040D784289A74B3712D1052 /* XCTestObservationCenter+Register.m in Sources */ = {isa = PBXBuildFile; fileRef = 02EE6C687792F6C27F1D79E927D2D8EE /* XCTestObservationCenter+Register.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 931079823B0C5B62072B747ED8CA52B6 /* URL+FileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D27B3BC4B43A5259CFA3F41260ED3E /* URL+FileName.swift */; }; - 9376A200EE7E8FB5FCB0B322AA6593DB /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C3727AAE81DC2BDC43156A2F1B88527B /* FIRInstallationsItem.m */; }; + 921906896418BD5370447A3078F2736E /* RequestModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EB98EC760A9900E08B973CADE03FE11 /* RequestModel.swift */; }; + 921D6F2E0F58E42658BEB12886882E95 /* Matcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A27B524BCCE68381BE0D1E3D5FEA7A6 /* Matcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 9287C158B322063134F05EEC4776293D /* Quick-tvOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 969FE37988516D4F7FCD8175873C3FD7 /* Quick-tvOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 92D4D54B1A847D46595C252A928178D9 /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 784E78149BB92433D5D2BB064AEB14AF /* FBLPromise+Delay.m */; }; + 92D7A4883DE80877BB983AC7094AD80E /* SatisfyAllOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = E28183BA96EE0DB449E61EDB2A843AFE /* SatisfyAllOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 92FB58C2D2B11E185216C5D8DEE7065C /* CwlMachBadInstructionHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BB96A1C01235D2DB104ABB1DC2A63E21 /* CwlMachBadInstructionHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9301B49861F217CD337483E5AE1F69C7 /* IQKeyboardToolbarManager+Action.swift in Sources */ = {isa = PBXBuildFile; fileRef = D91F547B9A243B421B112EBB9E56482A /* IQKeyboardToolbarManager+Action.swift */; }; + 9319D365F13BBB7D38102A9E6D67D7B4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 886B70550F3C22CC20F9B77783E267E6 /* Foundation.framework */; }; + 931E81541F3170FAD7CF3FA2864EB9DD /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3125E0AEF4C07B3C967DB0A1D09ED6E0 /* FBLPromise+Validate.m */; }; + 9335E0D67CBEA73EB1A98BEFD3CD5B25 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = FCAF9049188EC86589F780B62B42DDE9 /* PrivacyInfo.xcprivacy */; }; + 93605FCACEF04BF42F32654E0388E99B /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = AB8A4A9B4157CDAA3D994D9F0DAA5886 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; 937EB7F077EC7D4EF382A23CE99676BE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 886B70550F3C22CC20F9B77783E267E6 /* Foundation.framework */; }; - 93B2EFE7E08E384A2D81B5F0EC1CC937 /* ErrorUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECF1DF610DCD827C87F956BB565C8C42 /* ErrorUtility.swift */; }; 93FE3145C2EB0FEEDC4C3C2F39063DA6 /* SPGDPRManagePreferenceViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = C03190257F1960B9B76BE102566E21AD /* SPGDPRManagePreferenceViewController.xib */; }; 941723985A9273897E0E716A848D039B /* Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6EE4EAFFA46B29CEDB96AF54E59AD52 /* Collection.swift */; }; 942523E01A104C54D90A23C8F534A4CC /* SPCampaigns.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9811C119055ADA50A0FB38EFA8F3237 /* SPCampaigns.swift */; }; - 9443AFA1007B2A92D40D0226648D466B /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = FF60025BD595A9B87DF6E21EC8D4B2AC /* FIRInstallationsIIDStore.m */; }; - 9494494A835EA3F942ABB78D9A6D81D5 /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27B0BCF2353094B4FD14CEF688580407 /* BeAKindOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 9583009726318E46A3985BCAE969B9C2 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 34761E5898D7D8E84B75A74099571E18 /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 9599378468973B021484936F587747E0 /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C5A44B76A3D4D82D166B3640F49C77A /* Equal.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 9439CAEA2CC5B25DCC288E56E617A846 /* CwlCatchExceptionSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE99FBCE8B8C83A93A6C33D9D5723514 /* CwlCatchExceptionSupport-dummy.m */; }; + 9467C383135B4FF22E81454BB204B34E /* ToSucceed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81DFF5B09AFDDA41E61A9BC5AEDDC6FD /* ToSucceed.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 946BEC4ABBA847611C4204CC76C9DBE1 /* QuickObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 39521561A3A1D050295F964A5391C69E /* QuickObjCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9491840FF9CFC972963D2C8D4686D043 /* HooksPhase.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6CFFBFD33C80AE18D03D79100AF8558 /* HooksPhase.swift */; }; + 949275F4FF38B01BE04B831EC7EF9AFC /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = A9E567C3801F77C6845784BC161E6AF0 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 954A154D34665966021DDAF41670BD2C /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = E0043707CF07D44F9220C7CF087E2D95 /* FIRAnalyticsConfiguration.m */; }; + 954C0F36E97047A577FF1357B9C0FBBE /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = E2129BA7BCD8B648B9FB349C176DA621 /* FBLPromise+Any.m */; }; + 95841BF2D76DDFBBD1CF3853C878E2F2 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B73E46A10649788206CF69187F13906 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; 95DD82402D3BC85FADC048E222F53998 /* SPPrivacyPolicyViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = 912335C07E49ADE52F19D561EF6DA3CA /* SPPrivacyPolicyViewController.xib */; }; 95E3A7CEC7A3D008F26846A6BD7420AF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 95FF58EA21190CCEDD53A1B4D3260C05 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 967683DA52E6699D50D08A6402E76EE5 /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5867E5094DC63DF9536C0CD4F951F7D3 /* Stringers.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 9678A12EE467BF1483411C70EB1F0967 /* WHTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 119C22191F2A18E911EB69EABC7A05A4 /* WHTableView.swift */; }; + 964376244EA85C3FDA8B336926AE5718 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = D0E78647084792E4319064B21AE398EC /* PrivacyInfo.xcprivacy */; }; + 9678A12EE467BF1483411C70EB1F0967 /* WHTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A031FC6E352E7051CA493D7D23896D3 /* WHTableView.swift */; }; + 9680B3A0639DF7526CEA82E68C3B2459 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E2EAA97E201B165642B004876504B27A /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 968E62C694051EB0EEE5774D236973B2 /* SPCCPAPartnersViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = F69850BE0942AAF7569973E18927CB8F /* SPCCPAPartnersViewController.xib */; }; + 96B2795D21F95FE1D8C6E1CF242005F8 /* NimbleTimeInterval.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54D129B0FF00E96ADA5E985D90AEB12D /* NimbleTimeInterval.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 96C3189109605C91F70965FC2778A685 /* QuickSelectedTestSuiteBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = A65D69CB88594A9705501AF0677C3716 /* QuickSelectedTestSuiteBuilder.swift */; }; 96E869BE6BE558E42A7B1F0D8CB55B66 /* ConsentViewController-iOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CB413D4FC5F9DFD4E06B1F4EC9D9074F /* ConsentViewController-iOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9719B95F68705BBB0E3D3B83810288D2 /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 7223E42D6E884EE0870AE6C92B365C07 /* DSL.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 97CD0CE0F983BF221C38B3B6ECB003D0 /* BeVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2747E5052238442DF33536DDD1F2A33 /* BeVoid.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 97CB01642A641B63B444D409068BC9DC /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE4C5BB8F7EA63BD8D6D7AA25EF08757 /* BeGreaterThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 983B1A74DF6DE4FED4683597F11DE51C /* SPPrivacyPolicyViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C384BAF69B1BDA613D1E4F78577AC62F /* SPPrivacyPolicyViewController.swift */; }; - 9874D24B7F16BDD273B4805E7B9AC9DE /* CwlMachBadInstructionHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 52ACDE1EC0344F289043D4436F43BB63 /* CwlMachBadInstructionHandler.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 988A0FCBECDCF5B13C0D886E62D70014 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = B02F30958F58C9BB4C92F25710B7BE2B /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 989B7B0D1925ED300862083FFD08535A /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 080544185156D8EFB4F8B2735F21B295 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98C626862369971C3742D6F76B96954E /* SPLocalStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 544D049FDBD11D7D2116C49CE621A93D /* SPLocalStorage.swift */; }; - 98F20916199547067B6F7553F3E07750 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = B02F30958F58C9BB4C92F25710B7BE2B /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9905EAE173ED950F17C4B7BBBEBD76D5 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1531A61005719146F0AC17BCAF28D30 /* Match.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 9911EF15E342F24EB4EC23B0ABFF7CC9 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = DB9B5CAC7BC1F418C4E3474C13399DE3 /* GULAppDelegateSwizzler.m */; }; - 99510F6F1DFF85D83BEBE7041E812F94 /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E645797C9F8763A16C47B162A02D0FF8 /* FIRInstallationsSingleOperationPromiseCache.m */; }; - 996BB640DBD6C5DC4440BD886CAAAE50 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = D18A08E958F91835B67DA617DC313A92 /* RaisesException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 999A472BA204C0478C77A5109186F1CD /* WHView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8706834DA071DFC86595867D0981238E /* WHView.swift */; }; - 99B7C12E5DEA9C9EAC1216DBCAC326B0 /* NMBStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = 5773DC71CA4EB2DAC5CB4BDEBD23ED11 /* NMBStringify.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 99CDDE11C5C3FEB2A8E2F99BD55BF761 /* IQKeyboardToolbarConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FF00E06150B4FB87D874AE4FBD8C1DA /* IQKeyboardToolbarConstants.swift */; }; - 9A61E05EF8588CDD3F7AD9DBFFDA0F4D /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = D34603469A654EB2572EC096EFA28BF7 /* QuickSpec.m */; }; + 98D4DF8702052534924A9B635F58C249 /* IQKeyboardReturnManager+UITextViewDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5DBC71098660DE5B08E3F9DDD5A97F8 /* IQKeyboardReturnManager+UITextViewDelegate.swift */; }; + 98E99E26C736E4B66F6F82B722AEDF81 /* Pods-Tests-ObjC-ExampleAppUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC6FA136BB9434E8C85E93ED49F4B26A /* Pods-Tests-ObjC-ExampleAppUITests-dummy.m */; }; + 994A121F189424AC74C1E52D0B20635C /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = E78C616233D5D9825EB073523F0DC62C /* FIRComponentContainer.m */; }; + 994AEB8567C56940702DD2296E6C9B3E /* SPJSReceiver.spec.js in Resources */ = {isa = PBXBuildFile; fileRef = 27958D4E3AA3B961EBD163BD2E74D50E /* SPJSReceiver.spec.js */; }; + 999A472BA204C0478C77A5109186F1CD /* WHView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4751DD6B17333E933F4633D6E698BA65 /* WHView.swift */; }; + 99F8376E84A9D5A823E0168AD8C7F6A7 /* Heartbeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6048C9C73410A27C6B4FEACDFD819DF9 /* Heartbeat.swift */; }; + 9A1BD08BE462A6B325DCF2E788B6BF2A /* AsyncExample.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDE29F7E2C2B8181BDC86D8BC3C43A2F /* AsyncExample.swift */; }; + 9A4018F94501CA6ED2440D7D4E0540B7 /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = FD17AB599D447FDD7701ECCA77D1AD28 /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9A5D2BC910BC2277C876226EB38669F6 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = 833828B6DA0C15775334C4481526CC58 /* Match.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 9A89FFCFC2A17839FC64E3CA908FF6F8 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F9BD032C6101EBB566A7C72079A9F6E /* FIRInstallationsIIDStore.m */; }; + 9B644107FB29AE8681579EE6441457F7 /* Negation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77C1460EBE5ED2EA5DA2743DF370336D /* Negation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 9BC7FF7C000E8F447AF0074D51F6CAB4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; 9BD90745A0C5DE1581E973994912C4A6 /* SPPreferencesConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41AF835CF9F5E221DEABDA6B8F4653CF /* SPPreferencesConsent.swift */; }; - 9BFA367FB38DE0E8D21755ABE7D80C37 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 9C79E37C0621060C31FDE074BAF33B22 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = D65ACDC02BA4514660F679FCD9A0756F /* GULNSData+zlib.m */; }; - 9CA2EF0DE4F47984AE4EAE2BB34F9FF9 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 45F8A2CA4DE0BBA8A73E91C061AB73B2 /* GULSceneDelegateSwizzler.m */; }; - 9D163EADC0B8251487A1D15C0DA7A0F5 /* IQTextView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F8B951FF6E5527CC53B9BFE276741666 /* IQTextView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9D1EB8F72269F7639EA989C450A71C10 /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FB8FC6C10C2A9A093B9917308EBDFA5 /* HaveCount.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 9D6B406DFE5A9167829E4738ECD8EC95 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 9CE3FF0FC82AAD2CC8663965AB73A13C /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26934FCB04DA419CDDC98A0054B0722A /* AdapterProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 9CF063AD4B3A38BB68F24F8258FA4943 /* CwlPreconditionTesting-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3863FD1C556D54C3E982C50EA82E084 /* CwlPreconditionTesting-dummy.m */; }; + 9D34AA9A8855CC4FBF8C6B9369621637 /* FIRInstallationsBackoffController.m in Sources */ = {isa = PBXBuildFile; fileRef = 62965629485AC3CF2814EC22328196BD /* FIRInstallationsBackoffController.m */; }; + 9D78C19B64B4DD8E28B4CB4DCE864664 /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE7F6B22DDE3192E0442A82C559D5836 /* BeCloseTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 9DB4007FAB30DBFB16D2B7ABBF4AF85E /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 99E2520C737AC3324E6D8537F4FE3F34 /* FBLPromise+Await.m */; }; + 9DBA28A24BAE417C61EDF7459B1417A6 /* AsyncExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5B09BA535863D4B01B71BFC5473DBC4 /* AsyncExampleGroup.swift */; }; 9DF30473AF8609DB97F8FEA4951F096E /* SPStringifiedJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = E98FFA7D2B12F8B56DF12ED0872E6ED9 /* SPStringifiedJSON.swift */; }; - 9EF4825D24EB3AB2099455C5B1F2401F /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 41AD1366DE5E6E6352C5EF924A0D9359 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9F110E10D8244220C5935C2866BE6000 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 92786E34D85D7C471450C99E8222A6B4 /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E0315A819CCE40715AA7EA0D3FDC908 /* SPPrivacyPolicyViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 912335C07E49ADE52F19D561EF6DA3CA /* SPPrivacyPolicyViewController.xib */; }; + 9E1EF13402D8ED84835CC887FE7D4136 /* Barcode.png in Resources */ = {isa = PBXBuildFile; fileRef = 87295588035B548CD735B7461612EFE9 /* Barcode.png */; }; + 9E2726BEEA22F505119A3E5FA6C10692 /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = BF930FF66C57169A442D8B8AE1758951 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E72E99F084FA5FA24B04C32573A9875 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A3F91679C52A3A821136E6505DD539 /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9EE86AD5249D81DE2BC7A1E000D73FEF /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC87B2DDE2EA8F037A768043509C7DC /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9F9E0690FED432F2EF91B9BFBA99D3E6 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = AA4F27E44DABBCD644F5EAFC786B157F /* FIRConfiguration.m */; }; 9F9F036B4C67E60C81006D4A790DCF5B /* SPNativeUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 663B58787E8E424813FCC0E36111F619 /* SPNativeUI.swift */; }; 9FA49574E7A90DA2736C15A086DF330E /* SPMessageLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77DA1D8C3D825C0C7E8EF07206E936D /* SPMessageLanguage.swift */; }; A045AA3F1A0457A98F5799EAD491DC32 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + A072F7B9DAF1246FD9627429AB822483 /* jest.config.json in Resources */ = {isa = PBXBuildFile; fileRef = F56C090F1C9366C37AB253AAB9FE1A05 /* jest.config.json */; }; + A0B4330F6FFCE05D877083804BBA3476 /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = E750A7087DBD3C4BACD13CFF8ED23007 /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0CCB72FBEEA5E29FBF8FB3DF40108A1 /* Nimble-iOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CF88DAEFC6154DED003F3A02E3B6AF3 /* Nimble-iOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A15E1E556BE4AA945D14393E34DDE65E /* SatisfyAllOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = E28183BA96EE0DB449E61EDB2A843AFE /* SatisfyAllOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; A191C1ACAADF2AD11EEA41435B294895 /* LongButtonViewCell.xib in Sources */ = {isa = PBXBuildFile; fileRef = 74CF2D6A2D0D5DB2BD259BCCF764887B /* LongButtonViewCell.xib */; }; + A1B673B5C9D9DE92ED09661798A8358D /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14EE15EE2D21740716E29AC2EE0A6076 /* Closures.swift */; }; + A1FCE868E7E656F6167DE4E238266930 /* Pods-Tests-AuthExampleUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F409AB3D85FB173A94C05F8560AEF6E /* Pods-Tests-AuthExampleUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; A243A27FA864F9472E8446821EEA38AC /* SPPreferencesConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41AF835CF9F5E221DEABDA6B8F4653CF /* SPPreferencesConsent.swift */; }; A2762DA4D84F76977EAAC3F10562B019 /* SPConsentManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D84D917232543120C0F6F4EEA4E1BA0 /* SPConsentManager.swift */; }; - A293D1B2A374A978F5DB59CD334F7F0C /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 57F483D85BBE4233312771F58F5D4644 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A29C99BFC344606ADCA8B57B1D4C2E57 /* HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70E324B25E38F94390F9EB0ED4437F07 /* HeartbeatController.swift */; }; A2AC6D328700CDF14D3F1DA051FFA885 /* SPUSNatConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 033B5B585762808D4A67F6F6E91AFC96 /* SPUSNatConsent.swift */; }; - A2C7FE1FF5797B9F98FC2A030B91C664 /* AtomicBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C51BE3A7172113ED2D7CB13C5F1DEB1 /* AtomicBox.swift */; }; - A2D0BA302D17A169DB389818A47FDF41 /* FileHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81BFFA641B95BE38C19318F8E183047F /* FileHandler.swift */; }; - A31D2C4CBF309F4E56EF9C5B0CE3335A /* IQKeyboardManager+Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86E3D9F4D548E348E5B82B9F6210815C /* IQKeyboardManager+Deprecated.swift */; }; - A3C01E48B0A3B5FB4850FB105F696252 /* QuickTestSuite.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B900E2DC4550F54AB402C1C5020DB3 /* QuickTestSuite.swift */; }; - A400522030F9321800D1E16D3F050C90 /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F1F9698E3F0EEC69A920A7239BBD834 /* FBLPromise+Any.m */; }; - A4221710FAA211152DD51E1C9D917853 /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 56C00C5AFA9653E3DB0ED0C4B458F869 /* FIRInstallationsStoredAuthToken.m */; }; - A484B23CBA7C6BDB27811648BDD79C2B /* RequestResponseExportOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FBC8B667DE1EB3009EBDEB193977149 /* RequestResponseExportOption.swift */; }; - A48601B3ECE3F13A1819262F5608CC47 /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 907E846CE0F2573B140312B3DF059B67 /* BeEmpty.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - A4BFB8F6BC8EDE81EB96549EB2CCC7B7 /* IQKeyboardReturnManager+UITextViewDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D746E7C5CDD1B63CAB246CFC106852CD /* IQKeyboardReturnManager+UITextViewDelegate.swift */; }; + A2D0BA302D17A169DB389818A47FDF41 /* FileHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39AB7954D02DC29058E83B73A6DD1E61 /* FileHandler.swift */; }; + A31D2C4CBF309F4E56EF9C5B0CE3335A /* IQKeyboardManager+Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E08F59C00ADC343B643B1AE5B682C34 /* IQKeyboardManager+Deprecated.swift */; }; + A32449989D184A085F1CA3CB36E11C59 /* QuickSpecBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 80A9DB66AE8726E0CB5FC058EDC77670 /* QuickSpecBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A35A840A0AD9830EB5374EC1C477E3EB /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F6021C9C3B57896D77C989E22147F4F /* FBLPromise+All.m */; }; + A484B23CBA7C6BDB27811648BDD79C2B /* RequestResponseExportOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27037CC61C19580FDD56C28682478E85 /* RequestResponseExportOption.swift */; }; + A48EEF468A61108A2FB89B27134C9776 /* Nimble-tvOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F94E40F9C47186B9C90B58C1FDA12EC /* Nimble-tvOS-dummy.m */; }; A4C15123EE773F4B61A1318B792E2D28 /* SPCCPACategoryDetailsViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = 95CE5BA6845C27259E5E75FF90D770CF /* SPCCPACategoryDetailsViewController.xib */; }; - A563D5AD6B27E27DAAA8DB369C2ADD78 /* IQKeyboardReturnManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FCC51096042EC71BAB17FF0EBF73527 /* IQKeyboardReturnManager-dummy.m */; }; - A57F3231E7D5B00EA61C5D5E54D5581F /* Nimble-tvOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A4F966A4D01EFDA3F93496FAAEAC58B5 /* Nimble-tvOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A5FD73CEAE371E38C2BD9494529D4D79 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + A4C568E5E19F86D2B2FA6939F27CC71B /* ErrorUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5A307F97B8D4D230351B1E3803B356C /* ErrorUtility.swift */; }; + A4EE4245EAF18CFFD1A68A68E8B64AB4 /* XCTestObservationCenter+Register.m in Sources */ = {isa = PBXBuildFile; fileRef = 1131771154A5D4CFBC4918DB50DAFEB2 /* XCTestObservationCenter+Register.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + A5211CF301C90EA01848A2B70F61B2F0 /* PromisesObjC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = ADC01D3509458F80B420EA447786BB2C /* PromisesObjC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A541EFC06EFBB0863D00B6D6048E7217 /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 754BEF92020F4A1FC09E103BB777106A /* QuickConfiguration.m */; }; + A5E82B417F48470BD0E900BC0D2DBCCA /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 29AE751FC0F120611D3A1462E52CDDCC /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6394E866691F6EC7DFEEB28FD5399D4 /* Flow.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EA5173EB199F9C06632F1D554BFEA535 /* Flow.storyboard */; }; A64B5A5A6B604035EB613973B8D40407 /* SPNativeScreenViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE88860572FF0DD26A128831EAF40663 /* SPNativeScreenViewController.swift */; }; - A726B3DDCB7D7D42D350DE13AFF2C00D /* IQKeyboardManager+Appearance_Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44F950EA234EFAFBC506B3707D58AA60 /* IQKeyboardManager+Appearance_Deprecated.swift */; }; - A75A69E51728F434EB0AE3050EE62374 /* IQKeyboardToolbar-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 79E9CD313DBBC45BDCEEDDA54A3F96C3 /* IQKeyboardToolbar-dummy.m */; }; - A7843C176939F6657329177ECF0B8508 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = C05FB56DAEEDCA29BA74D9393362D4A5 /* Example.swift */; }; + A6B51015077988033872B093C6367E12 /* URL+FileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72C7F44C43C5690DC0B883678B1A6DCB /* URL+FileName.swift */; }; + A726B3DDCB7D7D42D350DE13AFF2C00D /* IQKeyboardManager+Appearance_Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A76BD3D2B474131A34604EF2865963E /* IQKeyboardManager+Appearance_Deprecated.swift */; }; + A72BC21CAF6BE6BC5C215EF6D312DF8B /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 6715E66DF7F9EDC350EE746E15E38141 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A76667278BCFB6C3B5C3A60007E2F6C4 /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18FC2954F1FB2A2E4820D10D9B873A50 /* HaveCount.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + A7B5BA19992F08C53A2A21361EE51254 /* Nimble-iOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 68AD33968E37713F30DBAD66C6AD3933 /* Nimble-iOS-dummy.m */; }; + A7B670CE5E2D39F42BD7291265378CEC /* GULNetworkInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 07F7FDB058328900287FB0E998FBFE99 /* GULNetworkInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; A7DE06362502EECAF3D4FF87761D1328 /* Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6EE4EAFFA46B29CEDB96AF54E59AD52 /* Collection.swift */; }; A80888799E2233D03774822DAE45A6EA /* SharedCoreToNativeAdapters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9095E935D84E98CD0E8475F29BAA5986 /* SharedCoreToNativeAdapters.swift */; }; + A8145E045FDAF1B97B809396DB014941 /* IQKeyboardToolbar-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F93C65D23B8F7BDEB501077294DE0F0 /* IQKeyboardToolbar-dummy.m */; }; + A819C7C624CF5B0FFFD23076D269B6C7 /* nanopb-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DEDFF0DA9BDA7F9C27F2062C14B8D371 /* nanopb-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A820D57643F8EAEF04FF06CC521EE8EB /* PostNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46DECD16C4B5D1902DD9C67D4E8B0D99 /* PostNotification.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; A82FB34D6E4ECBA742863B6988A56257 /* SPStringifiedJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = E98FFA7D2B12F8B56DF12ED0872E6ED9 /* SPStringifiedJSON.swift */; }; - A89916F69B323F38D8092D4B1C365410 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = F877C4036FE50FB670F75F5EAD9FFA58 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A89970630440A0A6BB0B19C090D49980 /* QuickSelectedTestSuiteBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 859CEF6FAAE11636D81A3943E0FED6DB /* QuickSelectedTestSuiteBuilder.swift */; }; + A84B2A821CAF78D5A4BC6C1962490331 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 8A82B370762440F79B82E09400A57C80 /* PrivacyInfo.xcprivacy */; }; + A8A15873A0EDC383F2FDB2FA2A1470B8 /* QCKConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C1F4501D14ACE8C725D24BAED9BA31E /* QCKConfiguration.swift */; }; A900CECFC578C45673639FFC9BF76B6B /* SPJson.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFA2E0A79C45CF0AD19A3B7E3CAD26C4 /* SPJson.swift */; }; - A97B5F447632644866D2CE15E1228B81 /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 47C23B78AF93D89C878DE99D64F3EA71 /* FBLPromiseError.m */; }; - A9A1DE032852CBEDC62C1430220736F3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + A943E8A04328CDD96A1058B9976C5E26 /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE61A8CA9758CA1D4AA14AA0909D6F4A /* Callsite.swift */; }; + A96CFA1E3D24A64F5DDBFE8B93F6A1BA /* IQTextInputViewInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDFB09D332CF36721F7A83B65175E88F /* IQTextInputViewInfo.swift */; }; + A9DC8124B6876F8AEB6AA6C6CAD48F4A /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 698B6323D03AD253DEAE782E65E107E7 /* QuickSpec.m */; }; A9DFAB0AB09E9F8F9787EAC3CCEB2EB6 /* SPIDFAStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC0B7DB098A360C871AEEFC494EF2441 /* SPIDFAStatus.swift */; }; - A9F687A849F7527B413F6CF9CB088E18 /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5867E5094DC63DF9536C0CD4F951F7D3 /* Stringers.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - AA2057477570DA1F2123029A61C30478 /* RequestModelBeautifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6A2A3D44995EA5C38D0F4AF00A81DBB /* RequestModelBeautifier.swift */; }; + A9E3707E9F1501AFD96A3D21EEE14ABC /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D48730791EE2DDBFAF504114702BBC1 /* SourceLocation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + AA2057477570DA1F2123029A61C30478 /* RequestModelBeautifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA8B0499887AFBE40464AD6F5DDA6C5F /* RequestModelBeautifier.swift */; }; + AA87E734472B9231E1A7DCD57BF74EC8 /* _ObjC_HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA8395F2E2F83FAF9D50EF21F95C710A /* _ObjC_HeartbeatController.swift */; }; AA8C2A4E547A25C537748DF19560FFE0 /* Pods-Examples-SourcepointFirebaseDemo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EDCE60703B147513DEAC7E5E96A65154 /* Pods-Examples-SourcepointFirebaseDemo-dummy.m */; }; - AAC3F6FA9928B4290218608711616CD0 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = 76F97034C54D02EE77BF2B63FF319CF5 /* FIRInstallationsIDController.m */; }; - AADC6AF7EF76D947CC7064A6F8756C80 /* QuickTestSuite.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B900E2DC4550F54AB402C1C5020DB3 /* QuickTestSuite.swift */; }; - AB45A06BF3B738DC97B8CC970C69E2D9 /* QCKConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5169E05906D5EB1161B9E0FA9119155E /* QCKConfiguration.swift */; }; - AB53441A59A9266D7AF9EA2EDEA37EE4 /* BeWithin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C71C50FC2190EF102A817A4FFE9E3B3 /* BeWithin.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - ABCAB6BDAC082FE53F65681358F90429 /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F4AF39D463478F827761CD328A3818D /* GULKeychainStorage.m */; }; - AC5560B1E334F63331CFBAEC87FCCE5F /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CE1041CE47689609966C114608BBBA2 /* FBLPromise+Then.m */; }; - AD274845355DD0F8441A898B91F5C4A6 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = E9FE76191909FD3FCB451D593F1C6737 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB1030EB0D840A21283E3437C4D76A06 /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEC7E2308BBA2F7476024112C8965575 /* BeAnInstanceOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + AB81A114C098F9DAC7432D78CBDC81C7 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = B51861A159CB213A49F54058AD763015 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AC2DE4E0FD759C9EC0DEEA80B5FF82E7 /* Pods-Tests-AuthExampleUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 27768312B574C1C195B5DA118542D5DA /* Pods-Tests-AuthExampleUITests-dummy.m */; }; + AC4EEAE658A98FFB1BACA56FAEAACBC9 /* Polling+Require.swift in Sources */ = {isa = PBXBuildFile; fileRef = E93B05AB7F2D74755F556BEFA27ABDB6 /* Polling+Require.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + AC55A95830B7A04DA3ECF1611E29B082 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = C407A54E017467BD3403FC613AFB7F1B /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ACC6DD35C72F92A1DC646907D0D99E65 /* IsAppEncrypted.h in Headers */ = {isa = PBXBuildFile; fileRef = 05BA369063AB9F88199C725055C5F112 /* IsAppEncrypted.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACF48F5D98ED3CF4F4C8DBB1CD6E197E /* DSL+Require.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1D1AC22D8A04C1B881C008DB0F7CC7 /* DSL+Require.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + AD2B648A78DC5710B819145242E3481D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + AD587800C925221F9C6A4739A0AC9224 /* QCKConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C1F4501D14ACE8C725D24BAED9BA31E /* QCKConfiguration.swift */; }; AD6EC7962BED1B2C4DA31C7A4170E46D /* CCPAPMConsentSnapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E2C94A9C6126684EC34738AA8F7AB87 /* CCPAPMConsentSnapshot.swift */; }; - AD946E78DA216E6B46A1682D657B3F85 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 31A42AE160F48E88DA30410AE011A898 /* pb.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ADB4B9194EC1EFD97D1D7BBC693801AA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - ADC0D6AB119D1E4C02B19FD93EFB5345 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = A8E13DD62383524F3373CE2B009F5052 /* FBLPromise.m */; }; - ADD73D1164D270471E00B5FF31114D0F /* ErrorUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECF1DF610DCD827C87F956BB565C8C42 /* ErrorUtility.swift */; }; - ADF87DC8F3B0B357BA1EFCEBF6520DAC /* RequestsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE0A807B5EB10912A9D61E4B221D2FFC /* RequestsViewController.swift */; }; - AE305395222E5D1CE17BA67BA1443692 /* HeartbeatStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49E61D955D2E5ABFF9506108E5950F15 /* HeartbeatStorage.swift */; }; - AF19F168F7B3FFCA150103001169CA99 /* NSURLSessionConfiguration+Wormholy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C8475127BA34A26F98446F349AB89C /* NSURLSessionConfiguration+Wormholy.m */; }; - AF8F5B49CCD0E5D93520B079D55A4E52 /* IQKeyboardManager+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = E38AD2DA734E1D224F8BF3ADBD01DA22 /* IQKeyboardManager+Position.swift */; }; - AF9DE4C1FB2FCF8AFBFE30EE7AF6909A /* HeartbeatLoggingTestUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B6514C19FDD5F03CDD4331DD6B07B7F /* HeartbeatLoggingTestUtils.swift */; }; + ADF87DC8F3B0B357BA1EFCEBF6520DAC /* RequestsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE38E7D54FBC5FA87D165B5A4FA59EC9 /* RequestsViewController.swift */; }; + AE5B5C917E549156352118A6C3B54636 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = D292C84B70317E9D64F83924C0B422A0 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF02029E1F98BC6EB7A15B53D91E8A24 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 76CC76A46ED220FD18DEEF5E13F03F04 /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AF19F168F7B3FFCA150103001169CA99 /* NSURLSessionConfiguration+Wormholy.m in Sources */ = {isa = PBXBuildFile; fileRef = 426F5B92361AD6E50C2720924378BBBD /* NSURLSessionConfiguration+Wormholy.m */; }; + AF588E3FAA2055CC34F0ACA244A41A54 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 20AD96D8D079F854B147064F9599EAC6 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF5AADCBACB9109C6BFD4F0BE616751E /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EDFC6CE0261D0B8565F3190CEE48BC0 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF6111DD8DC71EA750815866A77CBF0D /* AsyncExpression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0874D5D0DB5A4E30D92632B7FA3AB3CE /* AsyncExpression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + AF8F5B49CCD0E5D93520B079D55A4E52 /* IQKeyboardManager+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFAFBCA4CA46B7789F68E77AD06F489E /* IQKeyboardManager+Position.swift */; }; AFCDEA4ED2D64E8E0092467164E2FC9F /* CampaignConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB66F7B9C00367A78FF52612B556CDAC /* CampaignConsent.swift */; }; - B01C23F062F0880D3653B5775B959B21 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = A90B7853B42A31D21CE9F7379DC5A251 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AFE7DAC92ACDEDA7DA3DC9E1A54CB2F4 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 9854D1AA61EDBCC8C7F3C964FA9AC3FD /* FBLPromise.m */; }; B020FE74304D59D91808477AFFF9C61D /* SPURLExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CDDC03D1A80206740DFE90B0356D8FC /* SPURLExtensions.swift */; }; B06A0C142E4FCF8E0F8FB586F7A42B1F /* SPGDPRCategoryDetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AA271D4DC66755169C7CC3499EB4EF8 /* SPGDPRCategoryDetailsViewController.swift */; }; - B19B16041EC9D82B9A8F97293ADD8260 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = FCAF9049188EC86589F780B62B42DDE9 /* PrivacyInfo.xcprivacy */; }; + B097CC2322B6F10D3D7691212853402A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + B0D8AE5D78FCE98F0092D3264EC73422 /* QuickSpecBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 1927DE642808C0399D8EC4D6EEBFFA2C /* QuickSpecBase.m */; }; + B15F355EFC46899A8C16073527E0CBEC /* FirebaseCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 72D4405C2F944B049C66D49781005AD6 /* FirebaseCore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B170898CB7CFDEF30B22FB58C3D6CE75 /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73B841F3C3994F9FB5964CFADC739D15 /* BeEmpty.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + B18BEC8BD699176D5D6CAA4AB0BCE05F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + B1E49099523C649C5570E76A87D4B202 /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = E60E9F9CA7724A87FB2F40B32C5FF349 /* FIRInstallationsAuthTokenResult.m */; }; B1F3F6C9FD553BF5F32DEE38A2F8C2CD /* Pods-Examples-AuthExample-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3BEA64D4C9043A08F3A930EDD0E944 /* Pods-Examples-AuthExample-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; B21CA5236E29697A0ADCA7745E50D695 /* SPMessageLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77DA1D8C3D825C0C7E8EF07206E936D /* SPMessageLanguage.swift */; }; - B227314710B779DA25D507AD12315977 /* jest.config.json in Resources */ = {isa = PBXBuildFile; fileRef = F56C090F1C9366C37AB253AAB9FE1A05 /* jest.config.json */; }; - B32792CB71B2304FB7375DAC3DE9F368 /* ThrowAssertion.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE68FDF75CC5AB27C334D196C063E5F4 /* ThrowAssertion.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - B3DE785DFDEF6C64BF889E037E0BA01E /* _ObjC_HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA082F651F11D8C913684BE5E889FEA9 /* _ObjC_HeartbeatsPayload.swift */; }; - B426FE52C6BCF7124200EC193DDC0722 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = BDB5D46E51C798C1E3F7D433589F7BA8 /* PrivacyInfo.xcprivacy */; }; - B49AADBF769E1700FDED908F264FDC8D /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FC918F341DB9D68F0ACF5F5297B7D0A /* ExampleHooks.swift */; }; + B21CD1C471AFD6D9383CEF4B5322E739 /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67957B9E77D349FDBA49CD741DA313D2 /* Stringers.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + B26DC08428D6803F907A14FF08501DDB /* Polling+Require.swift in Sources */ = {isa = PBXBuildFile; fileRef = E93B05AB7F2D74755F556BEFA27ABDB6 /* Polling+Require.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + B377E43535F5B1A5AA9FABBC24D46042 /* HeartbeatLoggingTestUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = E32F4479E29DABAF7BF872B9AAAF4A6C /* HeartbeatLoggingTestUtils.swift */; }; + B3B24F63E48B3B8A852A87E8009E509F /* UIView+IQKeyboardExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79E7601A02651FAC7415EEBCB49C9F6B /* UIView+IQKeyboardExtensionObjc.swift */; }; + B3E625C32A22A235532190F234C5E15B /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B372D0279EAB990E3BD615FFDBB958 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Public, ); }; }; B5025243FEA72E24DD1B17E2751C3DAB /* SharedNativeToCoreAdapters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 624334D7BEEF45679E6500B48CAF4E27 /* SharedNativeToCoreAdapters.swift */; }; B51EC0DF66B1560D3718CF3A8C1D81D9 /* SPCCPANativePrivacyManagerViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = FBD0C3FE4BCECF88927C3C5C450B34C6 /* SPCCPANativePrivacyManagerViewController.xib */; }; - B582C699D55A21556A94D2032D32473E /* IQTitleBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB7953BC41FE8D8C62F54D300AD2BFFB /* IQTitleBarButtonItem.swift */; }; - B58C584C8066C0CC9DE47B957D2546B1 /* Flow.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 95C03B989707B41DE52073D2BF149DCA /* Flow.storyboard */; }; - B5D791EE5AAA90EB44F9C4CFE7D41687 /* Pods-Tests-AuthExampleUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F409AB3D85FB173A94C05F8560AEF6E /* Pods-Tests-AuthExampleUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B6067847F650C51E0C0A102FC9EA5C05 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BD776E0D688EFE6C5C2D7CA1A9592FA /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6B94EBB727F1F80A0C554FBB1768E2F /* ThrowAssertion.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE68FDF75CC5AB27C334D196C063E5F4 /* ThrowAssertion.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - B7C074DE14728CAA4A614418F3A7794F /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B63F6C9B92344CE56A5AB925174C4BF /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B908AD89836583E42FA598057EE5748B /* HeartbeatsBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE6DE25CB81DF3A391F8A3241FE0F113 /* HeartbeatsBundle.swift */; }; - B9152FA84110DF700ACB5C12212830F6 /* Pods-Tests-SourcePointMetaAppUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 49550D844E07013FA3B4314D5FFDDFD2 /* Pods-Tests-SourcePointMetaAppUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B95448EF2916F7368377FF3E27D6D4F6 /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 90DD458E406FD58AA5EB15548DFB31B2 /* GULApplication.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B9604497AFA260821C069F3C56A5CF72 /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EF9D66E18EBC3763F5A3BC63F88DD22 /* NMBExceptionCapture.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - BA0B7EBBD9A5F9B174A83BB4B7D4DE4D /* IQPlaceholderable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6E65D2E96449D11C0EC3C2A9FD6AF96 /* IQPlaceholderable.swift */; }; - BA3395C44A8E09837E777028D3EA6F6E /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = A123E38DC02B7A9891537D34EAF2FF2F /* FIRAnalyticsConfiguration.m */; }; - BA708895A365854AC239AD4EA25CB583 /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = D17C9FC560818F417156435E89D1D08F /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BA9B78CF086025A809E862C70262A9A3 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 31E52989936EFB64E1A591731B94982A /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB8A5796876F7839C3F1E14B719C5BDF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - BBE64E83196E1E574E6DAB659739FA0B /* SPGDPRNativePrivacyManagerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F8E495568942DD4F992BA43DDA0C4D7A /* SPGDPRNativePrivacyManagerViewController.xib */; }; - BC50047881FA26E71A99A2FA9E3E95DB /* WHNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E74712D68110A81C9A9DD9E3724485E /* WHNavigationController.swift */; }; + B57E8104767ECB543A4D152D42F0FB14 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = E302764BB6FE971DF646B352FF0DE874 /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B5D15EFC024C732ECC2C69DA630192EB /* Equal+TupleArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18F6047FB83FFEC12D6F0FE6CE4703E5 /* Equal+TupleArray.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + B5D53BFE7C068360BACC399FBB75C8B9 /* String+C99ExtendedIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF374197388716B739DB5B8C30DAD6A0 /* String+C99ExtendedIdentifier.swift */; }; + B68CB6E24ABF7B54CEA8B907EE5C658A /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 8551B96649DC518FEB10BEB47FFC4585 /* FIRComponentType.m */; }; + B744EE30958AE2EC98E78CE6A030866C /* Requirement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 288EEEA8AEE2176ED91869E38426DC17 /* Requirement.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + B7A4CFC0A062E26F77CCBA595A8D630F /* IQKeyboardNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CE43E3E5A772279ABD0387A237DCDE0 /* IQKeyboardNotification.swift */; }; + B95A283D15B0FFD88289B3B5AAC59F8F /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46DC532A2458C8E24116BF023C0C228D /* World+DSL.swift */; }; + B97A46D6C135E70B8BEE5A0713C8E80A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + BA5D6E6897211807140AC96198CE2B2A /* IQKeyboardToolbarConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0F162DFF0A4C069334782DC294C71FF /* IQKeyboardToolbarConstants.swift */; }; + BACB9172D673201751B5D21764477BDF /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7006A5366815E0D1A1AC0BC96AF85400 /* AllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + BAE8908311819689AF21D9865DBDD233 /* AsyncExpression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0874D5D0DB5A4E30D92632B7FA3AB3CE /* AsyncExpression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + BB9401E5B5E4BF1A9482E724C65048EF /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 90C4D664CCFC0EC8EB09816FA8633A75 /* FBLPromise+Then.m */; }; + BBC969CD7C8E78F2AD836B2142B618BA /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D9F63656FB06F22F2595187B0848068 /* GULNSData+zlib.m */; }; + BC4CF6937F894CC9121B3BAF10AE8D14 /* CwlPreconditionTesting-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A361202B2E3C64A15E73F68BEB6EC838 /* CwlPreconditionTesting-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BC50047881FA26E71A99A2FA9E3E95DB /* WHNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DC76871304CCDFD3A1D21BF050D3177 /* WHNavigationController.swift */; }; BCF0AD46C4CE0F41C7DC5B2FACC07563 /* SPCCPAConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 341C37DA1D524CCE2CA4C1E503E822E8 /* SPCCPAConsent.swift */; }; - BCFF6AE25A4B1311D93877DFC9196383 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 600E89064ED7EA878CD1793C8FB49FB7 /* FIROptions.m */; }; BD6B5D6DF56D7BF5B4402CCCE75E5DE8 /* SPWebMessageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0ED1B8267B071DB6AB0389823D4B50E9 /* SPWebMessageViewController.swift */; }; - BD7922607011686F9A78CA276C0F570D /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28664522455C5D2FEA5E3F6CFAC78884 /* BeLessThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - BD8A87DB07CF834C1295373C781B4677 /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD620E8827ABB7E19850213C1965F3C2 /* AssertionDispatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - BDAEB1BE10E28BC1C90F602B84651C2A /* UIView+IQKeyboardManagerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E914A02A61226BF6A57CACD1F5CBC1F /* UIView+IQKeyboardManagerExtension.swift */; }; - BDC7176CFF3B2E5049BA963806726DA8 /* IQKeyboardNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6C8B29729DB86FFCE7221ECCECE44A6 /* IQKeyboardNotification.swift */; }; + BDAEB1BE10E28BC1C90F602B84651C2A /* UIView+IQKeyboardManagerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB6932AE55EA481CF1AAF28D724E19F9 /* UIView+IQKeyboardManagerExtension.swift */; }; BDECA90D445823334B2F63D90AAF2B73 /* SPCampaignType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 675870E9375216C86665B8B9D31444DE /* SPCampaignType.swift */; }; - BE3E55549F9ACE9E8575A9D884BC6DE4 /* TextTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1BD547B151F6A31F295082EB0F8E919F /* TextTableViewCell.xib */; }; - BE7ADCE72D291EDD56EA2B495165A47D /* Predicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73C4FD7131B5B3F930C9A406DD9EE984 /* Predicate.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - BEE0E5781CE51D0667309A7BBC33FE55 /* IQTextInputViewNotification-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7198B01CB9F09112A66C8A74CB059832 /* IQTextInputViewNotification-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BE037C7CBC3562EB603B24BAF53B4932 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + BE557CBE20C696046ECF3F9D451430F7 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 6AF8199B31DC2D2E5AE8824F52F6D311 /* PrivacyInfo.xcprivacy */; }; + BE90281F3D712810D22EC11D42A35712 /* CwlCatchException.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE46FD2C9A2945C44977ED7FFF75B5ED /* CwlCatchException.swift */; }; + BEC0038CE9707B2E08351E97D3E1FDE9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; BEF851E9BB02B53E5A2CAA4D670431A9 /* SourcepointClientCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBB9A9F0E5F0ED975F2A1A1AA5A8A5EC /* SourcepointClientCoordinator.swift */; }; - BF5C2F5C7A743A036E1015F64EF8AA74 /* IQKeyboardNotification-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BFD24D10A0A011170A605A0CE77C505B /* IQKeyboardNotification-dummy.m */; }; - BF9371DFD0E8D1A9CC5B0BB0443A47A2 /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44C01843EB2DBD02D63167074C601F6A /* Expectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - BFB085699213B05145CA61FD45F3EA59 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - BFC8458F0FCC6DDA18782125536BA96F /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C43E7E8AE8076F10073A2614223F8CE /* FIRConfiguration.m */; }; - C01219180842E9FBE66C36064087F8C6 /* JSONView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1CDA52379B0E559EF41AFF18873C26 /* JSONView.swift */; }; + BF0CA91DAB85654FAD7D6E62C9B41C00 /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 250CCF39F870AE6F993E71E9CAC93BDD /* GULKeychainUtils.m */; }; + BF2072D3447F8405CC1236BD3AD91006 /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 341749C73A9DDC03BBFCB8BF4C77838B /* FBLPromise+Reduce.m */; }; + BF8F174DBB0D780050C634E9E98B5555 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 09760B2CDB70F77EDBE597061083AB98 /* PrivacyInfo.xcprivacy */; }; + C01219180842E9FBE66C36064087F8C6 /* JSONView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70C802EB30B4D174902F64BFEDF4B881 /* JSONView.swift */; }; C01513B45AA5C33D52653C3464D73408 /* SPConsentManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D84D917232543120C0F6F4EEA4E1BA0 /* SPConsentManager.swift */; }; - C107322F328C400718CA422857913E08 /* IQKeyboardManager+Resign.swift in Sources */ = {isa = PBXBuildFile; fileRef = 540ADF228732435E9244ACC0B4F6D359 /* IQKeyboardManager+Resign.swift */; }; + C06D95D3D44238B0203EFC8AA71432A6 /* IQKeyboardToolbarPlaceholderConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DE645F2294DF573039679935A89494B /* IQKeyboardToolbarPlaceholderConfiguration.swift */; }; + C0E25E0B9F46117560D056163C948F2E /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CAEFCC3380710EA276C557B6B0F987F /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C107322F328C400718CA422857913E08 /* IQKeyboardManager+Resign.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70098D87239066D9714D0F0671BF1C98 /* IQKeyboardManager+Resign.swift */; }; + C110D0EDB720B2BFB7321A966A6530C7 /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 998AE9A12896605E4272EBD27415F0DF /* FIRVersion.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C126417A4B639D734C8E16ADC41C2958 /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEC7E2308BBA2F7476024112C8965575 /* BeAnInstanceOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + C12D74EF2653C4F1C75F27CF926DBAF4 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = 80FD0F0830832A49BBFE269D8A0848E1 /* FIRInstallations.m */; }; C13B0902B4F938ABAD3918560616DA9A /* SPDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 170673B9177B3BF49D7BCD407632374B /* SPDelegate.swift */; }; + C13F938A333EAD9B173F0CFC798D67E6 /* SPGDPRPartnersViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4261DEFFFD9A94613A8785C9274D9CFB /* SPGDPRPartnersViewController.xib */; }; + C17AB96CC983DC35ED7D4E54D4F8FFE7 /* AsyncAllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FFDDD271BD34C9D86E1125AE8EADE30 /* AsyncAllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; C1D346209F32BB848F54B0A742E7E7BE /* SPCCPAConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 341C37DA1D524CCE2CA4C1E503E822E8 /* SPCCPAConsent.swift */; }; - C1EB4BEFCAD263937EA63157EDB46206 /* Pods-Tests-NativeMessageExampleUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 13887FF5AE96C61A75493F453E51A166 /* Pods-Tests-NativeMessageExampleUITests-dummy.m */; }; - C2E772E1C1F864371C44990ED37E84F2 /* Predicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73C4FD7131B5B3F930C9A406DD9EE984 /* Predicate.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; C33AB192FDF690945F19AFC49D620B26 /* SPDate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0D11B44C645CCA4370139EC3EE9C182 /* SPDate.swift */; }; - C33F0FBFD3C8FDC15CE5196B434916E0 /* Equal+Tuple.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D755C57BF1B04B906F74F106928665C /* Equal+Tuple.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - C3749017CF307D6865B7F9E76B99AAE6 /* IQKeyboardManager+ToolbarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48539D0F1FC7D86B6DD5FAC140F12492 /* IQKeyboardManager+ToolbarManager.swift */; }; - C396159A9D89E814CCC1406467048004 /* UIView+RespondersObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = E310792516BBF6E37FF1D14CA2366DD1 /* UIView+RespondersObjc.swift */; }; + C3749017CF307D6865B7F9E76B99AAE6 /* IQKeyboardManager+ToolbarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5C59B4ED524ABF6D2C2622A2C3CF9CE /* IQKeyboardManager+ToolbarManager.swift */; }; C3AF73C3E63A4725C9D85737FFA63410 /* SimpleClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10E0A1B4632BE74D7347FA8479A1CE4F /* SimpleClient.swift */; }; - C3BC1CEC5CF7605E5479379348AE4056 /* SatisfyAnyOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = EED09E4AF92B56AE1B2C7DE6D9DA2A17 /* SatisfyAnyOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - C3D230039A138FED0139F494DE9B59C8 /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67DE25D188109BC94B5A2EF8C20CA070 /* BeIdenticalTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - C42BBB92B76DBF25468893978B57831E /* IQTextView+Placeholderable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6D89F418EFAE2A75B94235B50A0DEA4 /* IQTextView+Placeholderable.swift */; }; - C465A8C742C3A1BAEBEA83FDA14EA721 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = 955FFB48FD9B3F9F9A49D8FF08579556 /* FBLPromise+Always.m */; }; - C4740492FD81799A6CB4A182FA493CAD /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C65EE1CE46F0EF23C89F969024E6B02 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C47CD8D10034688D47428F47088CFAD0 /* GoogleUtilities-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EE8A4725B42B23A5DD16230DC835583 /* GoogleUtilities-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C48B640E3924B883A845D3BEACA382C1 /* RequestCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DD5BF03A856CEE8C17F065C890D40DB /* RequestCell.swift */; }; - C48CB797AA73E412F65A64A19A7B741E /* UICollectionView+IndexPaths.swift in Sources */ = {isa = PBXBuildFile; fileRef = A339F3B7EAC3BD75E89053047073DEF2 /* UICollectionView+IndexPaths.swift */; }; - C541129B72361D5BBC9545E389A15AB2 /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = D6A6DE7640DC5A22D829314963941AE8 /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C56DFC6F1DDECC218AEFCAA273D5424B /* SPGDPRCategoryDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F8C910DBDF5A6D2D1FD47EEAE69D7867 /* SPGDPRCategoryDetailsViewController.xib */; }; - C57A688C8BD0E75A6F1D261B6031DA3C /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5EA81568F79ADF433E8D60D5FAB28B30 /* BeLogical.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - C57E96236C0E83FAE3A69D7239A19249 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = D0A2539FF4BB3036DDCCBA8C73FE63B8 /* FIRApp.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C3B7C08D3D9C741A77473BC296651256 /* CwlDarwinDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0040387F9E3E25AF324907F247E4BF80 /* CwlDarwinDefinitions.swift */; }; + C3C97D632903E709B28E2EA08181F897 /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AF548F201A5ECBD867F8B7FE2F0B358 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C436C152E302FC42EB5363E3E0DCCBD4 /* SPGDPRCategoryDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F8C910DBDF5A6D2D1FD47EEAE69D7867 /* SPGDPRCategoryDetailsViewController.xib */; }; + C44250F02DE56F7341E59C44BE035B0F /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF2760999E9505C542C43463DA33C683 /* BeginWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + C48B640E3924B883A845D3BEACA382C1 /* RequestCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B2A085592270AF5DD5E13A64ED858F7 /* RequestCell.swift */; }; + C48CB797AA73E412F65A64A19A7B741E /* UICollectionView+IndexPaths.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26EA509F93874431C5DA3886A8BF2C86 /* UICollectionView+IndexPaths.swift */; }; + C50F88DBA526326EFCF1E593A0DF5FF9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 886B70550F3C22CC20F9B77783E267E6 /* Foundation.framework */; }; + C52AD45B6FA277E55F97E41E5135CDD0 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E5CB5ECF48DAC0B2C0B6B7AD94DD9AE5 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C54B8C3761BF9C926CA29565E4013FFF /* IQTextInputViewNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = B30228F44B1ECB9333C5BB269B12FC50 /* IQTextInputViewNotification.swift */; }; C5920F93C9E2358EA5637D2AB32F4432 /* SourcePointClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 182C561114B03D57F4A67E016CB87CFB /* SourcePointClient.swift */; }; - C5E131DD44FBF99119643363AEB2FFD5 /* RequestTitleSectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = E66A5E9A8C9E7C4627F04B393E25D1DD /* RequestTitleSectionView.xib */; }; - C5F59789DB2D57783C30E3C631F71850 /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6F5B8E77427FACDFD1FCB9B112E01B4 /* BeCloseTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + C5CA6FC02FC7266614B1408395F62087 /* XCTestObservationCenter+Register.m in Sources */ = {isa = PBXBuildFile; fileRef = 1131771154A5D4CFBC4918DB50DAFEB2 /* XCTestObservationCenter+Register.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + C5F469225D301450F93C7F54DD2F62AF /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58C9FAAE4EC65C106EE35B0F9CB1D07F /* BeLessThanOrEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; C5FB4D65957D7939FC1157D2D72DDFA7 /* SPPMHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BEC03026DF74168D976AE6F80B66B17 /* SPPMHeader.swift */; }; - C624DD8578DDDB5A744B417CA6B5577E /* IQKeyboardToolbarManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8797AB7EE07B93744B4C6EA2CA2DE2F /* IQKeyboardToolbarManager+Internal.swift */; }; + C61B99C3F20DC28772152E16AA7841A7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; C62950A61E36AD99041C3429E404136E /* SPString.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA6B5382DCD05DA49AE8667BAAD85D46 /* SPString.swift */; }; - C6589645FEDD92DE1CCA06C30E045327 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = F0892D257C6CCA0E22BA2F114C72304C /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C67D42196DFB8E762CAD7D129EB9A5F3 /* RequestCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = DCC870B83648F3CA50231F6E01EB1590 /* RequestCell.xib */; }; - C6BDCA7A9A1C81FE70AB82E393FC16C0 /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FB8FC6C10C2A9A093B9917308EBDFA5 /* HaveCount.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - C6CFC1A511E5411A6AAACB6C29311490 /* FIRInstallationsBackoffController.m in Sources */ = {isa = PBXBuildFile; fileRef = F24C628165B8DB74332AD3E82D3C33B9 /* FIRInstallationsBackoffController.m */; }; + C64D71CB04914F24680884B26ABD7EA6 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56E21CE4558584557CD31CE1F28B1AC1 /* Storage.swift */; }; + C6D7B28BB621AA0810B066E47072834E /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 9576D8FB03AEE9AC0CBDD7F29B35CAA8 /* FBLPromiseError.m */; }; + C70C082E28AF56C6C5441F9E020AFDA3 /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5E901D6799A4080D3DA5DE97F41AB72 /* BeLogical.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; C7D87BF636A4D89B88BB5C2738FE6DE5 /* SPGlobalCmpConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30070E328081555BF2022644B4DD5AB2 /* SPGlobalCmpConsent.swift */; }; + C7D8E50AC47E760464EADD32051EBD57 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CBF89707947635E807790F88B0A8BD10 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7D98D187128D3E4A55E4E20EA99BBDE /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 676E1BBA57754C7536CA90B5739F2021 /* FIRInstallationsStoredItem.m */; }; C82EB9C5D426665C0097F1597F49E2BA /* Pods-Examples-SourcepointFirebaseDemo-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F61D4ECE7209D921C3706D389D3DD21B /* Pods-Examples-SourcepointFirebaseDemo-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C85038B87432DB8C6F9D4FCBADCA994A /* mach_excServer.c in Sources */ = {isa = PBXBuildFile; fileRef = BF05B2B122EE3F0CCF5B34243A45E7C3 /* mach_excServer.c */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - C865138C1ACD544E86E8D2FA686C66A4 /* IQActiveConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6CDFD442F6A27283F045D4440B11C01 /* IQActiveConfiguration.swift */; }; - C8EE288651900036D62A0326E1586BDD /* BeginWithPrefix.swift in Sources */ = {isa = PBXBuildFile; fileRef = 868CC676B3D618DEDB916F87996644E3 /* BeginWithPrefix.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - C8FE34E632C3ECE7A074A7D6DD90C0A0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 355A7C4B00B0F65ABA6D838880650D5A /* PrivacyInfo.xcprivacy */; }; + C865138C1ACD544E86E8D2FA686C66A4 /* IQActiveConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76384906EF776A77A37571DC6C520E41 /* IQActiveConfiguration.swift */; }; + C8CF088E1EAAE96B54B8758F2DC0398E /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 41D24BF5A5CF5980FC9E5A5AAB880EA9 /* FIRInstallationsStoredAuthToken.m */; }; + C8F72BA8913CF3227F6A9C1EF184E70E /* _ObjC_HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A5A90AC4FB990424A1D8841F30954D2 /* _ObjC_HeartbeatsPayload.swift */; }; + C91B37F1C8EAE26A79B9BF0CEA01D094 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 291EEE38749CE6E0C73E407A8D0EB77E /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; C994361E28F2E0E573F96043E1D2C785 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - C9A1D55C466BFFAB2F64F95AA090C76B /* BeginWithPrefix.swift in Sources */ = {isa = PBXBuildFile; fileRef = 868CC676B3D618DEDB916F87996644E3 /* BeginWithPrefix.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + C9A19FCE3D0C4FE4D0803299C5AA44FA /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = F62081B5872B4B4CA6605D0C45EC6AA5 /* AssertionDispatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; C9F3E52479E1D5A86A38B2B4AE33AD25 /* SPPropertyName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F83F0546C6C0F7184FE189E8F4A06CF /* SPPropertyName.swift */; }; - CA3C26BE399FB3BD657D2EEF011ACEBF /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 596C241CA6CD5617D4F89E445D7009A0 /* AllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - CA546BE3341255212418711402BE1ED8 /* IsAppEncrypted.m in Sources */ = {isa = PBXBuildFile; fileRef = DC713AD012A9EBC46DA1EFA1EFB4489E /* IsAppEncrypted.m */; }; - CA887B2E75BD7E3088A01C5AF944F187 /* IQKeyboardExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE7644B44C737CD8744A0546FDEF85C4 /* IQKeyboardExtended.swift */; }; - CAAED81F55229D69545DCFB2DCAA2885 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 05447D72C230968F297EC8141D5922A2 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CA0118A46B671167571D4755917A367F /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D542779C488CF8ED5AD479BF0B8FB1A /* Equal.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + CA887B2E75BD7E3088A01C5AF944F187 /* IQKeyboardExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5074B22265EA17DA123B92F5460B22F8 /* IQKeyboardExtended.swift */; }; CAB824AD7F0C797E6A3AD3D22F795D15 /* ConsentStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B4EE46F7F6CD84E907D32A3E394405B /* ConsentStatus.swift */; }; - CB041B1D09D3EC98B0F58778A5E4653D /* Array+Sort.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6921E3C54DE4DC87A71456A218F2DB3 /* Array+Sort.swift */; }; - CB15F2D1B35D7886996D48343ECD67B0 /* FIRTimestampInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 57434CC18B0FC331E66F37CD7439689F /* FIRTimestampInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC6432BC7A2B5B41CAFCDE0A223D777A /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = D249544530276105CB9036CD6A7192A1 /* Closures.swift */; }; - CC7AB523AB307ECF4CAEE6D8C8AC4808 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 34770D9CD9627CB3880DBE85F37B46FF /* FIRApp.m */; }; - CC8276627720397415E0668555249E35 /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = FC1ED749A4177BCABC2AE08A9FA57AF4 /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CB0DBBB6E93B92C04B6C460932D8E9D1 /* IQTextView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7442995C363F851C85FE64B3A4B00C1B /* IQTextView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CB1C12468B6EA38F8DD32D460546F6C5 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = E18ABD7A97D4F0D64B0819C191C35E84 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBCB2378F8D2DBAA65F347B2F90F0A7E /* AsyncSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = E97532B3008EAD598A48D9E01B06B2B7 /* AsyncSpec.swift */; }; CCA6FFB7B76AB817D9A8AB499B5D0791 /* SPPrivacyManagerTab.swift in Sources */ = {isa = PBXBuildFile; fileRef = A602E08A711C2221EF6229727384A7CF /* SPPrivacyManagerTab.swift */; }; - CD3E17320C0EF0C673E64F67382EA1A3 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 716F890AC934E8B8A9807B8279BB24EB /* FIRInstallationsStore.m */; }; - CD6E59213371ED2AF144DDADDE702425 /* ContainElementSatisfying.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1977D158C8E9B436CD6D3027B9A13F76 /* ContainElementSatisfying.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - CD8790D1AB9D84BDF9732B7F0C597977 /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 7223E42D6E884EE0870AE6C92B365C07 /* DSL.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - CDE185968A997452730F50C92FB65350 /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 110771DFD30130391179BD7F3A0A9EC9 /* FIRInstallationsLogger.m */; }; - CDE83381729B150813DA7AC3CC4674E6 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = FCAF9049188EC86589F780B62B42DDE9 /* PrivacyInfo.xcprivacy */; }; - CE0332F9D604BED32274F697952E15C0 /* IQKeyboardResignHandler+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DC4F636E9D26D381B69C0D0A17DFA24 /* IQKeyboardResignHandler+Internal.swift */; }; - CE7BEE09A6036491DF7DDD7C5DB83B43 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2DDC056DD3CF8CA9F8E3DE9DADF0C /* MatcherProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - CE849C581E76CEFFF4746CC3B61BF629 /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71849E329BE263D85B52CB004AD51AB5 /* DSL+Wait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - CEBC62AA111B92267319666FBD035808 /* IQKeyboardNotification-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C2F3A36BA266CB175E33BD2B29F2414B /* IQKeyboardNotification-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CEF4CEE042332E5C3CDF4955D0C4364B /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CC9AE9B277DB33061EF7D070BDA6B44C /* GoogleUtilities-dummy.m */; }; - CF2C7E9BE7EE85468AF86E72200508B8 /* IQBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98D6EE0D7EF53CE7E8EA55AFABA9C287 /* IQBarButtonItem.swift */; }; - D03C7EE530171BB6866372C0005FA1E2 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ED22AD25DF356DD678C967A6A6C5CF4 /* FIRInstallations.m */; }; - D053CA2BCD57090EAB7474A9E4078564 /* IQKeyboardToolbarManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 80E40A389B86B65FE5FF320C7A0935C9 /* IQKeyboardToolbarManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CDC01082A9D3E809CB2C85306F346C2F /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = A29A933877C4A42745B22A0407B169CF /* FIRInstallationsLogger.m */; }; + CDE2D1E5D05C1DDEB3FC164FC2DD252E /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F6BB2423C69F99EEAC09C7C9E7B6E66 /* Expectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + CE0332F9D604BED32274F697952E15C0 /* IQKeyboardResignHandler+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA715F2887DD043810B1AFE30E508AC1 /* IQKeyboardResignHandler+Internal.swift */; }; + CE042ECB32DFB995C0F38CB37DF8574A /* IQKeyboardNotification-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F3051F39A3AC899C9B540C520ABD5B9 /* IQKeyboardNotification-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CE156D71DDA0E5B674B89DF2AACF336D /* IQTextView+Placeholderable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B2C452C547F5C72A91AD191072AB706 /* IQTextView+Placeholderable.swift */; }; + CEA1D39C2BF8555C07EEB9B70110EC2B /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A627BAB9445B7F348964DCEC0316670 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEF2FA907B59AFB2FAE828056FC8926A /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C7F93F7CFF13C43FCDDF68AC3D6522C /* BeGreaterThanOrEqualTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + D01C47D9DBF17DE850ED3D03432B40BA /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E0FDE098C322191908278E338777DB8 /* Errors.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; D060F838D0A78FCF4530EB3DA5834E71 /* SPCCPAVendorDetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1375173E8D5512B9BFD64EDD2FCA6C13 /* SPCCPAVendorDetailsViewController.swift */; }; - D12CA2CD67FBCD781D611E8AA8C3BBB9 /* WHDate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A818A7F3E976711317763E3478D2E8F /* WHDate.swift */; }; - D1565558C8CF9C9D408706CDBE3FF444 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 78355AD7C1277E5D6D83E643D66A66A2 /* PrivacyInfo.xcprivacy */; }; + D0A520904D974512E658E557C141C9B5 /* GULNetworkInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = AC6C453CD050FB5817AA3897D415B52C /* GULNetworkInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D12CA2CD67FBCD781D611E8AA8C3BBB9 /* WHDate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F536C8567BCC74900C15620A5D873D25 /* WHDate.swift */; }; D17108607DFE8F25B3DB4BA668B2A4FB /* MessagesResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A0C68D976DEFB9773D1E67B3627B6D1 /* MessagesResponse.swift */; }; - D24DA8779ADCAF2E22A8F0FE7ED9B887 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = C78DA2558B864B9702B2369FBCF01E5A /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D27E241B272716754F7203C547EFCC14 /* QuickTestObservation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D4A25F124618603C0420916AC3FD9A3 /* QuickTestObservation.swift */; }; - D2CB88D18D190A8AF225BB8239D9F888 /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 83B67AB87D972834A26CDEF7FEA9769D /* FIRInstallationsIIDTokenStore.m */; }; - D30BC72D992B4A85304D55A572BB1995 /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 596C241CA6CD5617D4F89E445D7009A0 /* AllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - D32F166A8EA660CC50192C7346C20B26 /* FIRHeartbeatLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B6A97FB37359EC78BBE5FC6FB07F29AF /* FIRHeartbeatLogger.m */; }; - D3644ABBF34443B12BFDFDA9454B144A /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74222BB8873866100AAA6C02D20B19C /* AdapterProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - D3C954A5CD31145CD777A148E24CC117 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = F64A2FDC5B0349D02BF540D6DF4DF988 /* GULReachabilityChecker.m */; }; - D3D971B6397F47803782A4810F6B587A /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9A8C3E06D197250F142140842379FE4 /* ExampleGroup.swift */; }; - D44C8932092EDD9B748C8C974D4F5F5F /* WHLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4DE8FA000CDDE465527A551708B2742 /* WHLabel.swift */; }; - D4D4D99E6DDD1C907AF6A76FDEA48EDB /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D9FE6BE7D01AFF37E1F76BF3302ED01 /* Contain.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - D59AB452F84615D60979140D623959CF /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9884E32738BA4639A674388FB13803E7 /* AssertionRecorder.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - D614B060368A051B14252865179BFB02 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = FA968706B5EEEFFAA325ABA9E1DF31E8 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D77BE52ABFEB668D36E2A916BA7C82BE /* IQInvocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88B34E34B95E41D7F55A200BA5BDF0FC /* IQInvocation.swift */; }; - D794334E0A95A9F6508CFAF3B50FE585 /* FirebaseCoreInternal-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AA23DF396AC9400B3F309177A7B9A5F1 /* FirebaseCoreInternal-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D7C1B07098BF550C80DF1F6347B986D8 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = F1E4924E9DBA14EC60329B779BFEED62 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D7CF5FD751CCBF713457010F07190FA0 /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = E8D8EFE36A8C64F7BC1D214068840043 /* FIRInstallationsAPIService.m */; }; - D8015E2545E47AEFBA55A095A237A316 /* IQKeyboardCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 30112CF86B7799B80FC4630793CC9B61 /* IQKeyboardCore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D870B1CD210C55AFA215F90C75EC2922 /* IQTextInputViewNotification-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D34F48F0156F59F5CC1403BACC7B28BF /* IQTextInputViewNotification-dummy.m */; }; - D8A6246F8C58A876775D7ADD1BB3BF60 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 886B70550F3C22CC20F9B77783E267E6 /* Foundation.framework */; }; - D958E5A146BD1B601255824138758CB0 /* FirebaseCoreInternal-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 02D8F619D99F378ED3916CF8E13AD109 /* FirebaseCoreInternal-dummy.m */; }; + D286791B1009C63E6335FE208486454E /* NMBStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = 29EAF25F21EE50C142118D7F65D0141E /* NMBStringify.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D3149E8AAEEAEB2F95DF65CE8668614B /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E3AF0B8A81D565A7E4CFA7B9C4B5154 /* FIRInstallationsAPIService.m */; }; + D3887F0E209650EB2E60AF19A824F9A1 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = B5DE92BBC442B76678390B2150C0ED58 /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D44C8932092EDD9B748C8C974D4F5F5F /* WHLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E73C9325537856D0BFC3E891FCC1C0 /* WHLabel.swift */; }; + D49C13B1B0A154A7FB9F41AF45658B48 /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 219CC0CD56FC97926EFEFCDCCC9999F7 /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D4A4EBE704208A15E07F5510B41DA27B /* TestState.swift in Sources */ = {isa = PBXBuildFile; fileRef = 054F7CF39326FC823FD090254AC82F87 /* TestState.swift */; }; + D52BDAA40482729E199984C72986006E /* QuickConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBE8437615205B25F5BEF35B3A81EDEE /* QuickConfiguration.swift */; }; + D6707BC053D52948BBD6804C7D3A173F /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = F62081B5872B4B4CA6605D0C45EC6AA5 /* AssertionDispatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + D6B4B3395CCDBB5CA8A0704D7FAA96BB /* CwlMachBadInstructionHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E34D926F7527B1A43827738B3FA8609C /* CwlMachBadInstructionHandler-dummy.m */; }; + D702EA3DBF720A90A19C03C734874343 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = FCE122F25E5F686A943505B92705B9FE /* PrivacyInfo.xcprivacy */; }; + D7D15EB96DD55E5C23C88197F4B395BE /* UIView+Responders.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FEA1A4EC31069946A09F155DF282C30 /* UIView+Responders.swift */; }; + D7F1FF58EEE53B3C9677746A36394507 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A6F4473374AD88703DDD7B603DCD0CF /* GULAppDelegateSwizzler.m */; }; + D8015E2545E47AEFBA55A095A237A316 /* IQKeyboardCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 118D08AA25F5FBD2C0A9F1604960FCA7 /* IQKeyboardCore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D97FEE526653B86DBDEEB6CC6B039BE2 /* Polling+AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43244700C4FEBF5415C1C05108E62092 /* Polling+AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + D9AE2EA1EC1BD7F58D014113B70A7EEF /* BeginWithPrefix.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB2C05762A801FB522FBCB138FF1441E /* BeginWithPrefix.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; D9C0D3F01D7BEB5794E24FE9B4EE66E8 /* GDPRPrivacyManagerViewResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BC310208D21A2EB2923EBEE54FCADA2 /* GDPRPrivacyManagerViewResponse.swift */; }; D9C3B7B55F128407C9216F668CE9A6F3 /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FD841BE77E2D4BDDC8DF77D283B1FCB /* Constants.swift */; }; D9F6E12DB8BCA955F763E2C5C15E1BC7 /* StateNativeToCoreAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC6BF0CBB80DC543EA9A8290A1EB96A8 /* StateNativeToCoreAdapter.swift */; }; - D9FADE53EB33170C3BF38A4966D0A289 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = B461DAEC591BD038A169FB4459420346 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; D9FE1258C04BDADA26D06E11B997B265 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - DA81125F04F9B7CADCA3986CD031C979 /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9884E32738BA4639A674388FB13803E7 /* AssertionRecorder.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - DB7AC8E1746F9CD6A0C6449F24424A2B /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68C785ED323E67BF289970E122380EEC /* BeginWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + DA5EE857EA8D9F3A0A49AABF6989D452 /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1491DC45BF249A59AD8CC59BC57813D /* DSL+Wait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + DA5EEF80A3B4732A0899EE3DAFAB77EE /* AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32BA42082EECC00B012859960BF28406 /* AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + DA815E4D666EBD37FEAAB8BA2EB05D94 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03A4E26FDAB2812977B49469A6B6B561 /* Example.swift */; }; + DA839AF84881478750BADF7CBB6EB7C6 /* SPCCPANativePrivacyManagerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = FBD0C3FE4BCECF88927C3C5C450B34C6 /* SPCCPANativePrivacyManagerViewController.xib */; }; + DB93F5C139F09A4BAF98AC098F28CCB8 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E0FDE098C322191908278E338777DB8 /* Errors.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; DBAA1E2B47DAE815F244D25087F2C6DB /* Pods-TVOSExampleAppUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1BB9353EDDE03C354A5641DD350250 /* Pods-TVOSExampleAppUITests-dummy.m */; }; - DBC579192649DE230E07BCE3E1938325 /* NMBStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = 5773DC71CA4EB2DAC5CB4BDEBD23ED11 /* NMBStringify.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; DC0BF875653B19421E0B48AE076BD302 /* SPGlobalCmpConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30070E328081555BF2022644B4DD5AB2 /* SPGlobalCmpConsent.swift */; }; - DC2D1FD4D23840A8C233C5628A778D4C /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = C6C7E888A71A93EEC148A9E95DDF022E /* FBLPromise+Await.m */; }; - DC7C1673D652FFCFB99DE3EF0192519F /* CwlMachBadInstructionHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BEF956C5CBABFCC690419ECC0D09D4C /* CwlMachBadInstructionHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DCE23DD7D98E31EC32F8BDA04D73F4E5 /* IQTextView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CFDDCD05F125493153660F528D3F0D50 /* IQTextView-dummy.m */; }; + DC40FBFF09CE3C36B8316F6DF0F266B8 /* QuickSpecBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 80A9DB66AE8726E0CB5FC058EDC77670 /* QuickSpecBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC41E8B731F98F5AF5AB6C1D860FF9F9 /* IQKeyboardToolbarManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A93FA39A9D83693D979D6C87751F4E5B /* IQKeyboardToolbarManager-dummy.m */; }; DD4EAA40D28B91614A468547FF258BF6 /* SPSDK.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64D94984CD5EFE5B89EF3B4A04CE304D /* SPSDK.swift */; }; DD57CA552F5139FDF9949CC4350C8369 /* SPGDPRConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87AEFA2EAE4004039B9687ACD673B4AC /* SPGDPRConsent.swift */; }; + DDC5CD0FA94051157EAD44DCA11D4D5B /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 957ECFCEB95A78EED2F84236B2271846 /* BeIdenticalTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; DDF54D32B74B436A2B7F5EAE63DE240D /* Pods-TVOSExampleApp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E88480B61ACCAA0F2621AB2B749F2E6 /* Pods-TVOSExampleApp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DF75750A67E1E48AE298C062FD70BC4C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - DFDE62571E0976F7F0B11666DE03B81D /* SatisfyAnyOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = EED09E4AF92B56AE1B2C7DE6D9DA2A17 /* SatisfyAnyOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - DFFB83DC83553570E55D25D598612C86 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - E024D333CAEC030AACA05B8814A92BF2 /* images in Resources */ = {isa = PBXBuildFile; fileRef = 8BC7AF51FA2F0826802F6A36F319AEAE /* images */; }; + DE655B5ABD24CD91A6EC78A6CB5782A6 /* IQKeyboardToolbarManager+Toolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = E65AF204BB83B541A6F7685A67A74FE2 /* IQKeyboardToolbarManager+Toolbar.swift */; }; + DFB932C28ED84FF47827C25D4913AFCD /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A9AFE904771B568A4754C58702BBFAA9 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFDB97F16D7C5B6DE5A269DE4F77F4DC /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = A4CC809ED8B5AE51F38848C0F72698E0 /* pb_encode.h */; settings = {ATTRIBUTES = (Public, ); }; }; E055D1CA4589CEA1F388C0B364568BB6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - E07394D3AA1D1A68383A852812C0F7B1 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 93FFB2E36AC453C2DA82459E83652350 /* PrivacyInfo.xcprivacy */; }; - E079C1182F3EE31D81F46362464AC7E6 /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67DE25D188109BC94B5A2EF8C20CA070 /* BeIdenticalTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - E09CC1C8017B9F29BF566516C4AAA804 /* javascript in Resources */ = {isa = PBXBuildFile; fileRef = 04DB65DCECD90C91E3B57C2CBD3A859A /* javascript */; }; - E1136139A770DC515348CFFCA91C9C08 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 25FF581EB46311D42E2C761725E1EEAA /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E11D0FDB0859CBDCF5DF24406D0218F0 /* IQKeyboardAppearanceConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD61C6CDAD99EE348E865C3B680976B1 /* IQKeyboardAppearanceConfiguration.swift */; }; - E14C44F35D0A2FB56785E8D151B38DFD /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F40700C93C0813BF56C34CAA2569E4F /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E15FF6EF7103B7F9FD0CE66D064BC28F /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 7686E23E1C29D554CF19D7C268256313 /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E0F85C04905215B579E6620E545FD3B7 /* ExpectationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF194C25B34AEA58DDC39968922E81AC /* ExpectationMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + E11D0FDB0859CBDCF5DF24406D0218F0 /* IQKeyboardAppearanceConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35C4A9F0DF15C70F4B42FA46D3195906 /* IQKeyboardAppearanceConfiguration.swift */; }; + E17430514C3537451662FD780BCD51E6 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = BE60272E11ADB724C93010B2B4936F82 /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; E199F071297998A6CB093255F815D1A7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; E1ABDFC7B07C6DFFA28ED50DC7FBB8C0 /* SPGDPRManagePreferenceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F422DC5A22E73E41CE4F61FA75179E0 /* SPGDPRManagePreferenceViewController.swift */; }; - E219BD18E0735F40D7EEB79988D84482 /* mach_excServer.c in Sources */ = {isa = PBXBuildFile; fileRef = BF05B2B122EE3F0CCF5B34243A45E7C3 /* mach_excServer.c */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; E23C859875272CC7D510A6DB0F6C9D48 /* GDPRPrivacyManagerViewResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BC310208D21A2EB2923EBEE54FCADA2 /* GDPRPrivacyManagerViewResponse.swift */; }; - E243597353525ED8ADCE37E5C192B153 /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = D07165294032BC465A489F3B4973CA64 /* FBLPromise+Recover.m */; }; - E26EB2F1C52BBD2E35E2D075ACEA91B3 /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 16FAB175E40DFD84285E6D4D2DA5042C /* GULKeychainUtils.m */; }; - E3B2DBBA4F44916F2A6A3D21FC05D4F0 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = F93D34EC9BAC65B4503EA2272FDAC97D /* FBLPromise+Do.m */; }; + E2A8240497CC2326C258BBF216B22F7B /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 2311834C46257E5B983935E8AF97B346 /* FIRInstallationsStore.m */; }; + E32A1F3DD67E2E985E18B4FC270BDEE4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + E32CA110786342FC30BC85BCB1CFEC37 /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D48730791EE2DDBFAF504114702BBC1 /* SourceLocation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + E32F0E8C28D0C6B3CEEAA10594EAEE26 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 81B2DCD6F80D84C042CB7FA5F1C8FBCE /* FBLPromise+Retry.m */; }; + E33A06CF74E44D372DB5E4F602D61EF7 /* QuickTestSuite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8193AC37D693F05389BC7EE7817E74E2 /* QuickTestSuite.swift */; }; + E35057B482504E6059859DB6FBD1DD1A /* SPGDPRManagePreferenceViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C03190257F1960B9B76BE102566E21AD /* SPGDPRManagePreferenceViewController.xib */; }; + E3C7CA1F2C17045FC7DB8CAF7D73938F /* SubclassDetection.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA0F831F10B5385C15685F1BE6EEC902 /* SubclassDetection.swift */; }; + E3E799D8787E6C00CEC6E214B8C3A8E2 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = CE860B2EA5C79C372454DCB7851C091C /* FBLPromise+Always.m */; }; E3F772B0C47359965F25AB174EC12A9C /* Pods-TVOSExampleAppUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A64CC7844FE6E230D1CFD0D3797B19C /* Pods-TVOSExampleAppUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E403A18A93AF3C60BA73AD384CC5D2E5 /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26934FCB04DA419CDDC98A0054B0722A /* AdapterProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + E4185AF2689E5D95FAD7F68880B8E91A /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CDEEE3D45A46E2F48CEEAC14CC08D22 /* GULLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; E46CE04C4C0AAD32AB28E78BCA723C69 /* SPMessageUIDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BC1FB1939BFE5F15D153AAC7FEF4A83 /* SPMessageUIDelegate.swift */; }; - E5A884D7E6E8A54A05B6B758BDB83695 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = E4AF32FBF02B449775F61102094711AF /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6295C46938338F49615EAEB54E6F30B /* Pods-Tests-NativeMessageExampleUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BE46900BF8CBA13050460771A8DD7DD /* Pods-Tests-NativeMessageExampleUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E6DD6366F7083B2C59CF5B048C1446BC /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = F8BD6514F748BCC7B75BA5FB9BE7B16B /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E753DA4609617DC08ED586AC456F0A3D /* Pods-Tests-SourcePointMetaAppUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6526F67316636BAA3D3F8C518F0864BF /* Pods-Tests-SourcePointMetaAppUITests-dummy.m */; }; + E49C1415051F51B24AB3C2DECDEAFB90 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 7408933D9B881924358ABEB56C6EB596 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4B534625835623E69964570238546A5 /* utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9F90000E5510FE177292A21D0DB03 /* utils.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + E5367AD004CF53D8D393013DC108D795 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = C3BA0948AE51327AA64A49BFFC847D66 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E562D7FD7B80D54B0E3C908922000595 /* BeResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCE82D92BB4A30E93E343AE451E79C32 /* BeResult.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + E68DFBB1A67F0CC549B4A330F94CDA8A /* IsAppEncrypted.m in Sources */ = {isa = PBXBuildFile; fileRef = 98F6695DEAC1D13CB0C1ADEFC4FBCE58 /* IsAppEncrypted.m */; }; + E6AB5478CA8EFED9269CD57188F1CE43 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 76CDC09AC51552BBFCCE41349F1AB612 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; E7AD573F2B3D478834511BAC32CEDDDA /* SPUserDataCoreToNativeAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFC7850E9B7310BAB913C6048A714A7D /* SPUserDataCoreToNativeAdapter.swift */; }; - E7DB6122F8EFD13C62A7C24F45D8BCBD /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = C30025A4F64B593C3085A683F7D1C262 /* BeAnInstanceOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + E7B793F0B00A9E3AF281B881D094C99D /* DSL+AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E7F1F0F821C28473F4A86C41B25AB7 /* DSL+AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; E80DD8023C4F6656ED823FBB198122C6 /* SPUserData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B1C4DA30BEAE3606FF4DCEFDA3729DD /* SPUserData.swift */; }; - E82DDDA0C50F8A8F71937396713C05C1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + E81C073333A1292A00E7A6894658A671 /* AsyncExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5CF58C2980FC8C6E33960F8257583AD /* AsyncExampleHooks.swift */; }; + E8789C876A23C86DE2A179941962D675 /* FirebaseInstallations-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B248C61C89B02A8A25F332705053C87 /* FirebaseInstallations-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E8AA4A15431A050F3EA95A3F8D0910C8 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = E5F243977118F9FF7014EFBD618CBCBD /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8E1B157F95E09C5204556F6F647F5A2 /* SPConsentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A26FB32526EE53AA8C0991531AC45DE /* SPConsentable.swift */; }; E8F2FBA2F806C6A0F58523070DB434E9 /* Pods-Examples-SourcePointMetaApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4424C873A8239E14D307C7649C328BDF /* Pods-Examples-SourcePointMetaApp-dummy.m */; }; - E90DBB2B1EEC4D6675ABF2F59F996380 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1053681B4826692FBA867492E079AFB5 /* DSL.swift */; }; - E91DB4AAE272985ECE5180E2B454FF47 /* SPPrivacyPolicyViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 912335C07E49ADE52F19D561EF6DA3CA /* SPPrivacyPolicyViewController.xib */; }; - E9975338BE2558DBC2A98893E569FD24 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = A31FCF2029AEB431F9B3E6CE4E2162A6 /* FBLPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E9AAA305A073B95D08BD8429B6601578 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6026BBFDA885D05E41752F0F5903AECF /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA02BC01D06A5457C483C1173C60D396 /* mach_excServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA718FEBF563149B47AABD80345B5A8 /* mach_excServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EA0C6ED12E8D14F3A49EF014A00694B2 /* QuickSpecBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 5720017BA09B4934FF19D9518B636B7B /* QuickSpecBase.m */; }; - EA8B94B909023BD1C816677A8281B27E /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C9C701BD78C8BB1E5F84E37DBB698AC /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E94A827DEB23341A36B556433591350B /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B3054F657B97EEC597FB71FB7EEBA1C /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9D7293147F72BECD0FF3F00B5A43881 /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1491DC45BF249A59AD8CC59BC57813D /* DSL+Wait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + E9E6D93BC667EE52F9B57BD4BA469406 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED6272CCA83508A3A34BA111C6A513BB /* Filter.swift */; }; + EA3B6F8B581FF31012A949FAF3B420E3 /* AsyncMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D7754507C4F4A1D871BB0E2791C1968 /* AsyncMatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; EB341D713BB91C9CA505F682BCB0FB81 /* GDPRPMPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AF75DCA5052B0584C35163F08BE31E6 /* GDPRPMPayload.swift */; }; - EB3D6639A1643F48F6C500A1A881D255 /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = D7DAD66D2C0B565E62B4669B3823B281 /* QuickConfiguration.m */; }; - EB3E94EF35A810D9AC2BBEC1FDB14061 /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03C47438F7D8F2BE336C275B53DB6C77 /* FailureMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - EB536E8BB72E5FFECE04064FBE3EC33A /* TextTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A63A86F6FDAF21DD55F64ABC11A3765 /* TextTableViewCell.swift */; }; - ED21DC9B43C82294468B03C0B01EE2FC /* UIView+IQKeyboardManagerExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F04AA8BC68E9A84F7AA20A5546BE998 /* UIView+IQKeyboardManagerExtensionObjc.swift */; }; - ED29DDA1F7C68B4D4B25AC5D4FF9D9A6 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F46ABC219787CB09845CCE85B3B87FB /* DSL.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + EB536E8BB72E5FFECE04064FBE3EC33A /* TextTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63A5CD371E3230565E30896165B49380 /* TextTableViewCell.swift */; }; + EB7847888EE120CB5CE1E2F8CD7ADBF5 /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DFAD2755DFADA501DCDEE7481708E60D /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m */; }; + EB8A34A4A321A07DF1D942F4EF8CF427 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 935EEF5E16FC6B7B0B0977DB05AE930A /* GULNetworkURLSession.m */; }; + EBA8A552C8F299956670315F1388AB9A /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3427A27AC38028C5399CAE2BCF841D6E /* DSL.swift */; }; + EBB47ABB1DA7B625932157D03EC12293 /* FIRTimestampInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2745E6AA21573E8CFA72AE7E87509F44 /* FIRTimestampInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC1FDAC6152594C8BBA6CB7A8EB52C18 /* Pods-Tests-NativeMessageExampleUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 13887FF5AE96C61A75493F453E51A166 /* Pods-Tests-NativeMessageExampleUITests-dummy.m */; }; + EC9BD6292019EC3657246F38466824EA /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D4924F4ABCA937EF78C6D630F046064 /* EndWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + ED21DC9B43C82294468B03C0B01EE2FC /* UIView+IQKeyboardManagerExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = B29E4356D1D410280B2A1E1567FCD00D /* UIView+IQKeyboardManagerExtensionObjc.swift */; }; + EDCA05DF8E30361DA6B503C8CA767B6C /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = A6FFF671D060417A9CF24E8B6B67ADB7 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDE70F270CA83263EACCAF7A7456A3DB /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE7F6B22DDE3192E0442A82C559D5836 /* BeCloseTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; EE06F00A3EA722ACC981264008993E72 /* SPUIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = E618051BCBE2BDF5EB953B3E37A09230 /* SPUIColor.swift */; }; - EE12F272371B3D1932411FB51EF0E6ED /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 20BB3FDE57EBA1431465FE6121E9632B /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE6ECAC912D9B5FF6FBB60C615D61CB4 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = 313C420FCA09A122830B92CE256AD170 /* World.swift */; }; + EE152A71C2D54BE49D91A205F0150357 /* FIRFirebaseUserAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = D03736E44507497FC9B090CBB6B354E3 /* FIRFirebaseUserAgent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE6AFC459EBDF61ADC42F2F85C74C4C8 /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29978296061A1207DEE8CAB87764F0DA /* NimbleXCTestHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + EE72C0C8695A5C364BD6637453741C93 /* IQTextView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F96E4D2386F493BE82DED195E2CF689 /* IQTextView-dummy.m */; }; EEB6D96FE496D16E6302411C11CC683C /* SPCampaignType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 675870E9375216C86665B8B9D31444DE /* SPCampaignType.swift */; }; - EEE4DFCA94C9320165C71F816986C7AF /* SPCCPANativePrivacyManagerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = FBD0C3FE4BCECF88927C3C5C450B34C6 /* SPCCPANativePrivacyManagerViewController.xib */; }; - EF3F653F8F64A5D31875F5CADC5D7742 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C128E232D8CB1629474DCDDD789A295D /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF5234B6FD72B5E3F81B28E23CE8CDB9 /* JSONTreeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53C022398A396DC90A95FABAF12AA647 /* JSONTreeView.swift */; }; + EEE2B16D2B1AC0A6F2EA7F8A7D3662DE /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = EE54C9146230FA28D06FA1D85664BB37 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EF12B41FAE35E183CFB86382B7C01330 /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AD5CBFF2CC535A21DC6948EDCDBE89C /* GULKeychainStorage.m */; }; + EF5234B6FD72B5E3F81B28E23CE8CDB9 /* JSONTreeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4265AA8465B4B7BE72ED42FB5ECE3E61 /* JSONTreeView.swift */; }; + EF5437B0AE9D8DF464F3D9C66DFABD9B /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = FF7F0ED12041FA1C08C401A7D0DD29A1 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFA2DF354996B1F561E3545D1F5030F0 /* IQKeyboardReturnManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BE80F7781B3D638A7E69BC47FCE44F37 /* IQKeyboardReturnManager-dummy.m */; }; EFA40ACBC4AF71A16657ADF0D423E39B /* UIApplicationExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA758438A6F939B8785F036B8FB7EC9A /* UIApplicationExtensions.swift */; }; - F0401ABDEF17991D575BE3CAC76FB7F1 /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = D7DAD66D2C0B565E62B4669B3823B281 /* QuickConfiguration.m */; }; - F0835FED72DDCA5A864E6251280C1CED /* IQKeyboardToolbarManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6438E403454D93A16C68CE2EEAAB43C8 /* IQKeyboardToolbarManager+Debug.swift */; }; F095C241C849376EEDB9DAF437B9CA26 /* SPConsentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A26FB32526EE53AA8C0991531AC45DE /* SPConsentable.swift */; }; - F0A8ED16D5FFC1475F77470FF946FE51 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 15E0AC071C5650C90B87CA9037EB65A4 /* GULNetwork.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F11665E2F388820E6CF67E3A960EE19A /* IQDeepResponderContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F050048877FAA2DB8B643B9D31809C8 /* IQDeepResponderContainerView.swift */; }; F1348BDC7EFAB15359DB4ED76761AEDB /* SPIDFAStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC0B7DB098A360C871AEEFC494EF2441 /* SPIDFAStatus.swift */; }; - F167310245A75F9C01FFCBFF9323CA86 /* UIScrollView+IQKeyboardManagerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 104B227DA60E6B70F39A942CBB1E0D05 /* UIScrollView+IQKeyboardManagerExtension.swift */; }; - F197437D28E1C5A1A883C26EADFFA907 /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EF9D66E18EBC3763F5A3BC63F88DD22 /* NMBExceptionCapture.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - F218AE2776201A4D96CF67888139A87C /* GULNetworkInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D9817633E5D7D337458349AEFCAC9B /* GULNetworkInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2403D69BDD57FA89AD9FF5AEFE537AF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + F167310245A75F9C01FFCBFF9323CA86 /* UIScrollView+IQKeyboardManagerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = E58DF34CA22A58EAA384996DA0161FAB /* UIScrollView+IQKeyboardManagerExtension.swift */; }; + F1AC49BE6949796D43824CCE5776834D /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 219CC0CD56FC97926EFEFCDCCC9999F7 /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F1AE5CAED80CF3B97F60E3E65B6B716D /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3DE70D4B74186544DE35040F08B1F68 /* BeAKindOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + F1B87B7D33D09F571175D367346EE2CB /* IQKeyboardToolbar-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD568D6A51A5409CB41FA9C1F9A6146 /* IQKeyboardToolbar-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F1C44E72D1C0EB8CADE53B670DCEFF36 /* CwlCatchBadInstruction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50FB40779EF49E222850B94FF5E486A9 /* CwlCatchBadInstruction.swift */; }; F2666725C37FC154746D0EC33450CA7E /* SPJson.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFA2E0A79C45CF0AD19A3B7E3CAD26C4 /* SPJson.swift */; }; F2845D8D7092EC5E0BD1B938CF883723 /* SPPropertyName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F83F0546C6C0F7184FE189E8F4A06CF /* SPPropertyName.swift */; }; F2A03F53F4ACA4E47FFCBD9AC7C7C688 /* SharedCoreToNativeAdapters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9095E935D84E98CD0E8475F29BAA5986 /* SharedCoreToNativeAdapters.swift */; }; - F321B6E2FFCD8F6E7FBF6DA08A32C470 /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 832B74665654C4B5E99237148F3F448A /* FBLPromise+Reduce.m */; }; F3582F2ED5949D90E87A0FE8B8AFD0D5 /* SPUIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = E618051BCBE2BDF5EB953B3E37A09230 /* SPUIColor.swift */; }; F38D19B62343684DAB54E88CDAA6A0A1 /* Pods-Examples-NativeMessageExample-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BABD3D93658A6438AE39E7CA356B0EE /* Pods-Examples-NativeMessageExample-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F398C475F11F2895BBBA97CE888F51D3 /* QuickSpecBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 17C54054A65D6AB7E21A5D6829DC0D93 /* QuickSpecBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3D4BE1E2231FF2EA09AF6369ED0BA0F /* UITableView+IndexPaths.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CD376FA9A92CB6FBB60F76160395E7A /* UITableView+IndexPaths.swift */; }; - F4807E1F86135AD38BAD15B8CCA67152 /* NimbleEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 787A4178773C15B48FEB129B04DC6C05 /* NimbleEnvironment.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - F48509E659D3D05D692188A9ABF1676D /* WormholyMethodSwizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 6911B7591ECB29F3A6A88E53A135920C /* WormholyMethodSwizzling.m */; }; - F4F5FD041E66EC3AC34255C67A6C9B59 /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9C973AA0FBD247656B58ACB72D0EFD9 /* Async.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - F50B4245BF074D79FE6C64B83FA88105 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB8F1E10FDD04E9CE3BE4DB16B3043EF /* Filter.swift */; }; - F52ECFB28126020D80B9CD5F4BB2143D /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = EDFF452AC6C1DF3F38720636E6C7779C /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F3D4BE1E2231FF2EA09AF6369ED0BA0F /* UITableView+IndexPaths.swift in Sources */ = {isa = PBXBuildFile; fileRef = F99A847226F1CB64296C8D40579E77BF /* UITableView+IndexPaths.swift */; }; + F4496011CFAF8A504EBB79F8057AC156 /* FIRInstallationsBackoffController.h in Headers */ = {isa = PBXBuildFile; fileRef = C0FDE3CA87B3E93E97F2DB41CA742521 /* FIRInstallationsBackoffController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F48509E659D3D05D692188A9ABF1676D /* WormholyMethodSwizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A1D82294C81ACF02E022ECA02DFE5FF /* WormholyMethodSwizzling.m */; }; + F4C56B12461364F3CC3E56413FE38ACB /* ThrowAssertion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EFDF09D136087E961C24BA4E9EE1CD8 /* ThrowAssertion.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + F4E59326A708E72CCDC663E47BB47C3F /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = FD17AB599D447FDD7701ECCA77D1AD28 /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F539AFA99FAC59495B95C7FE281AD28D /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3F02076DF398AB04994F86592D2A03B /* SuiteHooks.swift */; }; + F56997F464706EB916970ED735C49637 /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = A8539471500A9065B1DF8CED74E86479 /* FBLPromise.h */; settings = {ATTRIBUTES = (Public, ); }; }; F56EED210FD48153B9D8D68EC83ACEF2 /* SPDeviceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3C4FC7367786DA4ADD5D4613303527E /* SPDeviceManager.swift */; }; - F57669074FE360C5A76632024B5BAF03 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 609504ADB18D0DE57FC0374DBDE7B928 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5AD7805804632E4B6A7362BC2E14F69 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8647BFEF78AB24889CB26C8410420CB6 /* XCTestSuite+QuickTestSuiteBuilder.m */; }; + F5B060DC00F8542330C38DB0BD0B9B6E /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D63F62472A8C43656BA08C00F303457 /* nanopb-dummy.m */; }; F5CFE32D530DFE60BE45017056FA11B9 /* Pods-Examples-ObjC-ExampleApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 70206F4AE991E4A6C241291B45B51CDA /* Pods-Examples-ObjC-ExampleApp-dummy.m */; }; - F6831D7BEC6BA35E2C470C4A654F49C0 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 10341697CC5CFCDB719DFFF47C023BDA /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7AC6A64735F3C258003329285519B16 /* SPCCPACategoryDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 95CE5BA6845C27259E5E75FF90D770CF /* SPCCPACategoryDetailsViewController.xib */; }; - F7D8EBC84943479AD40404F2A09E258C /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 562D0CACFCF25598BC00151E0F8B8E94 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F85CDAF44752DDC3DE1318FF6F6ED1EB /* SPCustomViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 11DDF4F1DF218CBFC359A60C30CF9EEA /* SPCustomViewController.xib */; }; - F8934ADF3F480278DE2646CC7EDB5D75 /* IQKeyboardManagerSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 879733801FA819F19A10A2B0586DE8F7 /* IQKeyboardManagerSwift-dummy.m */; }; - F97076474A758641C2F309902948D296 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 02D18E271BEFA1C0F5AFAF410A2ADA1D /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA05D370DEC884852DF8F1A306D50EFE /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E6AF75BEF80C8B35D142920BD1597F4 /* pb_decode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FA0BFC8486E0AE71A862509DAE2E5653 /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = B8340B27E184F8421DC2BDC320B0EC19 /* FIRComponent.m */; }; - FA178CEC0D31FA093AB7D3A18F50664B /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F41EAD0462930E28057D0AB75280CB4 /* BeNil.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - FA3A2199ED7B1C926F38351341830E11 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BDEAD00213E25F42A5BF0875D78AB20 /* nanopb-dummy.m */; }; + F6CFAE4BBBB445780CFA3A49008BEE87 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 405145A208D170668343E2B587091B94 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F7242A1E4AE35B5F70E9BE38F6AF7E80 /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D1F27E8DDEE1C92CB890B2A34DA28DF /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F733F52ED7140EF527BA29BB112778B2 /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 9710C155F41476AE899A9061EAEEA7E2 /* FIRInstallationsIIDTokenStore.m */; }; + F80AA9508F6CA5F5910A49122387A9CF /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = AABE37F8C23C6D9E87B16B75F451798C /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F8934ADF3F480278DE2646CC7EDB5D75 /* IQKeyboardManagerSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ADBB2CD10893D2F7B56CAC45C2BC96A /* IQKeyboardManagerSwift-dummy.m */; }; + F8A7EC75FC5EF36ABBACA25059D83AD5 /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 87D5ABE9F3D08E0E9D3B6E428A17FA0B /* NMBExceptionCapture.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + F8C793A2B097EC825C22A2ED89C372DE /* NMBStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = 29EAF25F21EE50C142118D7F65D0141E /* NMBStringify.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F8EC3648560D8E3BD7E39D35245C9D34 /* AsyncWorld.swift in Sources */ = {isa = PBXBuildFile; fileRef = 629C5CA2DE65A4802EEBB04934FE67CE /* AsyncWorld.swift */; }; + F91F7471AE909894CFDBD6F38AEF7DDB /* TextTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = D594C81A655ECF45EF32CF2373208F47 /* TextTableViewCell.xib */; }; + F96BD1B09F2B3DD721D3FEEE769AEB02 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 6950705DDFFFB2F3B1FE714BEF549C3C /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F9E2812AAB407B73AB59A302AB7EB84E /* Pods-Tests-NativeMessageExampleUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BE46900BF8CBA13050460771A8DD7DD /* Pods-Tests-NativeMessageExampleUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; FA7118820F100AC565A14E507E7B4406 /* ConnectivityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F469EC0035C69528C810216676EAA16 /* ConnectivityManager.swift */; }; - FACE6236BB892BF05E40BC883411EBA1 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 4104BDBB05CFB43939A47DFF3886F9AE /* PrivacyInfo.xcprivacy */; }; - FAF86E4303E6B42CBC04B0E7F274FAEF /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 5A93CD8BA97E5CA384BA7A292A321F61 /* PrivacyInfo.xcprivacy */; }; + FA82BD1CF8B95F4070FBFFCEF8E60F03 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = D9587A31540199F76B2B124FE2554006 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA8D94CDB19EE94CD8DAD462BDEDB721 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = C9A9B7E43BDAD2F718FFD17A863D0A84 /* XCTestSuite+QuickTestSuiteBuilder.m */; }; + FAE7CC1CB3AABF2AC26C509EDFA5B97F /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36F2B7CBA2ADF7578C1336DE88F9EDCA /* MatcherProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; FB35BB51AB7FB38CF70B84F6F094C955 /* CampaignConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB66F7B9C00367A78FF52612B556CDAC /* CampaignConsent.swift */; }; + FB3E1374F361FF70B3540653536BCD46 /* SPJSReceiver.js in Resources */ = {isa = PBXBuildFile; fileRef = D58978C5A6A1FD143B441530BC082B6F /* SPJSReceiver.js */; }; + FC0504C217ED8774842F0B4F3B02FBA0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = FCAF9049188EC86589F780B62B42DDE9 /* PrivacyInfo.xcprivacy */; }; FC11E0F5E60FF359B60BB989E83F580A /* NSObjectExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = B449CC35881DF31AE43C3912C1B54623 /* NSObjectExtensions.swift */; }; FC9F902E7DA46348CA6E39311C8BD585 /* SPDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 170673B9177B3BF49D7BCD407632374B /* SPDelegate.swift */; }; - FD075E1FB743E5F3A9D234A74132AECC /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = C163FB5D653618A204E3FEA3AD4DC82D /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD3657B5574A385B80E5BAB33D812F82 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CAD3B3265A52A20F40CA87019535A969 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD6157D85A9A7AB220A711E00E4C108D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + FDAE62A1B65E201A53099EC8B5E626FB /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 008E3704D3829052945409F16538B160 /* FBLPromise+Recover.m */; }; + FDEF461D17CE7383420279D95B62A3EB /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = D0CF9E05F7A901F3CF7A759DA305AB77 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE383780F9AC990F78B3916E9FF706BE /* LongButtonViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 842A76598292AC07650477A7975DFA3C /* LongButtonViewCell.swift */; }; - FE3D084244B7AAE5A549D625213D5377 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 61ED9016651F94994CC2AEA9AEFF876E /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE76AE6606421F36E359286A4705C836 /* CwlCatchException.m in Sources */ = {isa = PBXBuildFile; fileRef = BDCB91B4EBA43D6A752144A35F5C39B1 /* CwlCatchException.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - FE83EBFE7A9BDAF681E9176551A9F8AD /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BE64A96010FE14E29FFFDAC660DB001 /* FBLPromise+Race.m */; }; - FEA24689236EF56E156B38DFAA33D3BB /* MatchError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3055702285B0D06F231C983A71921A46 /* MatchError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - FF752AD0BB01797E1AE64D5FFE7351AD /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = A596D3A4A9D566D71BC803D06552773E /* FIRInstallationsStoredItem.m */; }; - FF932851CA14F3B5FB73C72A5EEEB852 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 085476F937B552A0F347FE7F00748A4E /* FIRBundleUtil.m */; }; - FFA4E7CC673CC4A9DD5BC574D1A3F0AD /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F5989A6C63822773F0A0766286C3B16 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFFEE926014EBF7CD1D8AC1EFD37FCD8 /* UIView+IQKeyboardExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 389DD0173213399DEC83C97738075EF0 /* UIView+IQKeyboardExtension.swift */; }; + FE8D885E42EE579E556E74176622C8D0 /* ActionableTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BAC9703CCCA66DA53EEA0A439C70ABA9 /* ActionableTableViewCell.xib */; }; + FEE664A26F31F98A005C19D56F8813FE /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = 166CE685B045446FB8D256E1CCB7BB31 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FFF26CFE6F60E62B5E9A3DB35B80CD7A /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = E9434B13D13532D911BB386151B42943 /* FIROptions.m */; }; + FFF4E1366903343DFE47FC534F9B5BD1 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = B5139508753F2B17003FEED9C0AF3641 /* PrivacyInfo.xcprivacy */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 0123AAABFD8AAC85BBB6FCDC36AA99A4 /* PBXContainerItemProxy */ = { + 00B4DC3A6714595588257A63DE9E1CF6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; - remoteInfo = "Quick-iOS"; - }; - 021C3AA32EDC0520D443B2E8B57C356F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; + remoteInfo = CwlMachBadInstructionHandler; }; - 048AEC5AC506FA28D27308C34CB44FDC /* PBXContainerItemProxy */ = { + 0119E87051C67CEB2F1B19BBD2FBA79B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2450D89327C2F3947256DE8768B4B9B9; - remoteInfo = JSONView; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - 04AD1F75103136C75DCDBFDD743E9950 /* PBXContainerItemProxy */ = { + 0220DF57C33057051376936CCAA42B33 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; + remoteInfo = "Quick-iOS"; }; - 068F2850CAC887244C239D2A41B95ACA /* PBXContainerItemProxy */ = { + 025A0C93317103FE52F5D92C9820336C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; - remoteInfo = SwiftLint; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; }; - 0B6416BC0176F63A3AE5601C6E11114A /* PBXContainerItemProxy */ = { + 026D88F41B3B306D9B5F6D7DD72C74FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 12890DE3ABBC2CA295E108358D85EE69; + remoteInfo = IQTextView; }; - 0DF344836AF1AE57DEBF1CA1FFE72661 /* PBXContainerItemProxy */ = { + 0367898ECB58FF05ED6C602215EEFAF5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = 7C5613175BBC4BF67E36DB4FBEBC01D0; + remoteInfo = "IQKeyboardToolbarManager-IQKeyboardToolbarManager"; }; - 10495010029826FC06DCA72430318576 /* PBXContainerItemProxy */ = { + 04704E5ED8B7A67DF7468320D37C8A87 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4FE17428FD0E607723A44F17231B7A1; - remoteInfo = IQKeyboardToolbar; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 11FE2935252FF55EF4B9C43654ECBCE1 /* PBXContainerItemProxy */ = { + 05A9514F2182A5BC4ADFCA9DCEFFE3EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = 93CEC7FFB57A497DE49471C5D9517C13; + remoteInfo = "Wormholy-Wormholy"; }; - 1338961AA9AF4ECB818918637C6B0634 /* PBXContainerItemProxy */ = { + 06F4990EDDCB3BE98DF4C29889233EFA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A897D2D55F6D87795224F846F8ED3A36; - remoteInfo = "Nimble-tvOS"; + remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; + remoteInfo = CwlPreconditionTesting; }; - 14992DBFF8280ADEBA2D2ECFEA6602F9 /* PBXContainerItemProxy */ = { + 08E99292431752E0706F55811B1013A3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4502C7427440BEB17A50C0BF6E638A85; - remoteInfo = "IQTextInputViewNotification-IQTextInputViewNotification"; + remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; + remoteInfo = CwlCatchExceptionSupport; }; - 17AD8CFF20CCCD706F5F476D2F974578 /* PBXContainerItemProxy */ = { + 0DF0911F666CB060D09A4256C32DCCAF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BFBEDBF7E03729D43C96530EE190825; - remoteInfo = "PromisesObjC-FBLPromises_Privacy"; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - 1976E390840B8FF87526479C770DB4C7 /* PBXContainerItemProxy */ = { + 0E809A9680AD4276A1BC32AC3BDF96C4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; - remoteInfo = Wormholy; + remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; + remoteInfo = "Nimble-iOS"; }; - 1C222E47762509062DEBA50FCD0C05D1 /* PBXContainerItemProxy */ = { + 0EE636C2FA4D05A98EACBC984CEC807C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = 5D0718052BFEE502C9D9BEC44BDCFA76; + remoteInfo = "ConsentViewController-tvOS-ConsentViewController"; }; - 1E6064A623C16A96AAF661667E61761E /* PBXContainerItemProxy */ = { + 0FA0751D6F34E25C3426E3F37D4D3898 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 20976BCA5AA007C2E460B23C75613127 /* PBXContainerItemProxy */ = { + 10FAB31BD8BEF24DC13573D2C64421A4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; remoteInfo = "ConsentViewController-iOS"; }; - 21ACEC4DEE3C7EFCE239D4F64D3F0888 /* PBXContainerItemProxy */ = { + 11C9C25E0473553D7CFE0450F4D214A7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; + remoteInfo = CwlCatchExceptionSupport; }; - 21E6306E4540CEB9E552852C9100AE36 /* PBXContainerItemProxy */ = { + 1324369D380C47FFB65D4F4BB693D76E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 2232885E610DB0926DE477FDAD43A715 /* PBXContainerItemProxy */ = { + 151397321A1E1D2A743600101E76A4A5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; - remoteInfo = Wormholy; + remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; + remoteInfo = SwiftLint; }; - 2399B50626B23212CDFF15CD931DCAFB /* PBXContainerItemProxy */ = { + 16A2BAB3962A485FF3CFF8158062D735 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; - remoteInfo = "Quick-iOS"; + remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; + remoteInfo = Wormholy; }; - 2610C2A0FACB0AE1B7A3777368C5000A /* PBXContainerItemProxy */ = { + 16DB892364C220928AF8104A3ADD937D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; - remoteInfo = "Nimble-iOS"; + remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; + remoteInfo = FirebaseCoreInternal; }; - 2C61F49493410080DA07AB8A92EABE47 /* PBXContainerItemProxy */ = { + 17B4F131F8F82FD8B18852BBBC568276 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; - remoteInfo = Wormholy; + remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; + remoteInfo = SwiftLint; }; - 31ADA1954C68579B8BA60518A0D41404 /* PBXContainerItemProxy */ = { + 1850A22DDD7FE824B243B41E5E39B755 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; }; - 3656B6808F77FE26C92DA20A69619317 /* PBXContainerItemProxy */ = { + 1999F1AC0FE9027C893B411CF6093AD5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; + remoteInfo = "Nimble-iOS"; }; - 37847D31F88F459FA4A0C9E4E299C45E /* PBXContainerItemProxy */ = { + 1AC8DA3C015CB1B5B4838349305C3FB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 94DAD332BFFC672BBE92726504A716F8; - remoteInfo = "ConsentViewController-tvOS"; + remoteGlobalIDString = 0010F36F9D103AAE441EA8E1058A19BC; + remoteInfo = "SPMobileCore-tvOS"; }; - 3823B2DB5DF1EB1AF029D8FA197A16B4 /* PBXContainerItemProxy */ = { + 1AD18141ADF81D95EB46C85C0A2A92EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - 3A85311872207310457263E2C45D17C7 /* PBXContainerItemProxy */ = { + 1C52FF37C02151568BEB3D762969249B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = 020993F16DA5986DACE118349EBCE9E5; + remoteInfo = IQKeyboardToolbarManager; }; - 3BB44C34F03DA84B150B48E51225EAEF /* PBXContainerItemProxy */ = { + 20734BD6C49559CF00C22388E6B079FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; remoteInfo = GoogleAppMeasurement; }; - 3C85EDAEA13993FCFF705EA69EB69705 /* PBXContainerItemProxy */ = { + 20789E379F00A7BF491778930A79AFA6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; - remoteInfo = SwiftLint; - }; - 410DC584D03A32C82D53C406290B8A55 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = 3EB14444A17F9D4F1F697F7C1FF32245; + remoteInfo = "FirebaseInstallations-FirebaseInstallations_Privacy"; }; - 438F1CE2A7DAA2A8557BC5701883D98E /* PBXContainerItemProxy */ = { + 24A7498E4A084043772CD2BE734E1D92 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; }; - 441E6D6B7C143F108639E25293414A6F /* PBXContainerItemProxy */ = { + 24CDD02B9DA1D0CFE90FB2C4C63CEAD9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; - remoteInfo = "Nimble-iOS"; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - 45364695D7E932DE53EF66F2612F7EB4 /* PBXContainerItemProxy */ = { + 25220B2488B02EE04D97088C750E5366 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; - remoteInfo = "Quick-iOS"; + remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; + remoteInfo = CwlMachBadInstructionHandler; }; - 496C5DA3F5BE0058D9CD83AF5FE73FE0 /* PBXContainerItemProxy */ = { + 256B08D99AFD9ADCE4C77EC5FA05FBFA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; + remoteInfo = Wormholy; }; - 4A477745E015196A37B9281A8EF5C01D /* PBXContainerItemProxy */ = { + 25C747BE8A176755ECE30E6ED64B042B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 020993F16DA5986DACE118349EBCE9E5; - remoteInfo = IQKeyboardToolbarManager; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 4A69516899B39BC74BCAE6DD8DED8E32 /* PBXContainerItemProxy */ = { + 28EC4B09E9E2EB7A9C9814A38077225D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; + remoteInfo = CwlCatchExceptionSupport; }; - 4B5146281C72B9CA6417050E577CDD32 /* PBXContainerItemProxy */ = { + 292446881DEBB9DCD4AEBDAF46378DA2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; - remoteInfo = "Nimble-iOS"; + remoteGlobalIDString = 020993F16DA5986DACE118349EBCE9E5; + remoteInfo = IQKeyboardToolbarManager; }; - 4B87D2E861481B6A350F5F8F1CEF841A /* PBXContainerItemProxy */ = { + 2AB5CA8C14D0352998B51B4118DBC93C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; remoteInfo = "Quick-iOS"; }; - 4C218E26B39667896AA74126D4B2A59B /* PBXContainerItemProxy */ = { + 2B5E892ACBA3165FEABFF558033B68D7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; - remoteInfo = "Nimble-iOS"; + remoteGlobalIDString = 88810798DA63A2F6611B0970EA276DEC; + remoteInfo = "IQKeyboardReturnManager-IQKeyboardReturnManager"; }; - 4FF20277EB011A0777FF412132554DCE /* PBXContainerItemProxy */ = { + 2BC92B7E618DCB3D59D15D8EFF836760 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; + remoteInfo = CwlCatchExceptionSupport; }; - 505A0318DF0A9B2101099012CD9125CE /* PBXContainerItemProxy */ = { + 2BE65A7908A0B6180A8AB38FA9617BB6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; + remoteInfo = "Quick-iOS"; }; - 515344A95E80AD86DBC4B7E2F1BB138B /* PBXContainerItemProxy */ = { + 2EA3E2715FA20A39C8C4C6B998BEF890 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7C5613175BBC4BF67E36DB4FBEBC01D0; - remoteInfo = "IQKeyboardToolbarManager-IQKeyboardToolbarManager"; + remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; + remoteInfo = FirebaseCoreInternal; }; - 516D9909DF0F6E65DBD3F485404E79A8 /* PBXContainerItemProxy */ = { + 2F06C6F635C43E3BA483D64B13690E3F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; - remoteInfo = FirebaseCoreInternal; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; - 523E9C78BE82A2257BA4C71500DEAF67 /* PBXContainerItemProxy */ = { + 3016450C3E34CD5FC448043985879A6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; - remoteInfo = Wormholy; + remoteGlobalIDString = F4FE17428FD0E607723A44F17231B7A1; + remoteInfo = IQKeyboardToolbar; }; - 5294743D73F6A857444E09F6A2B36E51 /* PBXContainerItemProxy */ = { + 32555D83907864D327622D2FE8007A3E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; - remoteInfo = IQKeyboardCore; + remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; + remoteInfo = CwlMachBadInstructionHandler; }; - 540548EED472CD444484258D601A4549 /* PBXContainerItemProxy */ = { + 354471FAC42E5E1A5B4C6141E7E02B37 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; - remoteInfo = FirebaseCoreInternal; + remoteGlobalIDString = 4502C7427440BEB17A50C0BF6E638A85; + remoteInfo = "IQTextInputViewNotification-IQTextInputViewNotification"; }; - 54C5B98E83087D72DCCF85D25B93A6C1 /* PBXContainerItemProxy */ = { + 3655FD46BA6AD37F8E66FED0F6472063 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; remoteInfo = "ConsentViewController-iOS"; }; - 556C2F24B9525713F6717102299C119D /* PBXContainerItemProxy */ = { + 384B9DA761ACF885747AFA8B522B3DB4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; + remoteInfo = CwlMachBadInstructionHandler; }; - 5607A3BC8ACC3C2E1A3A31884D69BD59 /* PBXContainerItemProxy */ = { + 3857853DE2B27221542735EE51A8544A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; - remoteInfo = "Quick-iOS"; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; }; - 5A1252A26D480092C841ABC643F41862 /* PBXContainerItemProxy */ = { + 39AB65FA9D1213F769B4A37EC2DF285C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = 2450D89327C2F3947256DE8768B4B9B9; + remoteInfo = JSONView; }; - 5A8E40850A7126C6B3105FACF877EE71 /* PBXContainerItemProxy */ = { + 3BAD20ECC8B5877DE171BFAD6A053A4E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 55522A91938FF505CFEBEAD2DD85AE2D; - remoteInfo = "nanopb-nanopb_Privacy"; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; }; - 61677C3CECD104AA289000BA64AC6ABC /* PBXContainerItemProxy */ = { + 3EF6386C03BC285F92D970959534872E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - 644B163BA9FE83CF911FE5CC80E331A6 /* PBXContainerItemProxy */ = { + 4148B3DC7F84A7D245CADBD8252F8298 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 020993F16DA5986DACE118349EBCE9E5; - remoteInfo = IQKeyboardToolbarManager; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 64A634AE6ED633720F949AC134361556 /* PBXContainerItemProxy */ = { + 41BA2E3A22120A872EF92AD1AF6AC000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0981F89DB5DA3FFCFFEBDE1F56287054; - remoteInfo = IQKeyboardReturnManager; + remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; + remoteInfo = SwiftLint; }; - 64E742EA08C5776E6B9A6078EBC3EDCC /* PBXContainerItemProxy */ = { + 4204CFA1FE861EFADF04EEF8881C74A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2949783F7EDB27AD4666B5427B63DC79; - remoteInfo = "FirebaseCoreInternal-FirebaseCoreInternal_Privacy"; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; }; - 67878A44B33060B638E02257CF33BECE /* PBXContainerItemProxy */ = { + 4286DA4C58B967146C51A84B2BEEC397 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0981F89DB5DA3FFCFFEBDE1F56287054; - remoteInfo = IQKeyboardReturnManager; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; }; - 69E6F5BB7146501E3E61AF50CE423EB5 /* PBXContainerItemProxy */ = { + 46BE2C65B9C2025D100C022BED685CE2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = A897D2D55F6D87795224F846F8ED3A36; + remoteInfo = "Nimble-tvOS"; }; - 707B3A153BA6F062173D44E510B6466A /* PBXContainerItemProxy */ = { + 47460FA62A18E0AC297C0927787DC9C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; + remoteInfo = CwlMachBadInstructionHandler; }; - 72D3AC9E94A87B089F99439E509C7919 /* PBXContainerItemProxy */ = { + 4B5BFE7C60236F4C21D6822C696CFB57 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; + remoteInfo = CwlCatchExceptionSupport; }; - 73F37F2277EDBB5E7819C177C5FD5F34 /* PBXContainerItemProxy */ = { + 4CDCBBE7D6C72CF7EDC0CA1B01156E56 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 94DAD332BFFC672BBE92726504A716F8; - remoteInfo = "ConsentViewController-tvOS"; + remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; + remoteInfo = CwlCatchExceptionSupport; }; - 7521EF5DF96FC0DA23E66AD23887A2E2 /* PBXContainerItemProxy */ = { + 50A8E938347BF128AEB00E9A27D8D7B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; - remoteInfo = IQKeyboardCore; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; - 77213E3F2E9BE54F41816DC6123955A2 /* PBXContainerItemProxy */ = { + 525C6E37FC0D21CD2C7E8FFAFF158083 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 12890DE3ABBC2CA295E108358D85EE69; - remoteInfo = IQTextView; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - 7C85434852EBB8688E2A21120AFAAC2E /* PBXContainerItemProxy */ = { + 52F638F1295648F17820014C77803ABB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B8FF445A5162845FAB9EC00FC92B694; - remoteInfo = "IQKeyboardNotification-IQKeyboardNotification"; + remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; + remoteInfo = CwlPreconditionTesting; }; - 7FA4056A11A248B15934EABC50B2C374 /* PBXContainerItemProxy */ = { + 53BE2F0F3CCF47DCE6E06F5FA3D0E1EA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 28BE3303E3F4ECC2BDF79B1D886D2E74; - remoteInfo = "Quick-tvOS"; + remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; + remoteInfo = CwlCatchExceptionSupport; }; - 80260FED72B32F9B37FB357FE78AA0DB /* PBXContainerItemProxy */ = { + 59CCB9E693BB2505E26AC6ADAF09A6DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; - remoteInfo = FirebaseCoreInternal; + remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; + remoteInfo = IQKeyboardCore; }; - 8159B704290E2B8357787C192C3DA257 /* PBXContainerItemProxy */ = { + 5B10C2A8DD5F0F2DA94D92AFCC4FA3AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 82078A5936913E3D0869DEF7C2DEE511 /* PBXContainerItemProxy */ = { + 5C6E82CCB705BC58971034CFF1B8FDE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 0010F36F9D103AAE441EA8E1058A19BC; remoteInfo = "SPMobileCore-tvOS"; }; - 848F12AA33F606603B38584C385C552C /* PBXContainerItemProxy */ = { + 5C9A4EFCCCE749427AC6E2C91C7E8DEC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; - remoteInfo = SwiftLint; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; }; - 86C8995E69B34491A07B1E446B5F5099 /* PBXContainerItemProxy */ = { + 5EFE1BFB885B7168B00CA5A572BE3959 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; + remoteInfo = "Nimble-iOS"; }; - 87097481734C65F5B41996493CDF78F5 /* PBXContainerItemProxy */ = { + 624D91C6260CD9651380487E54ED619F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = B490E7485944099E16C9CBD79119D1D4; + remoteInfo = IQKeyboardManagerSwift; }; - 90990F6C5A6228518E9E48594D35F142 /* PBXContainerItemProxy */ = { + 646963F2DBA5B96C434C8CD7B24A1640 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; remoteInfo = FirebaseInstallations; }; - 92D84965B7558F01C19571F7BEB50127 /* PBXContainerItemProxy */ = { + 6697F15A7A9CA6746E47DC803F8DF689 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; + }; + 6790E02FC3FC344A8EBB8B66132713DE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = F4FE17428FD0E607723A44F17231B7A1; remoteInfo = IQKeyboardToolbar; }; - 937E2CDB57B3052E0E66CF8EBCA04F5F /* PBXContainerItemProxy */ = { + 6A0F25B1AD4263FEC082DAAEAD369943 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1001C16510D946B47CFF8B19DBC0B787; - remoteInfo = "FirebaseCore-FirebaseCore_Privacy"; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - 962E753066E9459F2D650FEF52D83D11 /* PBXContainerItemProxy */ = { + 6AD4055A450FFA7C0F2F4CB788F179E6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; remoteInfo = "SPMobileCore-iOS"; }; - 9682CA15E9FDCC422ED2DB1CAE6FE471 /* PBXContainerItemProxy */ = { + 6CEF25C4587A5162EF65C3E6DCC23541 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; remoteInfo = Wormholy; }; - 984E31B374FA8AFC52FBBE7FC8C2BFD2 /* PBXContainerItemProxy */ = { + 6D088541F9783628EFE31C7CDC4E3441 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = EEE261386011CDF271BE289F73FF5959; + remoteInfo = "IQKeyboardCore-IQKeyboardCore"; }; - 9926EC479AD9C078513CB210E57E8DB5 /* PBXContainerItemProxy */ = { + 707E99840BA323B12A33818DB068B9EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; remoteInfo = "ConsentViewController-iOS"; }; - 9A0B9E0448C177A5560F54BF1B5E0092 /* PBXContainerItemProxy */ = { + 7081AF037204ADAF56BF7BB5EC850D4F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; - remoteInfo = SwiftLint; + remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; + remoteInfo = "Nimble-iOS"; }; - 9CBD866F3B8FCCD066C4BB6B9E49442B /* PBXContainerItemProxy */ = { + 720C6623FC6291C2B0B35CB40E6D64A2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3EB14444A17F9D4F1F697F7C1FF32245; - remoteInfo = "FirebaseInstallations-FirebaseInstallations_Privacy"; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 9DA93970081F4D4CA294298152248329 /* PBXContainerItemProxy */ = { + 733ACDB862097AD06C660176DDEA8A44 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; + }; + 742920A449B5CE6B1AA135777E1C61A3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; }; - 9EBECF6EC399A873BAC9CE8461EF333C /* PBXContainerItemProxy */ = { + 74BD9B859C1431673A91CBA9751080C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - A0C55E879CE39F35AAB68201D7FCC50E /* PBXContainerItemProxy */ = { + 770BE3374263C9EE0E3080C517F0589F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; - remoteInfo = "Quick-iOS"; + remoteGlobalIDString = 5FF1A58DEEC5DB749FCD6C120B97CC82; + remoteInfo = "GoogleUtilities-GoogleUtilities_Privacy"; }; - A13F2A7CEB84266B6631E324104C8E38 /* PBXContainerItemProxy */ = { + 77451331D464318CB13AD370527555BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; - remoteInfo = SwiftLint; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - A6F195A589033BFBFDBF007E3848AAFE /* PBXContainerItemProxy */ = { + 77B280E6B1664E4AA79FEE84CD9CB53E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; - remoteInfo = IQKeyboardCore; + remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; + remoteInfo = "Nimble-iOS"; }; - A71B93B30148CD5B6ADAA99A93C9440A /* PBXContainerItemProxy */ = { + 7A76B68FCF0DF209241D59A1781494C3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = A26E6FD851C20D652B2755C1464A9990; + remoteInfo = IQKeyboardNotification; }; - AAD519933DA16F338D940FB1683FCD35 /* PBXContainerItemProxy */ = { + 7BC9C0CD21C2C65A3620FD4F39307250 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - AB17BDED04CFB6D3737A4ED92DF8E94E /* PBXContainerItemProxy */ = { + 7D9C2EA1E0342EFF8B972FAAEF84830F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0010F36F9D103AAE441EA8E1058A19BC; - remoteInfo = "SPMobileCore-tvOS"; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - ABE73CA57F09CF94D996B8F045A8BBA5 /* PBXContainerItemProxy */ = { + 7ECDB462CC50846ADD2F2FA4CDA95ACC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; remoteInfo = SwiftLint; }; - AC58123BDA5521EB87C7A4A0AB563E36 /* PBXContainerItemProxy */ = { + 7FC05F3F158C9DCC8F9BA1F0286154EA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 12890DE3ABBC2CA295E108358D85EE69; - remoteInfo = IQTextView; - }; - AE233B154B0BDBB95A53E8E75EE631D5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; - remoteInfo = IQKeyboardCore; + remoteGlobalIDString = F9B2C41D8F3FCEB2256091CF2667D600; + remoteInfo = "ConsentViewController-iOS-ConsentViewController"; }; - B02E2C3D0DFB891A71E95984E3BADBB8 /* PBXContainerItemProxy */ = { + 801175A2ED0423C850F0DCEDB9A3306E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; remoteInfo = "ConsentViewController-iOS"; }; - B07A66D0C047F434D265CCAB5873A875 /* PBXContainerItemProxy */ = { + 83744F768F6F395B89A6E85F050B2BB1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4FE17428FD0E607723A44F17231B7A1; - remoteInfo = IQKeyboardToolbar; + remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; + remoteInfo = CwlPreconditionTesting; }; - B098363E6753D295CC19030F5E544296 /* PBXContainerItemProxy */ = { + 8391B4915894DAAB8E7ABD584E911878 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B490E7485944099E16C9CBD79119D1D4; - remoteInfo = IQKeyboardManagerSwift; + remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; + remoteInfo = CwlPreconditionTesting; }; - B1072587762149EFA80C4145549FFC91 /* PBXContainerItemProxy */ = { + 84B125CA7BA6D4978D6B3AF2DF387669 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - B9D7D1DE731AFDE447F27E58CE0C186D /* PBXContainerItemProxy */ = { + 8508BDC0E41FC1A2CF3F983079225396 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = 0981F89DB5DA3FFCFFEBDE1F56287054; + remoteInfo = IQKeyboardReturnManager; }; - BA3BF3DD7C10C7486A47E40ECEBC9B5B /* PBXContainerItemProxy */ = { + 860A9B477E38B5BF941E9645732C0753 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EEE261386011CDF271BE289F73FF5959; - remoteInfo = "IQKeyboardCore-IQKeyboardCore"; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; }; - BB9A88D7137DF8A2EB19A260A00FCC0D /* PBXContainerItemProxy */ = { + 8903CF0BDB425F8FF2C1E6659922EA4B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; }; - BD1E19D5F1474D87F8F0B44B4F9A3C9A /* PBXContainerItemProxy */ = { + 8C1319ED61E95F9E9B639631AB2D9500 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - BF7A5AB204FED86ED37F834010115D26 /* PBXContainerItemProxy */ = { + 8D124951CF81FD75BEC49D5C024DAF5D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; remoteInfo = "Quick-iOS"; }; - BFE1EF3E5024328373B42084BE9DD892 /* PBXContainerItemProxy */ = { + 8DCC7DF4FDA0EECF480C21934FE7203C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 283C1F2EA88CD4413165801A6748A48E; - remoteInfo = IQTextInputViewNotification; + remoteGlobalIDString = 982A68D37F5DCBC1FC1FDC0BB2F0EB8E; + remoteInfo = "IQKeyboardManagerSwift-IQKeyboardManagerSwift"; }; - C2F3F0126C95A4E9F9732164D3BDE913 /* PBXContainerItemProxy */ = { + 93EE33E644CD4DCB50D06ED0F32CDC00 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 982A68D37F5DCBC1FC1FDC0BB2F0EB8E; - remoteInfo = "IQKeyboardManagerSwift-IQKeyboardManagerSwift"; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - C39D8F74D951D16082909CF97A9E3857 /* PBXContainerItemProxy */ = { + 948A35EA8A8BDB7E1B5821B28CFF81CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; }; - C638CE3B02A304280C51B2743320FB6D /* PBXContainerItemProxy */ = { + 95C817AF29EAB0D639DF8A6EBE7533E4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B247F77A0CD5E19C8187A9BA1EB58C09; - remoteInfo = "IQKeyboardToolbar-IQKeyboardToolbar"; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - C671426142023C0B2457D1B7E8E79FC4 /* PBXContainerItemProxy */ = { + 966427EE9DD062D14EE8296DE0B571D5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 283C1F2EA88CD4413165801A6748A48E; - remoteInfo = IQTextInputViewNotification; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - C72DD3843A6FFFBF0D1CDED6E67B4213 /* PBXContainerItemProxy */ = { + 9BD1F41BD49D28F8EF8CB231E50AC9D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F9B2C41D8F3FCEB2256091CF2667D600; - remoteInfo = "ConsentViewController-iOS-ConsentViewController"; + remoteGlobalIDString = 28BE3303E3F4ECC2BDF79B1D886D2E74; + remoteInfo = "Quick-tvOS"; }; - C858F684BB1A8C5975CEB25CBE1DDD44 /* PBXContainerItemProxy */ = { + 9C0A2D292670C9BDF8EFFBAB0235B144 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - C9734BC700CBB6B7B2FDAC62C9F7561D /* PBXContainerItemProxy */ = { + 9C2E24C6B93BA69E5378E33134F15FF4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5D0718052BFEE502C9D9BEC44BDCFA76; - remoteInfo = "ConsentViewController-tvOS-ConsentViewController"; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - CD78246716B32581BE453EE86E7BCE85 /* PBXContainerItemProxy */ = { + 9D522ADD1B7AEEC25ADFD1532B8510D3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - D07043B745F060C3E5C9CA42A5ACDFA7 /* PBXContainerItemProxy */ = { + 9D831050C3F0954F7D626EA88A1D2FC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; + remoteInfo = CwlMachBadInstructionHandler; }; - D1F0E9C3BBBE77A07FC26E9E2165E54E /* PBXContainerItemProxy */ = { + 9EF159B1F1FBF554B75D427B2CE3CBE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - D2619C976102C8741FEDEB6328EEC85F /* PBXContainerItemProxy */ = { + A0CF2C3BA3DE7EE292E3BC119F9E53EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 283C1F2EA88CD4413165801A6748A48E; remoteInfo = IQTextInputViewNotification; }; - D37B2F2CA837BF037759592532AF14CB /* PBXContainerItemProxy */ = { + A11A3A6F580C2A051D5AF85750A39877 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A6602BCAA6F4F932A586C41D0B7E019C; - remoteInfo = "IQTextView-IQTextView"; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; }; - D3D178129BB0DEC0AFA3A5728046513F /* PBXContainerItemProxy */ = { + A186CEFA6B63586AB867C7E2CEFD280A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; + remoteInfo = CwlMachBadInstructionHandler; }; - D66C5DFA7BF61ECC0AA70A1293E20773 /* PBXContainerItemProxy */ = { + A2052E7244E03F37D031FDC869D22437 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0010F36F9D103AAE441EA8E1058A19BC; - remoteInfo = "SPMobileCore-tvOS"; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - D7DAA68F89AF66C5C05D847CAF9E4990 /* PBXContainerItemProxy */ = { + A53943D9A778B88157288A9DD85B9C39 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 88810798DA63A2F6611B0970EA276DEC; - remoteInfo = "IQKeyboardReturnManager-IQKeyboardReturnManager"; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + A66ADA97829817BAB40953CE434BC02F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; + remoteInfo = CwlPreconditionTesting; + }; + A7F8F36239C540B80A46DB887E3B753C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; + remoteInfo = "Quick-iOS"; + }; + A8EF7497D8CD728D36E2B3AD6BC6A3D7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + AE9BC9F8B59929D49E5A5C29E8179ABE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; }; - D8E2BB6AE49D3716F6709B491971ACE5 /* PBXContainerItemProxy */ = { + B0ABFE468FD54C51D77150245E3701E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; remoteInfo = "Nimble-iOS"; }; - D9B5F9CF349D7B081F3287FE33A84524 /* PBXContainerItemProxy */ = { + B435C609D4DD9E1A969FBBCE0D3600B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 93CEC7FFB57A497DE49471C5D9517C13; - remoteInfo = "Wormholy-Wormholy"; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - DB97A09DF80FF4DC66B9587D8C631311 /* PBXContainerItemProxy */ = { + B467AE3A19829EC14359A251AF18AF64 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + B52146CF9A9C90B03FEDEE4900F5B597 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; + remoteInfo = Wormholy; + }; + B533DBF06034A0AFDD42CC8E76973033 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; }; - DDB3B5DF56C435E3ED9043CE20CE78F8 /* PBXContainerItemProxy */ = { + B7E7CC81BEB886C867DCA4669C29730A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; remoteInfo = FirebaseInstallations; }; - DDC3A5A3D67D260F86A06A45BAEF3074 /* PBXContainerItemProxy */ = { + B89C9B03AFFE36E69590C5B538656597 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A26E6FD851C20D652B2755C1464A9990; - remoteInfo = IQKeyboardNotification; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + B992746E7B787DCF3A3360A8759F91BE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 55522A91938FF505CFEBEAD2DD85AE2D; + remoteInfo = "nanopb-nanopb_Privacy"; + }; + BA52EAD9B3333D6A057A8CEBCE7C1BCF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; + remoteInfo = SwiftLint; + }; + BCD76662CC0AA357552F7C748F0057E0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; + }; + BD5912F6603A73CE7022FA12390F4096 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; + }; + BE227B09BD72F08A9493B840589F52DC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; + remoteInfo = CwlMachBadInstructionHandler; }; - E626FC32F0E14EA1EB03234755937CCC /* PBXContainerItemProxy */ = { + BF1F10B98849207EFA42A3D79359B46D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; remoteInfo = "Quick-iOS"; }; - E6AABDD306ED30EF4837D3C9B232C9DC /* PBXContainerItemProxy */ = { + C0C2D0B8FFA6CB98EA96B87A6EBF7ADB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 1BFBEDBF7E03729D43C96530EE190825; + remoteInfo = "PromisesObjC-FBLPromises_Privacy"; }; - E91EAC5F744D196E6E966348AF1F042F /* PBXContainerItemProxy */ = { + C19C73BE61DB2F13A5C20069F180CF42 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; }; - EA273B90179E7D432BB012E2F2D4F0E5 /* PBXContainerItemProxy */ = { + C2CA7B3DB095F2EB3994928872729DDC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; remoteInfo = "Nimble-iOS"; }; - EA663784F318E984C585CEEB2E40E40D /* PBXContainerItemProxy */ = { + C4F099590FB3C860EA250717AD117CF3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; + remoteInfo = CwlCatchExceptionSupport; }; - EC24ABE8ECD2FC253C4C68C55FBE1AAC /* PBXContainerItemProxy */ = { + C534401E16F13D0035ABC76DBDB85CA8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; + remoteInfo = CwlPreconditionTesting; }; - EC74425675756FB672667C2A465C3D9A /* PBXContainerItemProxy */ = { + C5FDE0C3DF2D8ECEBDA7BF7C9EBDCC20 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A26E6FD851C20D652B2755C1464A9990; - remoteInfo = IQKeyboardNotification; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - EDA6A459679FAF72CF30F3F4A396505C /* PBXContainerItemProxy */ = { + C7E3975C96A9D9FF24DFEA2F113B4E11 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5FF1A58DEEC5DB749FCD6C120B97CC82; - remoteInfo = "GoogleUtilities-GoogleUtilities_Privacy"; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; }; - F1E4CAEDB831701E275A0F91DBDFC976 /* PBXContainerItemProxy */ = { + C82BCEAF6B993DB2EA7587E7CFAAD257 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = 2B8FF445A5162845FAB9EC00FC92B694; + remoteInfo = "IQKeyboardNotification-IQKeyboardNotification"; + }; + C838431BB933BB2D249A9A5EB0157B4B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; }; - F45CCDE79A0037F85653C4F362333764 /* PBXContainerItemProxy */ = { + C8453CFC81D810C739A7F48D4E2F6EC8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - F87882BD37B943D05710AC661B81F200 /* PBXContainerItemProxy */ = { + CB37DE5A9ABA8979B7007E32C88795B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; - remoteInfo = "Nimble-iOS"; + remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; + remoteInfo = IQKeyboardCore; }; - F8CFA9F0F2EA5F519D9B2144D8BFC168 /* PBXContainerItemProxy */ = { + CC27C710DF59B5CFD9AC192062E5188B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; - remoteInfo = "Nimble-iOS"; + remoteGlobalIDString = 0010F36F9D103AAE441EA8E1058A19BC; + remoteInfo = "SPMobileCore-tvOS"; }; - F8F5BFEE937211AD7E8E020796EC7CF4 /* PBXContainerItemProxy */ = { + CC65A0A023780572AE815FC3CA5EF442 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; - remoteInfo = FirebaseCoreInternal; + remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; + remoteInfo = "Quick-iOS"; + }; + CD09572B177D8E265C14F55F3DA223C1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A6602BCAA6F4F932A586C41D0B7E019C; + remoteInfo = "IQTextView-IQTextView"; + }; + CD9D3B7549559402D706CA07D936A2A7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0981F89DB5DA3FFCFFEBDE1F56287054; + remoteInfo = IQKeyboardReturnManager; + }; + CE913B5C5E549B687967E1B93B33ED00 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; + remoteInfo = CwlMachBadInstructionHandler; + }; + CF83A55C41CF2C4A7A2A9706E7386091 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 12890DE3ABBC2CA295E108358D85EE69; + remoteInfo = IQTextView; }; - F9DADE581765EFA0F501F474560156E7 /* PBXContainerItemProxy */ = { + D05CA6549F08C21D8D8A8284E430ADE7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; remoteInfo = "SPMobileCore-iOS"; }; - FBFF2E4FD384ABE0BEA198CC8AF8A806 /* PBXContainerItemProxy */ = { + D0789DC0329358B73A75BBD906D2DB4B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - FD0966D6B096CECC0988E09FAA578BE7 /* PBXContainerItemProxy */ = { + D56DA2984C2B4AFE122A0EFE1F9E6360 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; + remoteInfo = CwlPreconditionTesting; }; - FF3BFA06820223C8926A1434DFCED4FD /* PBXContainerItemProxy */ = { + D60BBAFAACC2E57A719D3A141B2B48E0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - FF70C3C692095A35130C1194DC3E18C4 /* PBXContainerItemProxy */ = { + D68BCE895FC17B7A29DF2CA8C20D14BF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; - remoteInfo = Wormholy; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 0034872F1B60FB5FED00F412D9D7A439 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 00858046BC72A04D7263B66F2D425873 /* ConsentViewController-tvOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConsentViewController-tvOS-prefix.pch"; path = "../ConsentViewController-tvOS/ConsentViewController-tvOS-prefix.pch"; sourceTree = ""; }; - 00BA232A188CE8CB8BE0617C8DD20B4C /* SPGCMData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGCMData.swift; sourceTree = ""; }; - 00F2D35E2F16C07A688E80092C83C827 /* Pods-Tests-SPGDPRExampleAppUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-SPGDPRExampleAppUITests-Info.plist"; sourceTree = ""; }; - 017E4B6465E0C7525381577057A7B2C1 /* IQKeyboardAppearanceManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardAppearanceManager.swift; path = IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager.swift; sourceTree = ""; }; - 01C8B197422021FDE6E7B61B0358FBBC /* nanopb.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = nanopb.modulemap; sourceTree = ""; }; - 0215672A26243634BDD3066654D7E3D6 /* Pods-Examples-SourcePointMetaApp */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Examples-SourcePointMetaApp"; path = Pods_Examples_SourcePointMetaApp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 022AE72E29CD671904856E3584C975F9 /* SPMessageViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPMessageViewController.swift; path = ConsentViewController/Classes/SPMessageViewController.swift; sourceTree = ""; }; - 029CCFBD6A8A98AAEB3CBBB0A107E20F /* Pods-Tests-AuthExampleUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-AuthExampleUITests-Info.plist"; sourceTree = ""; }; - 02A196CEB3DFD80618F39736B5983336 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig"; sourceTree = ""; }; - 02D18E271BEFA1C0F5AFAF410A2ADA1D /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 02D8F619D99F378ED3916CF8E13AD109 /* FirebaseCoreInternal-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreInternal-dummy.m"; sourceTree = ""; }; - 02EE6C687792F6C27F1D79E927D2D8EE /* XCTestObservationCenter+Register.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestObservationCenter+Register.m"; path = "Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m"; sourceTree = ""; }; - 033B5B585762808D4A67F6F6E91AFC96 /* SPUSNatConsent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPUSNatConsent.swift; sourceTree = ""; }; - 03C47438F7D8F2BE336C275B53DB6C77 /* FailureMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FailureMessage.swift; path = Sources/Nimble/FailureMessage.swift; sourceTree = ""; }; - 03D300D43238379ED6079E1774E378A9 /* IQKeyboardToolbarManager.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbarManager.debug.xcconfig; sourceTree = ""; }; - 040E03CB321E63CE5EFB5F9F97CFD55C /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; - 04CE77A17EF9DBA011C2708BE08947F3 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; - 04DB65DCECD90C91E3B57C2CBD3A859A /* javascript */ = {isa = PBXFileReference; includeInIndex = 1; name = javascript; path = ConsentViewController/Assets/javascript; sourceTree = ""; }; - 052CD9042C4C35EA5916B2AA570C2EEE /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; - 05447D72C230968F297EC8141D5922A2 /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; + D7E5055E23ADA2BC1DC47F6D1576B851 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1001C16510D946B47CFF8B19DBC0B787; + remoteInfo = "FirebaseCore-FirebaseCore_Privacy"; + }; + D7FA6F223EDB2F0F25D34B2794681F54 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 283C1F2EA88CD4413165801A6748A48E; + remoteInfo = IQTextInputViewNotification; + }; + D82D5E55C7B2BE153F1262B778BFD486 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; + }; + D85DCC1A22C229E541F3C81ECE959A26 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; + }; + D88B81E7B2D49D2DDF8573C1E3552971 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; + remoteInfo = "Nimble-iOS"; + }; + D908ABCC606DF4323D3CE5710A099E5E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; + remoteInfo = FirebaseCoreInternal; + }; + DA71F16A2A56C850FEF28F86DCDA018A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B247F77A0CD5E19C8187A9BA1EB58C09; + remoteInfo = "IQKeyboardToolbar-IQKeyboardToolbar"; + }; + DCFE29988E2D059C9456CB14EA454F87 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 94DAD332BFFC672BBE92726504A716F8; + remoteInfo = "ConsentViewController-tvOS"; + }; + DD2FF1C0379A3535799C5F864139DDB6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; + remoteInfo = Wormholy; + }; + DD3C569FF38F621C851DB89F0E7073BF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; + remoteInfo = SwiftLint; + }; + DE267E34EE0FB26D013A5A959E688F17 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 283C1F2EA88CD4413165801A6748A48E; + remoteInfo = IQTextInputViewNotification; + }; + DE680BB172537D7CCF3F3E18DD1FFCA6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; + remoteInfo = IQKeyboardCore; + }; + DF3D0FD8B5F6257EA4AA112AEC2F26C9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F4FE17428FD0E607723A44F17231B7A1; + remoteInfo = IQKeyboardToolbar; + }; + E1445D4B3611816F8DC924C97B7169B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; + }; + E16C80EFE192250EF585CF511C59C267 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 94DAD332BFFC672BBE92726504A716F8; + remoteInfo = "ConsentViewController-tvOS"; + }; + E62605E5271F28C55F3BE13E7DAC423D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; + }; + E73D1FF84BF66F3D5335D2E903BF7ED7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; + }; + E746ADADD5A62A3DD4873214B8BEEC39 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; + remoteInfo = IQKeyboardCore; + }; + E8CD705EB1A60482D6484F4B646D2299 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; + }; + E9BCF1221D4426B785E91619CC7E822F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; + }; + EB8B4AFB98C8AA40E8C6718B4BD12A88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; + }; + F0B27D8BDBB73D4DE6F22742EE5E8A21 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; + remoteInfo = CwlPreconditionTesting; + }; + F30CF4401824E88781A9169E93D25EDE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2949783F7EDB27AD4666B5427B63DC79; + remoteInfo = "FirebaseCoreInternal-FirebaseCoreInternal_Privacy"; + }; + F463BEFA52E9A14DB0C1075F873B48BA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; + remoteInfo = CwlCatchExceptionSupport; + }; + F5768730385A4A56D4008F3BFB1431ED /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; + remoteInfo = FirebaseCoreInternal; + }; + F7419DF1202D741ECBDF1FA5682E00B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A26E6FD851C20D652B2755C1464A9990; + remoteInfo = IQKeyboardNotification; + }; + F8F40A945F71081EDAA4E11939FB3A66 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; + }; + FD8536EF62446E7D5E6F447941BD4239 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; + remoteInfo = Wormholy; + }; + FE9D585024E690528E6862C30F5DA314 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; + remoteInfo = "Quick-iOS"; + }; + FF0F0EB85E9B9C6370BB07C1F142F582 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; + remoteInfo = CwlPreconditionTesting; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 0040387F9E3E25AF324907F247E4BF80 /* CwlDarwinDefinitions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlDarwinDefinitions.swift; path = Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift; sourceTree = ""; }; + 00760845D8B0C5DA675FA4CC4DE50940 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 00858046BC72A04D7263B66F2D425873 /* ConsentViewController-tvOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConsentViewController-tvOS-prefix.pch"; path = "../ConsentViewController-tvOS/ConsentViewController-tvOS-prefix.pch"; sourceTree = ""; }; + 008E3704D3829052945409F16538B160 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; + 00BA232A188CE8CB8BE0617C8DD20B4C /* SPGCMData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGCMData.swift; sourceTree = ""; }; + 00F2D35E2F16C07A688E80092C83C827 /* Pods-Tests-SPGDPRExampleAppUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-SPGDPRExampleAppUITests-Info.plist"; sourceTree = ""; }; + 018C7D6DA1414FA7FD58A494AA74FAF0 /* mach_excServer.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mach_excServer.c; path = Sources/CwlMachBadInstructionHandler/mach_excServer.c; sourceTree = ""; }; + 01A004F916AE721171E411659CD37E18 /* QuickTestObservation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestObservation.swift; path = Sources/Quick/QuickTestObservation.swift; sourceTree = ""; }; + 01B7A0F12119250D0C87E0712F834199 /* IQTextInputViewNotification-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextInputViewNotification-umbrella.h"; sourceTree = ""; }; + 0215672A26243634BDD3066654D7E3D6 /* Pods-Examples-SourcePointMetaApp */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Examples-SourcePointMetaApp"; path = Pods_Examples_SourcePointMetaApp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0227A01D4F0BD28AF391B3A9DB204D03 /* Polling.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Polling.swift; path = Sources/Nimble/Polling.swift; sourceTree = ""; }; + 022AE72E29CD671904856E3584C975F9 /* SPMessageViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPMessageViewController.swift; path = ConsentViewController/Classes/SPMessageViewController.swift; sourceTree = ""; }; + 029CCFBD6A8A98AAEB3CBBB0A107E20F /* Pods-Tests-AuthExampleUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-AuthExampleUITests-Info.plist"; sourceTree = ""; }; + 02A196CEB3DFD80618F39736B5983336 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig"; sourceTree = ""; }; + 033B5B585762808D4A67F6F6E91AFC96 /* SPUSNatConsent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPUSNatConsent.swift; sourceTree = ""; }; + 03A4E26FDAB2812977B49469A6B6B561 /* Example.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Example.swift; path = Sources/Quick/Examples/Example.swift; sourceTree = ""; }; + 04DB65DCECD90C91E3B57C2CBD3A859A /* javascript */ = {isa = PBXFileReference; includeInIndex = 1; name = javascript; path = ConsentViewController/Assets/javascript; sourceTree = ""; }; + 050F9B9E655D48CD28778AA2297DA7BB /* NMBStringify.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBStringify.m; path = Sources/NimbleObjectiveC/NMBStringify.m; sourceTree = ""; }; + 054F7CF39326FC823FD090254AC82F87 /* TestState.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestState.swift; path = Sources/Quick/TestState.swift; sourceTree = ""; }; + 05BA369063AB9F88199C725055C5F112 /* IsAppEncrypted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IsAppEncrypted.h; path = third_party/IsAppEncrypted/Public/IsAppEncrypted.h; sourceTree = ""; }; 0618BA28BDC28DE55C59EC817BEE6BC6 /* Pods-Examples-NativeMessageExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-NativeMessageExample.debug.xcconfig"; sourceTree = ""; }; + 06AFB2FB1357339F642D525DD139645C /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; + 06CDCF1DEF066100C9A8DA515BF0F69F /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Public/GoogleUtilities/GULUserDefaults.h; sourceTree = ""; }; 06E5B413FEA5A600D76636DA132F8FB9 /* IQTextInputViewNotification */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQTextInputViewNotification; path = IQTextInputViewNotification.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = nanopb; path = nanopb.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 07CE5597A5FF1D3D125158E39F082A22 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; - 085476F937B552A0F347FE7F00748A4E /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; + 07A8CFAAC606B196E05540BE99D4F78B /* CwlCatchException-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlCatchException-prefix.pch"; sourceTree = ""; }; + 07E0AD456E2983D293E4F77517365BB4 /* FirebaseCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCore-Info.plist"; sourceTree = ""; }; + 07F7FDB058328900287FB0E998FBFE99 /* GULNetworkInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInfo.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULNetworkInfo.h; sourceTree = ""; }; + 080544185156D8EFB4F8B2735F21B295 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; + 0874D5D0DB5A4E30D92632B7FA3AB3CE /* AsyncExpression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncExpression.swift; path = Sources/Nimble/AsyncExpression.swift; sourceTree = ""; }; 08EFFFAFE6B8C843DE416183FF42EB61 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.modulemap"; sourceTree = ""; }; + 08F357DF6D86BCE1B955CCA6588B08ED /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; + 090867511CD2BA024093F61173297740 /* Wormholy.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Wormholy.debug.xcconfig; sourceTree = ""; }; 090FB5D206322F3D4116DCB9537BA768 /* Pods-Tests-AuthExampleUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-AuthExampleUITests-acknowledgements.markdown"; sourceTree = ""; }; 0938054FF37292F241D2F03657DCA974 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m"; sourceTree = ""; }; - 09D2345FF6CA8B1BC3F630B9E2E5F51E /* PromisesObjC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesObjC-umbrella.h"; sourceTree = ""; }; - 0A41324431E70A8A5D156D556509325E /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; - 0B8194CC6DC632FC65E25C080D541DE0 /* IQKeyboardToolbarManager+Action.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Action.swift"; path = "IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Action.swift"; sourceTree = ""; }; + 09760B2CDB70F77EDBE597061083AB98 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQTextView/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 0A615B8FEA4BB77F6D10C31025414773 /* SPMobileCore-tvOS-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; name = "SPMobileCore-tvOS-xcframeworks.sh"; path = "../SPMobileCore-tvOS/SPMobileCore-tvOS-xcframeworks.sh"; sourceTree = ""; }; + 0B248C61C89B02A8A25F332705053C87 /* FirebaseInstallations-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseInstallations-umbrella.h"; sourceTree = ""; }; 0BBCE35A0421461965EDB0E1835692D8 /* SPCCPAPartnersViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPCCPAPartnersViewController.swift; sourceTree = ""; }; - 0BDEAD00213E25F42A5BF0875D78AB20 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - 0C51BE3A7172113ED2D7CB13C5F1DEB1 /* AtomicBox.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AtomicBox.swift; path = FirebaseCore/Internal/Sources/Utilities/AtomicBox.swift; sourceTree = ""; }; + 0BD568D6A51A5409CB41FA9C1F9A6146 /* IQKeyboardToolbar-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbar-umbrella.h"; sourceTree = ""; }; + 0C468EBD52C660B829A9EF5CA0D838CD /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; 0C65EE1CE46F0EF23C89F969024E6B02 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h"; sourceTree = ""; }; - 0C9C701BD78C8BB1E5F84E37DBB698AC /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; + 0C82904C58AECE94225849CD3382BF5E /* mach_excServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mach_excServer.h; path = Sources/CwlMachBadInstructionHandler/mach_excServer.h; sourceTree = ""; }; + 0C925C17E276718B3B82E1F218B59371 /* AssertionRecorder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionRecorder.swift; path = Sources/Nimble/Adapters/AssertionRecorder.swift; sourceTree = ""; }; 0CDEFA47A2822954ABE2E1E4C57CBA20 /* Pods-Examples-SourcePointMetaApp-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-SourcePointMetaApp-acknowledgements.plist"; sourceTree = ""; }; - 0CE1041CE47689609966C114608BBBA2 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; 0D01AADE4EF28E9EA6E9B56822417319 /* PMCategoryManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PMCategoryManager.swift; sourceTree = ""; }; - 0D4A25F124618603C0420916AC3FD9A3 /* QuickTestObservation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestObservation.swift; path = Sources/Quick/QuickTestObservation.swift; sourceTree = ""; }; + 0D1F27E8DDEE1C92CB890B2A34DA28DF /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; + 0D542779C488CF8ED5AD479BF0B8FB1A /* Equal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Equal.swift; path = Sources/Nimble/Matchers/Equal.swift; sourceTree = ""; }; 0D68F2DD4656E2DC0F28ED037671461F /* Nimble-tvOS */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Nimble-tvOS"; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0D94C00CD889D62A4E627E23098A7E11 /* FirebaseCoreInternal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.debug.xcconfig; sourceTree = ""; }; + 0D7754507C4F4A1D871BB0E2791C1968 /* AsyncMatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncMatcher.swift; path = Sources/Nimble/Matchers/AsyncMatcher.swift; sourceTree = ""; }; 0DFD4541FF9DAA31A2FC2A7F6D03ED22 /* IQTextView */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQTextView; path = IQTextView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0E8F094B97DF26E1067DBDBAADD8C29D /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; - 0EA61A939CCD7358A691FDF7396A81F2 /* NMBStringify.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBStringify.h; path = Sources/NimbleObjectiveC/NMBStringify.h; sourceTree = ""; }; + 0E0FF0EB4ABF09B6C32D854A470072E8 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkConstants.h; sourceTree = ""; }; + 0E798ACA8739273EF6705B2F619E7748 /* Nimble-tvOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "Nimble-tvOS.modulemap"; path = "../Nimble-tvOS/Nimble-tvOS.modulemap"; sourceTree = ""; }; + 0ECA7FAF11E033462E93DA53335F86BB /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = ""; }; 0ED1B8267B071DB6AB0389823D4B50E9 /* SPWebMessageViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPWebMessageViewController.swift; sourceTree = ""; }; - 0EDDD218CEDF3D6464040A617677A3A9 /* IQTextInputViewNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQTextInputViewNotification-Info.plist"; sourceTree = ""; }; + 0EDDE07DCB417401246AED370804DA0C /* Nimble-iOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Nimble-iOS.debug.xcconfig"; sourceTree = ""; }; + 0EDFC6CE0261D0B8565F3190CEE48BC0 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; 0F30A2BF8247E3B49846E08BF91D6D6F /* Pods-Examples-SourcePointMetaApp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-SourcePointMetaApp-umbrella.h"; sourceTree = ""; }; - 0F46ABC219787CB09845CCE85B3B87FB /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Nimble/DSL.swift; sourceTree = ""; }; - 10341697CC5CFCDB719DFFF47C023BDA /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 0FDD93343FCF19CFFE387161EBDBA43B /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; 103B95F4ED3B3A1D7926D743F2923250 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.modulemap"; sourceTree = ""; }; 1049229D7F62564EA52B9AC96A0C3031 /* Bundle+Framework.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bundle+Framework.swift"; path = "ConsentViewController/Classes/Bundle+Framework.swift"; sourceTree = ""; }; - 104B227DA60E6B70F39A942CBB1E0D05 /* UIScrollView+IQKeyboardManagerExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+IQKeyboardManagerExtension.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtension.swift"; sourceTree = ""; }; - 1053681B4826692FBA867492E079AFB5 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Quick/DSL/DSL.swift; sourceTree = ""; }; - 10D4538FFA8E4CE761C61825CCB47478 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; + 105CE05DE7CD3B0A74D93C6AD4B5EA00 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+IQKeyboardManagerExtensionObjc.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtensionObjc.swift"; sourceTree = ""; }; 10E0A1B4632BE74D7347FA8479A1CE4F /* SimpleClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SimpleClient.swift; sourceTree = ""; }; - 110771DFD30130391179BD7F3A0A9EC9 /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; + 10F2EEC527F6E7935FFABF0983620715 /* RequestCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = RequestCell.xib; path = Sources/UI/Cells/RequestCell.xib; sourceTree = ""; }; 110BD425B6CAD6801539E2C6AB6E0662 /* IQKeyboardReturnManager-IQKeyboardReturnManager */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardReturnManager-IQKeyboardReturnManager"; path = IQKeyboardReturnManager.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 110F08638AACB32953FB3395518F13EF /* SPMobileCore-iOS-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "SPMobileCore-iOS-xcframeworks.sh"; sourceTree = ""; }; - 114EB343440B05856B1F4C37CD3BB335 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULAppEnvironmentUtil.h; sourceTree = ""; }; - 119C22191F2A18E911EB69EABC7A05A4 /* WHTableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHTableView.swift; path = Sources/Subclasses/WHTableView.swift; sourceTree = ""; }; + 11296EDFC129EA0521F51D9161E5136D /* CwlCatchExceptionSupport-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlCatchExceptionSupport-umbrella.h"; sourceTree = ""; }; + 1131771154A5D4CFBC4918DB50DAFEB2 /* XCTestObservationCenter+Register.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestObservationCenter+Register.m"; path = "Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m"; sourceTree = ""; }; + 118D08AA25F5FBD2C0A9F1604960FCA7 /* IQKeyboardCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardCore-umbrella.h"; sourceTree = ""; }; + 119BF7600B4B48D0FAF2C547AC752308 /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; 11AB65E223FBA66F8387F04ADD5C44C7 /* Pods-Tests-AuthExampleUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-AuthExampleUITests-acknowledgements.plist"; sourceTree = ""; }; + 11B372D0279EAB990E3BD615FFDBB958 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; + 11B7F14A38E0CD1E7F2BDF3415BA40F3 /* ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; sourceTree = ""; }; 11DDF4F1DF218CBFC359A60C30CF9EEA /* SPCustomViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPCustomViewController.xib; sourceTree = ""; }; + 11F290A7274F920B01D24B662A5E5E88 /* IQKeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManager.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager.swift; sourceTree = ""; }; 1209EA6EBCF62A05EE4AF10A38C73B9C /* Pods-Tests-SPGDPRExampleAppUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-SPGDPRExampleAppUITests.release.xcconfig"; sourceTree = ""; }; 120BD4C670EF00F4D5A40AA4B863A7AE /* IQKeyboardNotification-IQKeyboardNotification */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardNotification-IQKeyboardNotification"; path = IQKeyboardNotification.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 135682E6BB9D8F99E34FEC9D5D0E744A /* UIView+Resign.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Resign.swift"; path = "IQKeyboardManagerSwift/Resign/UIKItExtensions/UIView+Resign.swift"; sourceTree = ""; }; + 135F15712F2E26302AF7A1B3321C1933 /* RingBuffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RingBuffer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/RingBuffer.swift; sourceTree = ""; }; 1375173E8D5512B9BFD64EDD2FCA6C13 /* SPCCPAVendorDetailsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPCCPAVendorDetailsViewController.swift; sourceTree = ""; }; 13887FF5AE96C61A75493F453E51A166 /* Pods-Tests-NativeMessageExampleUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-NativeMessageExampleUITests-dummy.m"; sourceTree = ""; }; 13C8C8B254851998F9289F71229B28A2 /* FirebaseInstallations */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseInstallations; path = FirebaseInstallations.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 141322BAF43813C755A9837A10B8B295 /* IQKeyboardReturnManager.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardReturnManager.debug.xcconfig; sourceTree = ""; }; + 14250D74426E3F8CEAA313072076355C /* IQTitleBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTitleBarButtonItem.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQTitleBarButtonItem.swift; sourceTree = ""; }; 148D0F9E8C7373FEAF40D800FC5F1BAA /* FirebaseCoreInternal */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseCoreInternal; path = FirebaseCoreInternal.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 14A31B695BE605B7BC300ABA7A0BBD99 /* PMVendorManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PMVendorManager.swift; sourceTree = ""; }; 14A475CA99F08B3863C3A7BD25B54750 /* Pods-Tests-SourcePointMetaAppUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-SourcePointMetaAppUITests.modulemap"; sourceTree = ""; }; + 14EE15EE2D21740716E29AC2EE0A6076 /* Closures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Closures.swift; path = Sources/Quick/Hooks/Closures.swift; sourceTree = ""; }; + 1502E63A37330EBB5C1A73A5190D09F5 /* IQTextView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextView.release.xcconfig; sourceTree = ""; }; 156AAA0B72E382123D7BA1BCBEE845C3 /* Pods-Examples-SourcePointMetaApp-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-SourcePointMetaApp-acknowledgements.markdown"; sourceTree = ""; }; 15848DEC7727A809830E7F6FC1B6CE0F /* IQKeyboardReturnManager */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardReturnManager; path = IQKeyboardReturnManager.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 1593F2AFA09C8CB7CB497969362C16F2 /* StorageFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StorageFactory.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/StorageFactory.swift; sourceTree = ""; }; - 15D6C67FDC071D6EBE3063BD5AFA8121 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - 15DDE3CDBCEC2E6BBCBA1A4DE6B412BE /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; - 15E0AC071C5650C90B87CA9037EB65A4 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetwork.h; sourceTree = ""; }; + 15984851E2434A1A83C71AEAED338F2E /* SPMobileCore-iOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "SPMobileCore-iOS.release.xcconfig"; sourceTree = ""; }; + 166CE685B045446FB8D256E1CCB7BB31 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; 16A6B86A230015B27E8C491D716DA32C /* Pods-Examples-ObjC-ExampleApp-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-ObjC-ExampleApp-acknowledgements.plist"; sourceTree = ""; }; - 16FAB175E40DFD84285E6D4D2DA5042C /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; - 16FB1DD23699E89820267A22E344C0AC /* FIRTimestamp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTimestamp.m; path = FirebaseCore/Sources/FIRTimestamp.m; sourceTree = ""; }; + 16E26D53D76686D672481814AA43BE6D /* IQKeyboardNotification.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardNotification.release.xcconfig; sourceTree = ""; }; 170673B9177B3BF49D7BCD407632374B /* SPDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPDelegate.swift; path = ConsentViewController/Classes/SPDelegate.swift; sourceTree = ""; }; - 17C54054A65D6AB7E21A5D6829DC0D93 /* QuickSpecBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpecBase.h; path = Sources/QuickObjCRuntime/include/QuickSpecBase.h; sourceTree = ""; }; + 1789C906329962E5457BC43ADCAB742A /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsErrors.h; sourceTree = ""; }; 182C561114B03D57F4A67E016CB87CFB /* SourcePointClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SourcePointClient.swift; sourceTree = ""; }; - 18408DE331F4EA484DADE491FC255046 /* IQKeyboardManagerSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-umbrella.h"; sourceTree = ""; }; 1840EBC85C38B3D34E599412FD06EE5F /* ConsentViewController-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ConsentViewController-iOS-dummy.m"; sourceTree = ""; }; - 186D36C1418B9DD6EA37D57A548EF049 /* nanopb-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-umbrella.h"; sourceTree = ""; }; + 18C8FD65ACC0A1178BF37AB4EC3186DB /* BeVoid.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeVoid.swift; path = Sources/Nimble/Matchers/BeVoid.swift; sourceTree = ""; }; + 18F6047FB83FFEC12D6F0FE6CE4703E5 /* Equal+TupleArray.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Equal+TupleArray.swift"; path = "Sources/Nimble/Matchers/Equal+TupleArray.swift"; sourceTree = ""; }; + 18F9E19CA9D917CB5655F5450578C723 /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; + 18FC2954F1FB2A2E4820D10D9B873A50 /* HaveCount.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HaveCount.swift; path = Sources/Nimble/Matchers/HaveCount.swift; sourceTree = ""; }; 1915207E5A90DCA82E26FBBCA2E23E5F /* Pods-Examples-ObjC-ExampleApp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-ObjC-ExampleApp.modulemap"; sourceTree = ""; }; - 1977D158C8E9B436CD6D3027B9A13F76 /* ContainElementSatisfying.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContainElementSatisfying.swift; path = Sources/Nimble/Matchers/ContainElementSatisfying.swift; sourceTree = ""; }; + 1927DE642808C0399D8EC4D6EEBFFA2C /* QuickSpecBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpecBase.m; path = Sources/QuickObjCRuntime/QuickSpecBase.m; sourceTree = ""; }; 197865AE4C919C97C7E5CE23CE9253D9 /* Pods-Examples-ObjC-ExampleApp */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Examples-ObjC-ExampleApp"; path = Pods_Examples_ObjC_ExampleApp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 19A3208713532FEB443BA6C90BF523BC /* Pods-Examples-SourcepointFirebaseDemo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-SourcepointFirebaseDemo.debug.xcconfig"; sourceTree = ""; }; + 19E8DF962E12F5CD09F0C1D4AE5F54AB /* IQKeyboardToolbar.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbar.debug.xcconfig; sourceTree = ""; }; + 1A0C1E8502B39156213F23E163801B61 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardManagerSwift/PrivacyInfo.xcprivacy; sourceTree = ""; }; 1A0C68D976DEFB9773D1E67B3627B6D1 /* MessagesResponse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = MessagesResponse.swift; sourceTree = ""; }; + 1A1D82294C81ACF02E022ECA02DFE5FF /* WormholyMethodSwizzling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = WormholyMethodSwizzling.m; path = Sources/Objc/WormholyMethodSwizzling.m; sourceTree = ""; }; 1A61EF9F8DAB20D0B29D364D6042FB92 /* Pods-Tests-ConsentViewController_ExampleTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-ConsentViewController_ExampleTests-resources.sh"; sourceTree = ""; }; - 1AD827B0E0F1216CE3BA04D9A8CE4F55 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Public/GoogleUtilities/GULReachabilityChecker.h; sourceTree = ""; }; - 1BD547B151F6A31F295082EB0F8E919F /* TextTableViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = TextTableViewCell.xib; path = Sources/UI/Cells/TextTableViewCell.xib; sourceTree = ""; }; + 1A76BD3D2B474131A34604EF2865963E /* IQKeyboardManager+Appearance_Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Appearance_Deprecated.swift"; path = "IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance_Deprecated.swift"; sourceTree = ""; }; + 1AEFF9CB21CFE2C6E9CABE1E8FC2049E /* Config.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Config.swift; path = "Sources/Support Files/Config.swift"; sourceTree = ""; }; + 1AF44F0431C5517FC97624B819A93234 /* ActionableTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ActionableTableViewCell.swift; path = Sources/UI/Cells/ActionableTableViewCell.swift; sourceTree = ""; }; + 1AF548F201A5ECBD867F8B7FE2F0B358 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; + 1B143EBC1966C88F868E06AAC74D1677 /* ElementsEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementsEqual.swift; path = Sources/Nimble/Matchers/ElementsEqual.swift; sourceTree = ""; }; + 1B2A085592270AF5DD5E13A64ED858F7 /* RequestCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestCell.swift; path = Sources/UI/Cells/RequestCell.swift; sourceTree = ""; }; + 1B73E46A10649788206CF69187F13906 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULSceneDelegateSwizzler.h; sourceTree = ""; }; + 1B9F50AC0729A3A5253FB09DBB050D14 /* IQKeyboardCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardCore.release.xcconfig; sourceTree = ""; }; 1BE46900BF8CBA13050460771A8DD7DD /* Pods-Tests-NativeMessageExampleUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-NativeMessageExampleUITests-umbrella.h"; sourceTree = ""; }; - 1C52ECDCD905E74708881137ADAE8164 /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; - 1CE3318851B69636B927E30BA8C1E9C0 /* Nimble-iOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Nimble-iOS.release.xcconfig"; sourceTree = ""; }; + 1CF9482DF9831CCB3E533ACFE2AACC24 /* RequestTitleSectionView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = RequestTitleSectionView.xib; path = Sources/UI/Sections/RequestTitleSectionView.xib; sourceTree = ""; }; + 1D1EF07B4074C5D3B21D293539E811B4 /* CwlCatchException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlCatchException.h; path = Sources/CwlCatchExceptionSupport/include/CwlCatchException.h; sourceTree = ""; }; 1E88480B61ACCAA0F2621AB2B749F2E6 /* Pods-TVOSExampleApp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TVOSExampleApp-umbrella.h"; sourceTree = ""; }; - 1ED22AD25DF356DD678C967A6A6C5CF4 /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; + 1EB1E29251A4E8016DF94D588688631D /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; + 1EB98EC760A9900E08B973CADE03FE11 /* RequestModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModel.swift; path = Sources/Models/RequestModel.swift; sourceTree = ""; }; + 1F17A815B4C39DFD2BE71E8C85B46A1C /* Wormholy-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Wormholy-Info.plist"; sourceTree = ""; }; 1FEFC5DF623E0B735C831F197EB46676 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig"; sourceTree = ""; }; 200889D4597F4832345C529B808EFFB3 /* Pods-TVOSExampleApp-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TVOSExampleApp-resources.sh"; sourceTree = ""; }; 20A4710BBD2EE3CFC496E3AF134BD4FD /* ConsentViewController-tvOS-ConsentViewController */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "ConsentViewController-tvOS-ConsentViewController"; path = ConsentViewController.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 20BB3FDE57EBA1431465FE6121E9632B /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; - 20F77F98B9EC6D3423626236B5EE1A91 /* FirebaseInstallations-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseInstallations-umbrella.h"; sourceTree = ""; }; + 20AD96D8D079F854B147064F9599EAC6 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/GULReachabilityMessageCode.h; sourceTree = ""; }; + 20BCCE3D8FFE4752339823149D7C43EF /* StopTest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StopTest.swift; path = Sources/Quick/StopTest.swift; sourceTree = ""; }; 213D4ECBFA7309B07DF2DEED0D23AC9E /* Pods-TVOSExampleApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TVOSExampleApp.release.xcconfig"; sourceTree = ""; }; 2176275B8B0729C9BE40F21BC680FF52 /* Pods-Examples-NativeMessageExample-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-NativeMessageExample-acknowledgements.plist"; sourceTree = ""; }; 217B5479C6892998368ABCC3F23A430D /* Pods-Examples-ObjC-ExampleApp-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-ObjC-ExampleApp-acknowledgements.markdown"; sourceTree = ""; }; - 224D8359F0DFA2F028AF2E9EF23C6730 /* World+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "World+DSL.swift"; path = "Sources/Quick/DSL/World+DSL.swift"; sourceTree = ""; }; - 238F8A402DE70DF975A8EBF0F62EA48D /* Nimble-iOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Nimble-iOS-Info.plist"; sourceTree = ""; }; - 249FFAAA24EC0831F3C320D83DB031AC /* Wormholy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Wormholy.h; path = Sources/Wormholy.h; sourceTree = ""; }; + 2187FE9772F1A9A746A83A16204EDB91 /* IQBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItem.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItem.swift; sourceTree = ""; }; + 219CC0CD56FC97926EFEFCDCCC9999F7 /* QuickConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickConfiguration.h; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.h; sourceTree = ""; }; + 220D1365CED5CB83C4C0CE1E3DABD3B0 /* CwlCatchExceptionSupport */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CwlCatchExceptionSupport; path = CwlCatchExceptionSupport.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 2266B6960BA5D00602AED11707DDCE85 /* Quick-tvOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "Quick-tvOS.modulemap"; path = "../Quick-tvOS/Quick-tvOS.modulemap"; sourceTree = ""; }; + 2311834C46257E5B983935E8AF97B346 /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; + 236DE9F22C6527027547CC5C4DD8596D /* NSURLSessionConfiguration+Wormholy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLSessionConfiguration+Wormholy.h"; path = "Sources/Objc/NSURLSessionConfiguration+Wormholy.h"; sourceTree = ""; }; + 237601B38F13A3670A4070C1CAC6862D /* UIView+ParentObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+ParentObjc.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+ParentObjc.swift"; sourceTree = ""; }; + 23FBDAA5FD0B0723D595A12D65251D68 /* ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist"; sourceTree = ""; }; + 24C58E8D9EEFDCDCAA11A3C5873FCF26 /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; + 250CCF39F870AE6F993E71E9CAC93BDD /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; 2530BC414137FF7A53A0368B476547B9 /* Wormholy */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Wormholy; path = Wormholy.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 259EFEA7087E5468175533431A8057F5 /* Behavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Behavior.swift; path = Sources/Quick/Behavior.swift; sourceTree = ""; }; 25AE189B10793A7146D998D676725888 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.plist"; sourceTree = ""; }; - 25FF581EB46311D42E2C761725E1EEAA /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h; sourceTree = ""; }; - 26D1F1D6BCDDDB585293AE58BE566864 /* JSONView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JSONView-umbrella.h"; sourceTree = ""; }; + 25D4F6A49E547E09FEE315D6A39438D8 /* IQKeyboardToolbarManager.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbarManager.release.xcconfig; sourceTree = ""; }; + 26484551773621D3B85EA2980BF9C36E /* TestSelectorNameProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestSelectorNameProvider.swift; path = Sources/Quick/TestSelectorNameProvider.swift; sourceTree = ""; }; + 26934FCB04DA419CDDC98A0054B0722A /* AdapterProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdapterProtocols.swift; path = Sources/Nimble/Adapters/AdapterProtocols.swift; sourceTree = ""; }; + 26EA509F93874431C5DA3886A8BF2C86 /* UICollectionView+IndexPaths.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UICollectionView+IndexPaths.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UICollectionView+IndexPaths.swift"; sourceTree = ""; }; 2701FF4C96D98F0B29DFA47632CB59B0 /* Pods-Tests-NativeMessageExampleUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Tests-NativeMessageExampleUITests"; path = Pods_Tests_NativeMessageExampleUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 27037CC61C19580FDD56C28682478E85 /* RequestResponseExportOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestResponseExportOption.swift; path = Sources/Utils/RequestResponseExportOption.swift; sourceTree = ""; }; + 271B9303BE698648CA3470649FD280CD /* Nimble-tvOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Nimble-tvOS-umbrella.h"; path = "../Nimble-tvOS/Nimble-tvOS-umbrella.h"; sourceTree = ""; }; + 2745E6AA21573E8CFA72AE7E87509F44 /* FIRTimestampInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestampInternal.h; path = FirebaseCore/Sources/FIRTimestampInternal.h; sourceTree = ""; }; 27768312B574C1C195B5DA118542D5DA /* Pods-Tests-AuthExampleUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-AuthExampleUITests-dummy.m"; sourceTree = ""; }; 27958D4E3AA3B961EBD163BD2E74D50E /* SPJSReceiver.spec.js */ = {isa = PBXFileReference; includeInIndex = 1; path = SPJSReceiver.spec.js; sourceTree = ""; }; 279F88EBA67943FE8DBA4704C9BA2C15 /* ConsentViewController-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "ConsentViewController-tvOS.debug.xcconfig"; path = "../ConsentViewController-tvOS/ConsentViewController-tvOS.debug.xcconfig"; sourceTree = ""; }; - 27B0BCF2353094B4FD14CEF688580407 /* BeAKindOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAKindOf.swift; path = Sources/Nimble/Matchers/BeAKindOf.swift; sourceTree = ""; }; + 27B51A7BAC47E4A5BFF438AAB27E4C81 /* IQKeyboardReturnManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardReturnManager.modulemap; sourceTree = ""; }; 27F52904F8E2C67669D2B25113119F8C /* Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig"; sourceTree = ""; }; - 2809E2FB0B0999E9E6C0294EB446B864 /* IQKeyboardCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardCore-Info.plist"; sourceTree = ""; }; - 284623473428AE00AAA189382025D8CE /* CwlCatchBadInstructionPosix.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchBadInstructionPosix.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPosixPreconditionTesting/CwlCatchBadInstructionPosix.swift; sourceTree = ""; }; - 28664522455C5D2FEA5E3F6CFAC78884 /* BeLessThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThan.swift; path = Sources/Nimble/Matchers/BeLessThan.swift; sourceTree = ""; }; + 284792F06F89CA62D3E6123581FBA927 /* IQKeyboardAppearanceManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardAppearanceManager+Internal.swift"; path = "IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager+Internal.swift"; sourceTree = ""; }; + 285FA291E715D679D7FE0BA7CA91DB12 /* SwiftLint.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftLint.release.xcconfig; sourceTree = ""; }; + 288EEEA8AEE2176ED91869E38426DC17 /* Requirement.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Requirement.swift; path = Sources/Nimble/Requirement.swift; sourceTree = ""; }; 28CFB897FC81ACF232126C93B8E36769 /* SPGDPRVendorDetailsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGDPRVendorDetailsViewController.swift; sourceTree = ""; }; - 28D4C48FDBEBBB97BC27045B848FF1A0 /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsErrors.h; sourceTree = ""; }; 28D5EA4BB4CA750310C6328A9F1F15D9 /* Pods-Examples-SourcepointFirebaseDemo */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Examples-SourcepointFirebaseDemo"; path = Pods_Examples_SourcepointFirebaseDemo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 2982829D6FF01D4B8FBE37474CFAD8F6 /* JSONView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JSONView.release.xcconfig; sourceTree = ""; }; - 2A0DCA107BBCC4B6214227F9D69B60B5 /* PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PromisesObjC-Info.plist"; sourceTree = ""; }; + 291EEE38749CE6E0C73E407A8D0EB77E /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 29978296061A1207DEE8CAB87764F0DA /* NimbleXCTestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleXCTestHandler.swift; path = Sources/Nimble/Adapters/NimbleXCTestHandler.swift; sourceTree = ""; }; + 29AE751FC0F120611D3A1462E52CDDCC /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; + 29EAF25F21EE50C142118D7F65D0141E /* NMBStringify.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBStringify.h; path = Sources/NimbleObjectiveC/include/NMBStringify.h; sourceTree = ""; }; 2A13B1DF6C6AAAEE4F352F720D1D2599 /* Pods-Examples-NativeMessageExample-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-NativeMessageExample-resources.sh"; sourceTree = ""; }; 2A26FB32526EE53AA8C0991531AC45DE /* SPConsentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPConsentable.swift; sourceTree = ""; }; - 2A35CC9C7D8AA754363439B2D68134BF /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; 2A64CC7844FE6E230D1CFD0D3797B19C /* Pods-TVOSExampleAppUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TVOSExampleAppUITests-umbrella.h"; sourceTree = ""; }; - 2B63F6C9B92344CE56A5AB925174C4BF /* Quick.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Quick.h; path = Sources/QuickObjectiveC/Quick.h; sourceTree = ""; }; - 2BB705775345ED936727B2B3FEB91464 /* IQKeyboardReturnManager.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardReturnManager.release.xcconfig; sourceTree = ""; }; - 2CC2F9E2668781BED5E119E88E4351CE /* Quick-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Quick-tvOS.debug.xcconfig"; path = "../Quick-tvOS/Quick-tvOS.debug.xcconfig"; sourceTree = ""; }; + 2AA1E8B56C1C4BB8239C7A2E5838E478 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; + 2AB648CCEE84EE032BC3748305CA25FA /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRApp.h; sourceTree = ""; }; + 2ADBB2CD10893D2F7B56CAC45C2BC96A /* IQKeyboardManagerSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardManagerSwift-dummy.m"; sourceTree = ""; }; + 2B12C2B2013EFCA0F1FEB1D5379405A8 /* FailureMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FailureMessage.swift; path = Sources/Nimble/FailureMessage.swift; sourceTree = ""; }; + 2B2C452C547F5C72A91AD191072AB706 /* IQTextView+Placeholderable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQTextView+Placeholderable.swift"; path = "IQTextView/Classes/IQTextView+Placeholderable.swift"; sourceTree = ""; }; + 2B3054F657B97EEC597FB71FB7EEBA1C /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 2B6C95C84D480808889C697012B352A4 /* IQTextView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextView-prefix.pch"; sourceTree = ""; }; + 2BA16E167D6EF79C689CE7ECBC63430C /* IQKeyboardManagerSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.debug.xcconfig; sourceTree = ""; }; + 2BC6953410731876B3416D9A7D347B27 /* IQKeyboardCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardCore-prefix.pch"; sourceTree = ""; }; + 2BE18B625D19EDDBF19C786FA9C4CD23 /* SPMobileCore-iOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "SPMobileCore-iOS.debug.xcconfig"; sourceTree = ""; }; + 2C7F93F7CFF13C43FCDDF68AC3D6522C /* BeGreaterThanOrEqualTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThanOrEqualTo.swift; path = Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift; sourceTree = ""; }; + 2CBDA5A98EA670762ABFC2E1D265F305 /* CwlPosixPreconditionTesting.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlPosixPreconditionTesting.debug.xcconfig; sourceTree = ""; }; + 2CE43E3E5A772279ABD0387A237DCDE0 /* IQKeyboardNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardNotification.swift; path = IQKeyboardNotification/Classes/IQKeyboardNotification.swift; sourceTree = ""; }; + 2CFE12B6F3C7C740E68CAE4F9245E695 /* Quick-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Quick-iOS.modulemap"; sourceTree = ""; }; 2D6BAA29C8563F4A6E565468007F72C4 /* SPCampaignEnv.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPCampaignEnv.swift; path = ConsentViewController/Classes/SPCampaignEnv.swift; sourceTree = ""; }; - 2DE2DDC056DD3CF8CA9F8E3DE9DADF0C /* MatcherProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherProtocols.swift; path = Sources/Nimble/Matchers/MatcherProtocols.swift; sourceTree = ""; }; 2DEBB1FFE8E70FD83CC1E5697E8A7D50 /* Pods-Tests-NativeMessageExampleUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-NativeMessageExampleUITests.modulemap"; sourceTree = ""; }; 2E2C94A9C6126684EC34738AA8F7AB87 /* CCPAPMConsentSnapshot.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CCPAPMConsentSnapshot.swift; sourceTree = ""; }; - 2E8488943FE22D17A3F4605A7CB55677 /* IsAppEncrypted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IsAppEncrypted.h; path = third_party/IsAppEncrypted/Public/IsAppEncrypted.h; sourceTree = ""; }; 2EA93FE946DA25CC8E5B843521B26098 /* SPGDPRNativePrivacyManagerViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGDPRNativePrivacyManagerViewController.swift; sourceTree = ""; }; - 2EF9D66E18EBC3763F5A3BC63F88DD22 /* NMBExceptionCapture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBExceptionCapture.m; path = Sources/NimbleObjectiveC/NMBExceptionCapture.m; sourceTree = ""; }; - 2F1F9698E3F0EEC69A920A7239BBD834 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; - 2F40700C93C0813BF56C34CAA2569E4F /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; - 2F41EAD0462930E28057D0AB75280CB4 /* BeNil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeNil.swift; path = Sources/Nimble/Matchers/BeNil.swift; sourceTree = ""; }; - 2F796E90AEBE724205944949DD0F4593 /* ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; sourceTree = ""; }; - 2FCAFB5CE831103247AF530B4A66E903 /* Quick-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-iOS-umbrella.h"; sourceTree = ""; }; - 2FF00E06150B4FB87D874AE4FBD8C1DA /* IQKeyboardToolbarConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarConstants.swift; path = IQKeyboardToolbarManager/Classes/Constants/IQKeyboardToolbarConstants.swift; sourceTree = ""; }; - 2FF30CD13696FD7A58825344738F12F1 /* BeGreaterThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThan.swift; path = Sources/Nimble/Matchers/BeGreaterThan.swift; sourceTree = ""; }; + 2EAF80D436E8A7F00E434A770B74AD91 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; + 2EBA88DFA4CE4EECE2EB0957F3BC9427 /* WHTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHTextView.swift; path = Sources/Subclasses/WHTextView.swift; sourceTree = ""; }; + 2ECFAAFC62A2DFE367B301D75F04E4EE /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; + 2EFFD7A3CE87229F9775E2437AB22494 /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; 30070E328081555BF2022644B4DD5AB2 /* SPGlobalCmpConsent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGlobalCmpConsent.swift; sourceTree = ""; }; - 30112CF86B7799B80FC4630793CC9B61 /* IQKeyboardCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardCore-umbrella.h"; sourceTree = ""; }; - 301C13BBF88E04E1EC6EEA09F6AE624C /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; - 3055702285B0D06F231C983A71921A46 /* MatchError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatchError.swift; path = Sources/Nimble/Matchers/MatchError.swift; sourceTree = ""; }; 309C0270C20A21A240AC4C4C13ACF54D /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h"; sourceTree = ""; }; - 313C420FCA09A122830B92CE256AD170 /* World.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = World.swift; path = Sources/Quick/World.swift; sourceTree = ""; }; - 3198E138D98A322C2A1BDA3E2FC9CC49 /* IQKeyboardReturnManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardReturnManager-umbrella.h"; sourceTree = ""; }; - 31A42AE160F48E88DA30410AE011A898 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - 31E52989936EFB64E1A591731B94982A /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; + 30F24B2C15D59F40D98C16A0F0F912AE /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; + 30FA3D98286D1A49ADE17B7E8C9C5E77 /* InputStream+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "InputStream+Utils.swift"; path = "Sources/Utils/InputStream+Utils.swift"; sourceTree = ""; }; + 31153087896082D206A4FB09F2A31C65 /* Nimble-iOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Nimble-iOS-Info.plist"; sourceTree = ""; }; + 3125E0AEF4C07B3C967DB0A1D09ED6E0 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; + 312BF46E4E318C049EFD24288B49F860 /* IQTextInputViewNotification.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextInputViewNotification.release.xcconfig; sourceTree = ""; }; + 32266AE7F761B56C2F69BA2BE77054A0 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 32273C3579DDC80A0E04B464513AEC00 /* IQKeyboardToolbarManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Internal.swift"; path = "IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Internal.swift"; sourceTree = ""; }; 3227F3FC45681D7CEE5D1355A532398A /* nanopb-nanopb_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "nanopb-nanopb_Privacy"; path = nanopb_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 32944E617686E2135F48E6DB375C235B /* ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist"; sourceTree = ""; }; - 32C48D347EAB6A81050959B1F63D527F /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; - 32D9817633E5D7D337458349AEFCAC9B /* GULNetworkInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInternal.h; path = GoogleUtilities/Network/GULNetworkInternal.h; sourceTree = ""; }; + 324EA3CFFCCB06B5329A0DB87CC19A13 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; + 32BA42082EECC00B012859960BF28406 /* AsyncAwait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncAwait.swift; path = Sources/Nimble/Utils/AsyncAwait.swift; sourceTree = ""; }; + 32F6B838E42284ACF0782FC442FFA5D9 /* CwlPreconditionTesting.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlPreconditionTesting.release.xcconfig; sourceTree = ""; }; 331073598098173D1699703CF07AF019 /* ConsentViewController-iOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "ConsentViewController-iOS.release.xcconfig"; sourceTree = ""; }; - 3326F533A2B0D82FB1BDD473717DBB45 /* IQKeyboardNotification.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardNotification.modulemap; sourceTree = ""; }; 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PromisesObjC; path = FBLPromises.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 33E288796077779AB76E10F54206074F /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; + 33B80CC8EE0ECAB695524973E039F545 /* CwlCatchBadInstructionPosix.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchBadInstructionPosix.swift; path = Sources/CwlPosixPreconditionTesting/CwlCatchBadInstructionPosix.swift; sourceTree = ""; }; + 33C6E68936062BDC159B49D3849FB9A0 /* CwlBadInstructionException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlBadInstructionException.swift; path = Sources/CwlPreconditionTesting/CwlBadInstructionException.swift; sourceTree = ""; }; + 341749C73A9DDC03BBFCB8BF4C77838B /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; 341C37DA1D524CCE2CA4C1E503E822E8 /* SPCCPAConsent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPCCPAConsent.swift; sourceTree = ""; }; - 34242E996D5C8423D51AABA60E432F74 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; - 344471D8FF863E55F9F3234D7BB1BA12 /* Nimble-tvOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Nimble-tvOS-prefix.pch"; path = "../Nimble-tvOS/Nimble-tvOS-prefix.pch"; sourceTree = ""; }; - 34476D62FD2522230ECF89058BD6AF67 /* Quick-iOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Quick-iOS.debug.xcconfig"; sourceTree = ""; }; - 3460BF7473AA715C31E0ABAE13FCC42B /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; - 34761E5898D7D8E84B75A74099571E18 /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; - 34770D9CD9627CB3880DBE85F37B46FF /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; + 3427A27AC38028C5399CAE2BCF841D6E /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Quick/DSL/DSL.swift; sourceTree = ""; }; 34965BE65DC9DDC12BA274BB3D89E801 /* Pods-Tests-AuthExampleUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-AuthExampleUITests.modulemap"; sourceTree = ""; }; - 355A7C4B00B0F65ABA6D838880650D5A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardToolbarManager/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 356C7DA26091C0E7AA09180D9EBBEF19 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Public/GoogleUtilities/GULUserDefaults.h; sourceTree = ""; }; + 34D989935F30D00E606AE11B4B623E01 /* FirebaseCoreInternal-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-prefix.pch"; sourceTree = ""; }; + 34F831AA769E614261D410BF227A2838 /* JSONView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JSONView-prefix.pch"; sourceTree = ""; }; + 35117BB8160F1268BCD6A94B94FDEBCE /* IQKeyboardCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardCore.modulemap; sourceTree = ""; }; 35A574F4B3BD123791C31E94F754B3BA /* SPGDPRPartnersViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGDPRPartnersViewController.swift; sourceTree = ""; }; - 36B938F832302BB306D0CD8E2194C1B0 /* WHBaseViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHBaseViewController.swift; path = Sources/Subclasses/WHBaseViewController.swift; sourceTree = ""; }; + 35C4A9F0DF15C70F4B42FA46D3195906 /* IQKeyboardAppearanceConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardAppearanceConfiguration.swift; path = IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceConfiguration.swift; sourceTree = ""; }; + 369624BF24186412CC06088709AEE3CF /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; + 36DEF60663BF3F1C3171A0D8C5246EC2 /* ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist"; sourceTree = ""; }; 36E1993376CB5E7006909115A0334DE0 /* Pods-Tests-ConsentViewController_ExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-ConsentViewController_ExampleTests.debug.xcconfig"; sourceTree = ""; }; - 3773D6E23F79E376BE24670850083A07 /* UIView+ParentObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+ParentObjc.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+ParentObjc.swift"; sourceTree = ""; }; + 36F2B7CBA2ADF7578C1336DE88F9EDCA /* MatcherProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherProtocols.swift; path = Sources/Nimble/Matchers/MatcherProtocols.swift; sourceTree = ""; }; + 374E98AEF6664423828FD8464896DD0C /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; + 377CC3E93DF4518F2B7A6637C33D243F /* FIRCurrentDateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCurrentDateProvider.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.h; sourceTree = ""; }; 379542535146E00C9B0A63990E7B5E0C /* Pods-Tests-NativeMessageExampleUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-NativeMessageExampleUITests-resources.sh"; sourceTree = ""; }; + 37BFCC7EAC8AA0681464CFDE2CF66640 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; 380358C9A223FE55A10AC25127FF1410 /* ConsentViewController-iOS */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "ConsentViewController-iOS"; path = ConsentViewController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 3826A2DF56DF42D8FE85E480068DB1CA /* Pods-Tests-SourcePointMetaAppUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-SourcePointMetaAppUITests-acknowledgements.markdown"; sourceTree = ""; }; - 389DD0173213399DEC83C97738075EF0 /* UIView+IQKeyboardExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardExtension.swift"; path = "IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtension.swift"; sourceTree = ""; }; - 393BACE0E9330B72FB850A8561E40F6E /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - 3A1435CDF83533A2FFCA0414C6DE85F2 /* FIRCurrentDateProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCurrentDateProvider.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.m; sourceTree = ""; }; - 3A63A86F6FDAF21DD55F64ABC11A3765 /* TextTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextTableViewCell.swift; path = Sources/UI/Cells/TextTableViewCell.swift; sourceTree = ""; }; - 3A665D3B04CA1B83D89AB874F4041163 /* NSURLSessionConfiguration+Wormholy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLSessionConfiguration+Wormholy.h"; path = "Sources/Objc/NSURLSessionConfiguration+Wormholy.h"; sourceTree = ""; }; + 393EA51584D351873633CE98B99B94F5 /* IQTextInputViewNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQTextInputViewNotification-Info.plist"; sourceTree = ""; }; + 39521561A3A1D050295F964A5391C69E /* QuickObjCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickObjCRuntime.h; path = Sources/QuickObjCRuntime/include/QuickObjCRuntime.h; sourceTree = ""; }; + 39AB7954D02DC29058E83B73A6DD1E61 /* FileHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FileHandler.swift; path = Sources/Utils/FileHandler.swift; sourceTree = ""; }; + 3A27B524BCCE68381BE0D1E3D5FEA7A6 /* Matcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Matcher.swift; path = Sources/Nimble/Matchers/Matcher.swift; sourceTree = ""; }; 3AB123675C504DBA426F7267B79D3ACD /* Pods-Tests-SourcePointMetaAppUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-SourcePointMetaAppUITests.release.xcconfig"; sourceTree = ""; }; 3AC41A4E33416989A7D8796B73BA4A07 /* SP_Icon.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = SP_Icon.png; sourceTree = ""; }; 3B11A9FF20684FE5D4B69A774C992D8C /* Pods-TVOSExampleApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TVOSExampleApp-dummy.m"; sourceTree = ""; }; - 3BB9E4DCB2670E2E16FB321D9276A6AE /* IQKeyboardToolbarManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardToolbarManager-Info.plist"; sourceTree = ""; }; - 3BEEEBEE99D5EE87F9174D9AEDE948BB /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; - 3C17742D257D507754D61F1204093BDF /* IQKeyboardCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardCore-prefix.pch"; sourceTree = ""; }; - 3C43E7E8AE8076F10073A2614223F8CE /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; - 3C71C50FC2190EF102A817A4FFE9E3B3 /* BeWithin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeWithin.swift; path = Sources/Nimble/Matchers/BeWithin.swift; sourceTree = ""; }; + 3B85D4D2A37FA5B427857CDF7DE0C356 /* FirebaseInstallations-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseInstallations-Info.plist"; sourceTree = ""; }; + 3C04865CFD01F89FBBABA7275A2A7AFA /* FirebaseAnalytics-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "FirebaseAnalytics-xcframeworks.sh"; sourceTree = ""; }; + 3C720A34C11B645F17B554825FB8C54C /* IQKeyboardManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Debug.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/Debug/IQKeyboardManager+Debug.swift"; sourceTree = ""; }; + 3D1B346805890BCF6AC4E96655693FCC /* JSONView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JSONView.modulemap; sourceTree = ""; }; 3D1BB9353EDDE03C354A5641DD350250 /* Pods-TVOSExampleAppUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TVOSExampleAppUITests-dummy.m"; sourceTree = ""; }; - 3D67110306C259553B2030463A722129 /* ResourceBundle-IQTextView-IQTextView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQTextView-IQTextView-Info.plist"; sourceTree = ""; }; - 3D7DB26A9E5C503DCCD3FFEA39056562 /* UIViewController+ParentContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+ParentContainer.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIViewController+ParentContainer.swift"; sourceTree = ""; }; + 3D63F62472A8C43656BA08C00F303457 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; 3D84D917232543120C0F6F4EEA4E1BA0 /* SPConsentManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPConsentManager.swift; path = ConsentViewController/Classes/SPConsentManager.swift; sourceTree = ""; }; - 3DC4F636E9D26D381B69C0D0A17DFA24 /* IQKeyboardResignHandler+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardResignHandler+Internal.swift"; path = "IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler+Internal.swift"; sourceTree = ""; }; - 3E3D41C45D858EB2DA46CB6B47944F41 /* IQKeyboardResignHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardResignHandler.swift; path = IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler.swift; sourceTree = ""; }; + 3D861833DDD7FD6648C4077FAB6A45AD /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkLoggerProtocol.h; sourceTree = ""; }; + 3DC4E9EF6EB31ED585E5F26358A9AB74 /* WHBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHBundle.swift; path = Sources/Subclasses/WHBundle.swift; sourceTree = ""; }; + 3E2B729B4FD4E54F4503424700745941 /* FIRTimestamp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTimestamp.m; path = FirebaseCore/Sources/FIRTimestamp.m; sourceTree = ""; }; 3E61BABB7274D17637E09D5A58A03EFB /* ErrorMetricsRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ErrorMetricsRequest.swift; sourceTree = ""; }; - 3E6AF75BEF80C8B35D142920BD1597F4 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; 3E88639B1919779EA4D947458F865C3F /* Pods-Tests-AuthExampleUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Tests-AuthExampleUITests"; path = Pods_Tests_AuthExampleUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 3EA718FEBF563149B47AABD80345B5A8 /* mach_excServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mach_excServer.h; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h; sourceTree = ""; }; - 3EFD280852B3A28B8D9AF6B52AA8EADD /* SuiteHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SuiteHooks.swift; path = Sources/Quick/Hooks/SuiteHooks.swift; sourceTree = ""; }; - 3F002CCEFD50B47751B8C051FF7E20A1 /* IQKeyboardManager+Appearance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Appearance.swift"; path = "IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance.swift"; sourceTree = ""; }; - 3F22DC1D88529006BCFD403725F2939F /* HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsPayload.swift; sourceTree = ""; }; + 3EC6888F5775C185C1CDDABBBDBBA30D /* PollAwait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PollAwait.swift; path = Sources/Nimble/Utils/PollAwait.swift; sourceTree = ""; }; 3F238BB22C5201CE689CAF2F766AED95 /* PromisesObjC-FBLPromises_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "PromisesObjC-FBLPromises_Privacy"; path = FBLPromises_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 3F4D889F499A01F669282D6F42B9ED88 /* IQTextInputViewInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputViewInfo.swift; path = IQTextInputViewNotification/Classes/IQTextInputViewInfo.swift; sourceTree = ""; }; - 3F62DFC81C7CDCD81738806E305F2141 /* IQTextView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQTextView-Info.plist"; sourceTree = ""; }; - 3FD71E83EF45F68DE3E4C88FD59CE157 /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; + 3F9C078C5139CC0543A765E2FF230C90 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; + 405145A208D170668343E2B587091B94 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Public/GoogleUtilities/GULReachabilityChecker.h; sourceTree = ""; }; 408D31239F9070332AFEAD914F96DFFF /* Pods-Examples-AuthExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-AuthExample.debug.xcconfig"; sourceTree = ""; }; 40902E1C1B82C32A82C26838C74E00BD /* Pods-Tests-ObjC-ExampleAppUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-ObjC-ExampleAppUITests.release.xcconfig"; sourceTree = ""; }; - 4104BDBB05CFB43939A47DFF3886F9AE /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardReturnManager/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 41AD1366DE5E6E6352C5EF924A0D9359 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; 41AF835CF9F5E221DEABDA6B8F4653CF /* SPPreferencesConsent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPPreferencesConsent.swift; sourceTree = ""; }; + 41BAC8F250BD7588F95DD766836F4A64 /* FirebaseInstallations.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.debug.xcconfig; sourceTree = ""; }; + 41D24BF5A5CF5980FC9E5A5AAB880EA9 /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; + 4204D4D8DE29AC6CFE2054942CA4F4F7 /* GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleUtilities-Info.plist"; sourceTree = ""; }; + 42309A7D3A62F66FC79D91D12F041257 /* JSONCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSONCell.swift; path = Sources/JSONView/JSONCell.swift; sourceTree = ""; }; 4261DEFFFD9A94613A8785C9274D9CFB /* SPGDPRPartnersViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPGDPRPartnersViewController.xib; sourceTree = ""; }; + 4265AA8465B4B7BE72ED42FB5ECE3E61 /* JSONTreeView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSONTreeView.swift; path = Sources/JSONView/JSONTreeView.swift; sourceTree = ""; }; + 426F5B92361AD6E50C2720924378BBBD /* NSURLSessionConfiguration+Wormholy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLSessionConfiguration+Wormholy.m"; path = "Sources/Objc/NSURLSessionConfiguration+Wormholy.m"; sourceTree = ""; }; 42B542E34AECF235CB07BFF55CE23673 /* QueryParamEncodableProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = QueryParamEncodableProtocol.swift; sourceTree = ""; }; 42DDA6EA4552D7101BA8815109178F18 /* Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig"; sourceTree = ""; }; + 43244700C4FEBF5415C1C05108E62092 /* Polling+AsyncAwait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Polling+AsyncAwait.swift"; path = "Sources/Nimble/Polling+AsyncAwait.swift"; sourceTree = ""; }; 4343EC7089D74DDC80E6AFD2047A3942 /* Pods-Tests-NativeMessageExampleUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-NativeMessageExampleUITests-acknowledgements.markdown"; sourceTree = ""; }; - 43495BDE101EC35941087F1BF79C5FE1 /* IQKeyboardNotification.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardNotification.debug.xcconfig; sourceTree = ""; }; 437B791FEDC5C4B595D6D29500E11197 /* JSONView */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = JSONView; path = JSONView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 43EAE0D413F9625D75E608495B1CD93E /* BodyDetailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BodyDetailViewController.swift; path = Sources/UI/BodyDetailViewController.swift; sourceTree = ""; }; 4424C873A8239E14D307C7649C328BDF /* Pods-Examples-SourcePointMetaApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-SourcePointMetaApp-dummy.m"; sourceTree = ""; }; - 4463D53FFAE7FC5181B6344DE4693AA5 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+IQKeyboardManagerExtensionObjc.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtensionObjc.swift"; sourceTree = ""; }; - 44C01843EB2DBD02D63167074C601F6A /* Expectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expectation.swift; path = Sources/Nimble/Expectation.swift; sourceTree = ""; }; + 44D7A9D4428EC8819191D61354C9DDD3 /* UIView+IQKeyboardExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardExtension.swift"; path = "IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtension.swift"; sourceTree = ""; }; 44E291D18340EAC3F761346198515323 /* GoogleUtilities-GoogleUtilities_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "GoogleUtilities-GoogleUtilities_Privacy"; path = GoogleUtilities_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 44F950EA234EFAFBC506B3707D58AA60 /* IQKeyboardManager+Appearance_Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Appearance_Deprecated.swift"; path = "IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance_Deprecated.swift"; sourceTree = ""; }; + 44E39F8D18D1E7093CA122B1010CE382 /* FirebaseCoreInternal-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreInternal-dummy.m"; sourceTree = ""; }; + 45B6A9569AD616EB3333C41F956D0139 /* Nimble-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Nimble-iOS.modulemap"; sourceTree = ""; }; 45CCAA33B4BD0BAAF99B43138097D414 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.markdown"; sourceTree = ""; }; - 45F8A2CA4DE0BBA8A73E91C061AB73B2 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; 46367C53AA7BD8F5B1CD21B4DD263A0F /* Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.markdown"; sourceTree = ""; }; - 46D3E46D67E13B0FBD8CED0A0D68BF35 /* IQKeyboardCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardCore.debug.xcconfig; sourceTree = ""; }; + 46DC532A2458C8E24116BF023C0C228D /* World+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "World+DSL.swift"; path = "Sources/Quick/DSL/World+DSL.swift"; sourceTree = ""; }; + 46DECD16C4B5D1902DD9C67D4E8B0D99 /* PostNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PostNotification.swift; path = Sources/Nimble/Matchers/PostNotification.swift; sourceTree = ""; }; + 472271800CA69830B18B7832F8BF110D /* CwlPosixPreconditionTesting-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CwlPosixPreconditionTesting-Info.plist"; sourceTree = ""; }; + 4751DD6B17333E933F4633D6E698BA65 /* WHView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHView.swift; path = Sources/Subclasses/WHView.swift; sourceTree = ""; }; + 475D9F18CAAD368552304C5852F05426 /* AsyncTimerSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncTimerSequence.swift; path = Sources/Nimble/Utils/AsyncTimerSequence.swift; sourceTree = ""; }; + 477405BF4D1FBDEDBF1A82AD3DE52801 /* Nimble-iOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Nimble-iOS.release.xcconfig"; sourceTree = ""; }; 4786F1528AEAFE22B0990AE56086BF38 /* Pods-TVOSExampleAppUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TVOSExampleAppUITests-acknowledgements.markdown"; sourceTree = ""; }; - 47C23B78AF93D89C878DE99D64F3EA71 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; 47C581450CDB4A6111CB97EEE0711A8C /* FirebaseInstallations-FirebaseInstallations_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "FirebaseInstallations-FirebaseInstallations_Privacy"; path = FirebaseInstallations_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 4803177A0B10612AD80F82FA591AC858 /* IQKeyboardToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbar.swift; path = IQKeyboardToolbar/Classes/IQKeyboardToolbar.swift; sourceTree = ""; }; - 480BCA1B0DA65FE06926FA811C94717A /* IQTextInputViewNotification.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextInputViewNotification.release.xcconfig; sourceTree = ""; }; - 484F5E697B7673FCBC7DB9958AA5877E /* IQKeyboardManager+ActiveConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+ActiveConfiguration.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+ActiveConfiguration.swift"; sourceTree = ""; }; - 48539D0F1FC7D86B6DD5FAC140F12492 /* IQKeyboardManager+ToolbarManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+ToolbarManager.swift"; path = "IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManager.swift"; sourceTree = ""; }; + 48083DE72EF8FFB2C009AEF98D922690 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = FirebaseInstallations/Source/Library/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 480A6F751D5CC62587A6E70F578A7252 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainUtils.h; sourceTree = ""; }; + 4839977FE2F318D830B3611AAC7E0B07 /* ExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleGroup.swift; path = Sources/Quick/ExampleGroup.swift; sourceTree = ""; }; + 4847673071B546336221625AD9A94683 /* IQKeyboardReturnManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardReturnManager.swift; path = IQKeyboardReturnManager/Classes/IQKeyboardReturnManager.swift; sourceTree = ""; }; + 48A552628325A8E063430D78445EB2F1 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; 49550D844E07013FA3B4314D5FFDDFD2 /* Pods-Tests-SourcePointMetaAppUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-SourcePointMetaAppUITests-umbrella.h"; sourceTree = ""; }; - 49E61D955D2E5ABFF9506108E5950F15 /* HeartbeatStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatStorage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatStorage.swift; sourceTree = ""; }; - 4A243B552A2DA6F9430F4F778E742D48 /* UIView+Responders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Responders.swift"; path = "IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+Responders.swift"; sourceTree = ""; }; - 4A9305FF39B7901376A007AD1B77B75B /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/GULAppEnvironmentUtil.m; sourceTree = ""; }; - 4ACA26817716D3366E53B78915534E69 /* CwlCatchException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlCatchException.h; path = Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h; sourceTree = ""; }; + 4A6F4473374AD88703DDD7B603DCD0CF /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; 4ADDA488291A6D529F8E8EB01E2DABB9 /* Pods-Tests-ObjC-ExampleAppUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-ObjC-ExampleAppUITests.modulemap"; sourceTree = ""; }; - 4B41A0B5A8F6586597B43EDE1F19EEAC /* Nimble-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Nimble-tvOS.debug.xcconfig"; path = "../Nimble-tvOS/Nimble-tvOS.debug.xcconfig"; sourceTree = ""; }; + 4AFBE8FB5A27028CAA743C0E5513B480 /* SPMobileCore-iOS-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "SPMobileCore-iOS-xcframeworks.sh"; sourceTree = ""; }; + 4B2ED71044E7761E480E636165D8EFC6 /* IQKeyboardManager+Resign_Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Resign_Deprecated.swift"; path = "IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign_Deprecated.swift"; sourceTree = ""; }; + 4B2F037708CF295D855EFDAD564C8EB8 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; 4B52B86C338468857F2E798179EBEC53 /* Pods-Tests-SPGDPRExampleAppUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Tests-SPGDPRExampleAppUITests"; path = Pods_Tests_SPGDPRExampleAppUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 4B8AB662BAB1AB709CD6C850132123EC /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULSceneDelegateSwizzler.h; sourceTree = ""; }; - 4BBA8D9441D3920DE7B0AAE73B78FC90 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = spm_resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 4B97AD650825ED664F18595A643EDB28 /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = ""; }; 4BEAC88AF84CC484F55B8A6C048444D9 /* ConsentViewController-iOS-ConsentViewController */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "ConsentViewController-iOS-ConsentViewController"; path = ConsentViewController.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 4CC772F0B36821A5DE2CFDFC5433124B /* FirebaseAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.release.xcconfig; sourceTree = ""; }; - 4D5199EFE37C11CE3BB20702683D693F /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainStorage.h; sourceTree = ""; }; + 4C1D1AC22D8A04C1B881C008DB0F7CC7 /* DSL+Require.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+Require.swift"; path = "Sources/Nimble/DSL+Require.swift"; sourceTree = ""; }; + 4C60DC2B63ACF15C0A2D4E186A8D9450 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; + 4C8B3DAC5F77F196D806BEFA672A46F3 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/GULAppEnvironmentUtil.m; sourceTree = ""; }; + 4CF88DAEFC6154DED003F3A02E3B6AF3 /* Nimble-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-iOS-umbrella.h"; sourceTree = ""; }; + 4D134D185F0A1280D1156DE4DE30993C /* ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; sourceTree = ""; }; 4DB03FD262B678178A44272143846563 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "FirebaseCoreInternal-FirebaseCoreInternal_Privacy"; path = FirebaseCoreInternal_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 4E1A73CA05BF2ED526F076813B62F2B1 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; + 4E02A55905C0BF2681E14D8456919ADA /* WHString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHString.swift; path = Sources/Subclasses/WHString.swift; sourceTree = ""; }; + 4E0C55A5303CFB5640DC3BDA91663E33 /* JSONView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JSONView-umbrella.h"; sourceTree = ""; }; + 4E3AF0B8A81D565A7E4CFA7B9C4B5154 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; + 4E616169FBC8240945FC48D592274B4A /* RaisesException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RaisesException.swift; path = Sources/Nimble/Matchers/RaisesException.swift; sourceTree = ""; }; + 4F3051F39A3AC899C9B540C520ABD5B9 /* IQKeyboardNotification-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardNotification-umbrella.h"; sourceTree = ""; }; 4F53645178AE07E277B7D5E4578CA33A /* Pods-Tests-ObjC-ExampleAppUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-ObjC-ExampleAppUITests-resources.sh"; sourceTree = ""; }; - 4F88675335567AA4306DF59F91BBA41B /* IQKeyboardToolbar-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbar-umbrella.h"; sourceTree = ""; }; - 4FBC8B667DE1EB3009EBDEB193977149 /* RequestResponseExportOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestResponseExportOption.swift; path = Sources/Utils/RequestResponseExportOption.swift; sourceTree = ""; }; - 4FCC51096042EC71BAB17FF0EBF73527 /* IQKeyboardReturnManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardReturnManager-dummy.m"; sourceTree = ""; }; - 5065D717E200F6B2E2112224C745D14D /* Nimble-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Nimble-tvOS.release.xcconfig"; path = "../Nimble-tvOS/Nimble-tvOS.release.xcconfig"; sourceTree = ""; }; + 4F93C65D23B8F7BDEB501077294DE0F0 /* IQKeyboardToolbar-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardToolbar-dummy.m"; sourceTree = ""; }; + 50141C4DB9D565A094540C8C0AB11EFA /* ResourceBundle-Wormholy-Wormholy-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Wormholy-Wormholy-Info.plist"; sourceTree = ""; }; + 5015B13471ACDFF298E6E6397EF432D4 /* GoogleAppMeasurementIdentitySupport.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = GoogleAppMeasurementIdentitySupport.xcframework; path = Frameworks/GoogleAppMeasurementIdentitySupport.xcframework; sourceTree = ""; }; + 5074B22265EA17DA123B92F5460B22F8 /* IQKeyboardExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardExtended.swift; path = IQKeyboardCore/Classes/IQKeyboardExtended.swift; sourceTree = ""; }; 5076611C4673EEC7B845A13EEDAABDCD /* Pods-Examples-ObjC-ExampleApp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-ObjC-ExampleApp-umbrella.h"; sourceTree = ""; }; - 50998EB5CD8C12282FA3B0E79A0A2451 /* IQKeyboardManager+Resign_Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Resign_Deprecated.swift"; path = "IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign_Deprecated.swift"; sourceTree = ""; }; - 514CEEC875BFF0788879C7CDA9CC6141 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = Sources/Nimble/Utils/Errors.swift; sourceTree = ""; }; - 5169E05906D5EB1161B9E0FA9119155E /* QCKConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QCKConfiguration.swift; path = Sources/Quick/Configuration/QCKConfiguration.swift; sourceTree = ""; }; - 5204E4DD30CEF75C3A2F42A5154182C7 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; - 520CB1A9CBC9C1C36AD135B5CA65FF69 /* UIView+IQKeyboardExtensionObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardExtensionObjc.swift"; path = "IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionObjc.swift"; sourceTree = ""; }; + 50EAF75774A8D0D95B92DB43E3CDD6AE /* FIRTimestamp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestamp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRTimestamp.h; sourceTree = ""; }; + 50FB40779EF49E222850B94FF5E486A9 /* CwlCatchBadInstruction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchBadInstruction.swift; path = Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift; sourceTree = ""; }; + 51933828D8851062D12D91760880D827 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Nimble/DSL.swift; sourceTree = ""; }; + 521BC1A6E8948B3E5D58D3B8625D825E /* Quick-tvOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "Quick-tvOS-Info.plist"; path = "../Quick-tvOS/Quick-tvOS-Info.plist"; sourceTree = ""; }; 522F23E47E472ADB4AE7F2B949926F49 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 526CB7DD55C46C5D61E56736B270451E /* Pods-Examples-SourcePointMetaApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-SourcePointMetaApp.release.xcconfig"; sourceTree = ""; }; - 52ACDE1EC0344F289043D4436F43BB63 /* CwlMachBadInstructionHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlMachBadInstructionHandler.m; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m; sourceTree = ""; }; + 5336E0A0BE79D766683D1D4907760DD4 /* JSONView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "JSONView-Info.plist"; sourceTree = ""; }; 534D623ADD013C7F78FFE22047E69951 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests"; path = Pods_Tests_FirebaseTests_SourcepointFirebaseDemoTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 535E06755C3CD0BAF29EC6CCC440D468 /* ConsentViewController.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ConsentViewController.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 53C022398A396DC90A95FABAF12AA647 /* JSONTreeView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSONTreeView.swift; path = Sources/JSONView/JSONTreeView.swift; sourceTree = ""; }; - 53C5B10DE1D4174FC72E52E901116F54 /* IQKeyboardNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardNotification-Info.plist"; sourceTree = ""; }; + 5393C11706FE1D32CACED7EBDE82926B /* Nimble-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Nimble-tvOS.debug.xcconfig"; path = "../Nimble-tvOS/Nimble-tvOS.debug.xcconfig"; sourceTree = ""; }; 53E5FC8C35255A7A82860F62CB1CAD67 /* PrivacyManagerViewData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PrivacyManagerViewData.swift; sourceTree = ""; }; - 540ADF228732435E9244ACC0B4F6D359 /* IQKeyboardManager+Resign.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Resign.swift"; path = "IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign.swift"; sourceTree = ""; }; + 53F00746A713E8D3E29D36852B7F2A61 /* IQPlaceholderable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPlaceholderable.swift; path = IQKeyboardToolbar/Placeholderable/IQPlaceholderable.swift; sourceTree = ""; }; 544D049FDBD11D7D2116C49CE621A93D /* SPLocalStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPLocalStorage.swift; sourceTree = ""; }; - 5523DD25E528AF35556AAC138CD44C29 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardToolbar/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 546A5C96B214B4119CD401BBE32E8356 /* GoogleAppMeasurement.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.debug.xcconfig; sourceTree = ""; }; + 547430F6B989F18B64D86FFC4646F10D /* Quick.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Quick.h; path = Sources/QuickObjectiveC/Quick.h; sourceTree = ""; }; + 54A470A44EDE551DA0AFA256D2C5D4FF /* HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatController.swift; sourceTree = ""; }; + 54D129B0FF00E96ADA5E985D90AEB12D /* NimbleTimeInterval.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleTimeInterval.swift; path = Sources/Nimble/Utils/NimbleTimeInterval.swift; sourceTree = ""; }; + 554E73FAC9498CC927F625583063183E /* ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist"; sourceTree = ""; }; 55908634686A3DF6ECCEE78419BBA7A9 /* Pods-Examples-ConsentViewController_Example */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Examples-ConsentViewController_Example"; path = Pods_Examples_ConsentViewController_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 55D2BE0375A9AF892350A380EF538C31 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - 562D0CACFCF25598BC00151E0F8B8E94 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainUtils.h; sourceTree = ""; }; + 561022AEBBB35FACDF6EF8E49CE29A97 /* CwlPosixPreconditionTesting-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CwlPosixPreconditionTesting-dummy.m"; sourceTree = ""; }; + 5632689C6FB84E1275F7312AAC7B9057 /* SatisfyAnyOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAnyOf.swift; path = Sources/Nimble/Matchers/SatisfyAnyOf.swift; sourceTree = ""; }; + 565B305791378E3B5B9A4BC25591AFD5 /* CwlCatchExceptionSupport-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlCatchExceptionSupport-prefix.pch"; sourceTree = ""; }; 566DC6D20B0F5F351EB9C44333DFC8B7 /* Pods-Tests-SourcePointMetaAppUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-SourcePointMetaAppUITests-resources.sh"; sourceTree = ""; }; - 56C00C5AFA9653E3DB0ED0C4B458F869 /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; - 5720017BA09B4934FF19D9518B636B7B /* QuickSpecBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpecBase.m; path = Sources/QuickObjCRuntime/QuickSpecBase.m; sourceTree = ""; }; - 57434CC18B0FC331E66F37CD7439689F /* FIRTimestampInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestampInternal.h; path = FirebaseCore/Sources/FIRTimestampInternal.h; sourceTree = ""; }; - 5773DC71CA4EB2DAC5CB4BDEBD23ED11 /* NMBStringify.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBStringify.m; path = Sources/NimbleObjectiveC/NMBStringify.m; sourceTree = ""; }; + 56E21CE4558584557CD31CE1F28B1AC1 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Storage.swift; sourceTree = ""; }; 57C8639AECBE3039B06E1D4F4950AF83 /* Pods-TVOSExampleAppUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TVOSExampleAppUITests-Info.plist"; sourceTree = ""; }; - 57DC3140C36FB7024E08B43ABD2A4DC8 /* UIView+IQKeyboardExtensionDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardExtensionDeprecated.swift"; path = "IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionDeprecated.swift"; sourceTree = ""; }; - 57F483D85BBE4233312771F58F5D4644 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; + 57F011CBC15D2E26EA44927B4C29E325 /* FirebaseCoreInternal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.release.xcconfig; sourceTree = ""; }; 57F6A38A715E840F139F01FC9CDAA272 /* Pods-TVOSExampleAppUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-TVOSExampleAppUITests.modulemap"; sourceTree = ""; }; - 5867E5094DC63DF9536C0CD4F951F7D3 /* Stringers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stringers.swift; path = Sources/Nimble/Utils/Stringers.swift; sourceTree = ""; }; - 588B99A79FB7A8ABC897E13AF05011E2 /* Nimble-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Nimble-iOS-dummy.m"; sourceTree = ""; }; - 58B65CEF73ABE0FE8DD6B942CC4B50D6 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 58D79CB8A59DDB3B0C1DF4F79342D9C2 /* IQKeyboardManagerSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.debug.xcconfig; sourceTree = ""; }; - 59061C73E42331C834ECD764DEB9F965 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+ToolbarManagerDeprecated.swift"; path = "IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManagerDeprecated.swift"; sourceTree = ""; }; - 596C241CA6CD5617D4F89E445D7009A0 /* AllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllPass.swift; path = Sources/Nimble/Matchers/AllPass.swift; sourceTree = ""; }; + 588242DA939C771DAED4F4CAD87ADD5D /* IQKeyboardCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardCore-dummy.m"; sourceTree = ""; }; + 58C9FAAE4EC65C106EE35B0F9CB1D07F /* BeLessThanOrEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThanOrEqual.swift; path = Sources/Nimble/Matchers/BeLessThanOrEqual.swift; sourceTree = ""; }; + 58E0351200843A0258ABD52F8867F39C /* CwlMachBadInstructionHandler.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlMachBadInstructionHandler.debug.xcconfig; sourceTree = ""; }; + 59C79470037DDC297119D5F6E19B71ED /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; + 5A317EFAAAB1C79D69C0D7B97455B293 /* Nimble-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-iOS-prefix.pch"; sourceTree = ""; }; 5A441555053329B1FD92D1D576E2E73C /* Pods-Tests-ObjC-ExampleAppUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-ObjC-ExampleAppUITests-Info.plist"; sourceTree = ""; }; - 5A550D199A537903278DAC967EB2606A /* QuickConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickConfiguration.swift; path = Sources/Quick/Configuration/QuickConfiguration.swift; sourceTree = ""; }; - 5A93CD8BA97E5CA384BA7A292A321F61 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardCore/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 5A89F671C269C20114AD5CEEF81E691E /* IQKeyboardManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Internal.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Internal.swift"; sourceTree = ""; }; 5A95B9C8BA2A4CE41E994F89F6DD5A5B /* Pods-Examples-ConsentViewController_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-ConsentViewController_Example-resources.sh"; sourceTree = ""; }; 5AA271D4DC66755169C7CC3499EB4EF8 /* SPGDPRCategoryDetailsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGDPRCategoryDetailsViewController.swift; sourceTree = ""; }; - 5B05A0A41C358E0B8CC0104BD173FC5D /* IQTextView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextView.debug.xcconfig; sourceTree = ""; }; 5B4EE46F7F6CD84E907D32A3E394405B /* ConsentStatus.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConsentStatus.swift; sourceTree = ""; }; 5BBD1E205379B81F63953505E8DB604D /* Pods-TVOSExampleApp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-TVOSExampleApp.modulemap"; sourceTree = ""; }; - 5BEF956C5CBABFCC690419ECC0D09D4C /* CwlMachBadInstructionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlMachBadInstructionHandler.h; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h; sourceTree = ""; }; 5BF731E1A10A5B0E656AC139B62F8213 /* SPGPPConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPGPPConfig.swift; path = ConsentViewController/Classes/SPGPPConfig.swift; sourceTree = ""; }; + 5C6E0A6079652131BBD0DBAEEAC0EFAA /* ContainElementSatisfying.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContainElementSatisfying.swift; path = Sources/Nimble/Matchers/ContainElementSatisfying.swift; sourceTree = ""; }; 5C96D65BC5F38F7BD3C64D787B14CAC7 /* Pods-Examples-ConsentViewController_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-ConsentViewController_Example-Info.plist"; sourceTree = ""; }; 5CA7BC50BD57C2265DA3CD531E6B596A /* Pods-TVOSExampleApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TVOSExampleApp.debug.xcconfig"; sourceTree = ""; }; - 5CB7CE12D1222FBB9C42CB11E3A99D0B /* Nimble-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-iOS-prefix.pch"; sourceTree = ""; }; - 5CCBCF03C26FC39270899F1AF1C0E84A /* FirebaseAnalytics-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "FirebaseAnalytics-xcframeworks.sh"; sourceTree = ""; }; - 5CD376FA9A92CB6FBB60F76160395E7A /* UITableView+IndexPaths.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITableView+IndexPaths.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UITableView+IndexPaths.swift"; sourceTree = ""; }; 5CE996234BE50E6434DA4D63813370B8 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.plist"; sourceTree = ""; }; 5D31896522ED33BA384049E391718EA8 /* Pods-Examples-AuthExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-AuthExample.release.xcconfig"; sourceTree = ""; }; - 5D4B1A9F978F3F86AC794C5AA19FACF8 /* BeResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeResult.swift; path = Sources/Nimble/Matchers/BeResult.swift; sourceTree = ""; }; - 5D5034667161921051C4631985D60CA2 /* ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; sourceTree = ""; }; 5D52CD7197ACC1E43E8550270796A4CE /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m"; sourceTree = ""; }; - 5DBBC8EB45CF6569D76E1334BD431BD0 /* Wormholy-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Wormholy-dummy.m"; sourceTree = ""; }; 5DC2E71595175144336387BD6D2DE6BD /* ConsentViewController-tvOS */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "ConsentViewController-tvOS"; path = ConsentViewController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 5EA81568F79ADF433E8D60D5FAB28B30 /* BeLogical.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLogical.swift; path = Sources/Nimble/Matchers/BeLogical.swift; sourceTree = ""; }; - 5EF994FE247663F4A82F3ED97A8181E6 /* Quick-tvOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Quick-tvOS-dummy.m"; path = "../Quick-tvOS/Quick-tvOS-dummy.m"; sourceTree = ""; }; - 5F050048877FAA2DB8B643B9D31809C8 /* IQDeepResponderContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQDeepResponderContainerView.swift; path = IQKeyboardToolbarManager/Classes/IQDeepResponderContainerView.swift; sourceTree = ""; }; + 5E08F59C00ADC343B643B1AE5B682C34 /* IQKeyboardManager+Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Deprecated.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/Deprecated/IQKeyboardManager+Deprecated.swift"; sourceTree = ""; }; + 5E0FDE098C322191908278E338777DB8 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = Sources/Nimble/Utils/Errors.swift; sourceTree = ""; }; + 5EC13EE03CEE8CE6A374E6B796A5FC24 /* CwlPosixPreconditionTesting-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlPosixPreconditionTesting-umbrella.h"; sourceTree = ""; }; 5F0BAEF807330D071BABE9BE7ADD3BE3 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.release.xcconfig"; sourceTree = ""; }; - 5F4AF39D463478F827761CD328A3818D /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; - 5F5989A6C63822773F0A0766286C3B16 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 5FB8FC6C10C2A9A093B9917308EBDFA5 /* HaveCount.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HaveCount.swift; path = Sources/Nimble/Matchers/HaveCount.swift; sourceTree = ""; }; - 600E89064ED7EA878CD1793C8FB49FB7 /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; - 6026BBFDA885D05E41752F0F5903AECF /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 609504ADB18D0DE57FC0374DBDE7B928 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 60A59C6AE13CE8CC40FA60CF07119384 /* Nimble-tvOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "Nimble-tvOS.modulemap"; path = "../Nimble-tvOS/Nimble-tvOS.modulemap"; sourceTree = ""; }; + 5FF007DE16FC76B92D2B471ADE891BED /* AsyncBehavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncBehavior.swift; path = Sources/Quick/Async/AsyncBehavior.swift; sourceTree = ""; }; + 6048C9C73410A27C6B4FEACDFD819DF9 /* Heartbeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Heartbeat.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Heartbeat.swift; sourceTree = ""; }; + 60A70F335EE93EADD5D96E8BA805610B /* CwlPosixPreconditionTesting.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlPosixPreconditionTesting.release.xcconfig; sourceTree = ""; }; + 611A4150162221DA6ED1C214A3384D0B /* Postman.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Postman.swift; path = Sources/Models/Postman/Postman.swift; sourceTree = ""; }; + 61660CEC35D64BE67CB8E7393659FE56 /* ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist"; sourceTree = ""; }; 617D70F6D92E44183B59218BA5F565AB /* SPWebViewExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPWebViewExtensions.swift; sourceTree = ""; }; - 61EBA6411B378215A7B76D04C5DD598E /* ThrowError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowError.swift; path = Sources/Nimble/Matchers/ThrowError.swift; sourceTree = ""; }; - 61ED9016651F94994CC2AEA9AEFF876E /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 621330E260760ED099CCF53609EF7C50 /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = ""; }; 624334D7BEEF45679E6500B48CAF4E27 /* SharedNativeToCoreAdapters.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SharedNativeToCoreAdapters.swift; sourceTree = ""; }; - 6353A96B06297E1695D5C0F25332E082 /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = ""; }; - 63F91F45369096A820F02644183B5D6B /* ActionableTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ActionableTableViewCell.swift; path = Sources/UI/Cells/ActionableTableViewCell.swift; sourceTree = ""; }; - 6438E403454D93A16C68CE2EEAAB43C8 /* IQKeyboardToolbarManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Debug.swift"; path = "IQKeyboardToolbarManager/Classes/Debug/IQKeyboardToolbarManager+Debug.swift"; sourceTree = ""; }; - 644F5501865BFF333DD135D1AF2BB036 /* ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; sourceTree = ""; }; + 627553C3D560EA9D715BD1548B0CF3D7 /* ExampleMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleMetadata.swift; path = Sources/Quick/Examples/ExampleMetadata.swift; sourceTree = ""; }; + 62965629485AC3CF2814EC22328196BD /* FIRInstallationsBackoffController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsBackoffController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.m; sourceTree = ""; }; + 629C5CA2DE65A4802EEBB04934FE67CE /* AsyncWorld.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncWorld.swift; path = Sources/Quick/Async/AsyncWorld.swift; sourceTree = ""; }; + 62E9A3917CEA0826634BC756095B0CED /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; + 63A5CD371E3230565E30896165B49380 /* TextTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextTableViewCell.swift; path = Sources/UI/Cells/TextTableViewCell.swift; sourceTree = ""; }; + 6418E555DA5A4E396C2E2745514B6FAA /* FirebaseCoreInternal.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreInternal.modulemap; sourceTree = ""; }; 648DE500AC655E43506E8FFC34CB1A68 /* Pods-Examples-ObjC-ExampleApp-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-ObjC-ExampleApp-Info.plist"; sourceTree = ""; }; - 64B64F867C17E1AA06D73224AAB76E2D /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; + 64C1435AAFD0344CE9E34B6CFFB7E446 /* IQKeyboardCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardCore.debug.xcconfig; sourceTree = ""; }; 64D94984CD5EFE5B89EF3B4A04CE304D /* SPSDK.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPSDK.swift; path = ConsentViewController/Classes/SPSDK.swift; sourceTree = ""; }; - 6502BE34EBE67206A8A933EA20AE5C18 /* IQKeyboardToolbar.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbar.debug.xcconfig; sourceTree = ""; }; 6526F67316636BAA3D3F8C518F0864BF /* Pods-Tests-SourcePointMetaAppUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-SourcePointMetaAppUITests-dummy.m"; sourceTree = ""; }; 65AFDEE129A9DAC6CBD132DB5E56FEFC /* ConsentViewController-tvOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "ConsentViewController-tvOS-Info.plist"; path = "../ConsentViewController-tvOS/ConsentViewController-tvOS-Info.plist"; sourceTree = ""; }; - 65C452608D9849630DCDB7A7D31C4ADD /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallations.h; sourceTree = ""; }; 663B58787E8E424813FCC0E36111F619 /* SPNativeUI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPNativeUI.swift; sourceTree = ""; }; - 669C36C9D006E74794BD40EFDCA193C2 /* RequestModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModel.swift; path = Sources/Models/RequestModel.swift; sourceTree = ""; }; + 6692BE461FE698493D4679C8B5A06CCD /* ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist"; sourceTree = ""; }; 670261981CE4CA4F02735BAF553CF466 /* SPAppleTVButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPAppleTVButton.swift; sourceTree = ""; }; + 6715E66DF7F9EDC350EE746E15E38141 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; 6751AA628C9101CE0A38B998514B0423 /* Pods-Tests-ConsentViewController_ExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-ConsentViewController_ExampleTests.release.xcconfig"; sourceTree = ""; }; 675870E9375216C86665B8B9D31444DE /* SPCampaignType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPCampaignType.swift; path = ConsentViewController/Classes/SPCampaignType.swift; sourceTree = ""; }; + 676E1BBA57754C7536CA90B5739F2021 /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; + 67957B9E77D349FDBA49CD741DA313D2 /* Stringers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stringers.swift; path = Sources/Nimble/Utils/Stringers.swift; sourceTree = ""; }; 67D9BC63BA17B76B1576E38C7A1D0B96 /* Pods-Tests-AuthExampleUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-AuthExampleUITests-resources.sh"; sourceTree = ""; }; - 67DE25D188109BC94B5A2EF8C20CA070 /* BeIdenticalTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeIdenticalTo.swift; path = Sources/Nimble/Matchers/BeIdenticalTo.swift; sourceTree = ""; }; - 68909044419BDFB4B2869748A4C422AC /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; - 689D7E3D33EE1251215987B4F8DDD31C /* ActionableTableViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = ActionableTableViewCell.xib; path = Sources/UI/Cells/ActionableTableViewCell.xib; sourceTree = ""; }; - 68C785ED323E67BF289970E122380EEC /* BeginWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWith.swift; path = Sources/Nimble/Matchers/BeginWith.swift; sourceTree = ""; }; + 684D5E952D1884720316846DA0045368 /* UIView+ResignObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+ResignObjc.swift"; path = "IQKeyboardManagerSwift/Resign/UIKItExtensions/UIView+ResignObjc.swift"; sourceTree = ""; }; + 685A59C0FA2ECA35D010228012DE7F0B /* IQKeyboardToolbarManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardToolbarManager.modulemap; sourceTree = ""; }; + 68AD33968E37713F30DBAD66C6AD3933 /* Nimble-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Nimble-iOS-dummy.m"; sourceTree = ""; }; + 68D160079C28255B1CFB259E7055E78C /* StorageFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StorageFactory.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/StorageFactory.swift; sourceTree = ""; }; 68F9CE8B1DE4A57B713F219E82E214CA /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-resources.sh"; sourceTree = ""; }; 68FEC242A1E4E6AB8B33B184FC6149E6 /* Pods-Examples-NativeMessageExample.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-NativeMessageExample.modulemap"; sourceTree = ""; }; - 691147EC323A13E5ADFBE451288ECDF2 /* QCKDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QCKDSL.h; path = Sources/QuickObjectiveC/DSL/QCKDSL.h; sourceTree = ""; }; - 6911B7591ECB29F3A6A88E53A135920C /* WormholyMethodSwizzling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = WormholyMethodSwizzling.m; path = Sources/Objc/WormholyMethodSwizzling.m; sourceTree = ""; }; - 69F83A4309A08B5CE4FE64D97C59A7F8 /* CwlDarwinDefinitions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlDarwinDefinitions.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift; sourceTree = ""; }; + 68FEF837542AF3581D997EC32A409228 /* GoogleUtilities.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleUtilities.modulemap; sourceTree = ""; }; + 69211393A493FE597E264D3C509449FE /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; + 6950705DDFFFB2F3B1FE714BEF549C3C /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; + 6958407BC993A53D89D27E4AA038B74E /* AtomicBox.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AtomicBox.swift; path = FirebaseCore/Internal/Sources/Utilities/AtomicBox.swift; sourceTree = ""; }; + 698B6323D03AD253DEAE782E65E107E7 /* QuickSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpec.m; path = Sources/QuickObjectiveC/QuickSpec.m; sourceTree = ""; }; + 69A957A19A6ADF826C4DD252DA689504 /* CwlCatchException-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CwlCatchException-Info.plist"; sourceTree = ""; }; 6A8FF7C49AB2123F35AED9B5F16C56DC /* ConsentViewController-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "ConsentViewController-iOS.modulemap"; sourceTree = ""; }; - 6AAFE2F05B99D2226D91C97507CA47B9 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQTextInputViewNotification/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 6AF12426E4EBBD9E1FDCCCB1D791C2B2 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLoggerLevel.h; sourceTree = ""; }; 6AF75DCA5052B0584C35163F08BE31E6 /* GDPRPMPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GDPRPMPayload.swift; sourceTree = ""; }; - 6B3240D98DC2763C0FBE6B506C6FE0D6 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRConfiguration.h; sourceTree = ""; }; - 6BE64A96010FE14E29FFFDAC660DB001 /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; - 6C4E2DD9FDFAC41D1A54798902B278E3 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; + 6AF8199B31DC2D2E5AE8824F52F6D311 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = FirebaseCore/Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 6B9ACFD5AA593AE2F9E646FAD249CCAA /* IQKeyboardManager+Appearance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Appearance.swift"; path = "IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance.swift"; sourceTree = ""; }; + 6BEE253B425B0AFC6BE08AEB7A374D86 /* Wormholy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Wormholy.h; path = Sources/Wormholy.h; sourceTree = ""; }; + 6C1F4501D14ACE8C725D24BAED9BA31E /* QCKConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QCKConfiguration.swift; path = Sources/Quick/Configuration/QCKConfiguration.swift; sourceTree = ""; }; 6C5861E19176ED390054CBED3842109B /* ConsentViewController-iOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "ConsentViewController-iOS.debug.xcconfig"; sourceTree = ""; }; - 6C90E53C95F545A4FA43574D9C510314 /* ResourceBundle-Wormholy-Wormholy-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Wormholy-Wormholy-Info.plist"; sourceTree = ""; }; - 6CD569AC6FE64AB701ED68AA2D98F144 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; - 6D0D7B0EFDC5D4BB79FFBA738840F9C2 /* SPMobileCore.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = SPMobileCore.xcframework; sourceTree = ""; }; + 6CAEFCC3380710EA276C557B6B0F987F /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FirebaseInstallations.h; sourceTree = ""; }; + 6CDEEE3D45A46E2F48CEEAC14CC08D22 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLogger.h; sourceTree = ""; }; + 6D48730791EE2DDBFAF504114702BBC1 /* SourceLocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SourceLocation.swift; path = Sources/Nimble/Utils/SourceLocation.swift; sourceTree = ""; }; + 6D63C3BE8B1B77C639E6C8E1329CF3FC /* GoogleAppMeasurement.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = GoogleAppMeasurement.xcframework; path = Frameworks/GoogleAppMeasurement.xcframework; sourceTree = ""; }; 6E031F91F1F99C88F5C25D358A8C2080 /* Pods-Tests-AuthExampleUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-AuthExampleUITests.release.xcconfig"; sourceTree = ""; }; - 6E4A6DA47772750E5EFEBE629AD86924 /* Wormholy.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Wormholy.modulemap; sourceTree = ""; }; 6E67FC0C023FEEE646E022609D24DEC6 /* SPPublisherData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPPublisherData.swift; sourceTree = ""; }; 6E897F35E5E27028AC58B14B552FBC8D /* IQKeyboardCore-IQKeyboardCore */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardCore-IQKeyboardCore"; path = IQKeyboardCore.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 6EDD57EFE9FBA0B26CF75D4E1FDFE042 /* FirebaseInstallations.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseInstallations.modulemap; sourceTree = ""; }; 6F422DC5A22E73E41CE4F61FA75179E0 /* SPGDPRManagePreferenceViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGDPRManagePreferenceViewController.swift; sourceTree = ""; }; + 6F603B49005B06B768E07C75B6EA395B /* IQKeyboardReturnManager.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardReturnManager.debug.xcconfig; sourceTree = ""; }; 6F85113A0AACDC00A440D14420910AE6 /* SPError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPError.swift; path = ConsentViewController/Classes/SPError.swift; sourceTree = ""; }; + 6F964FBA416ED6D27F11DAAA6C0D730B /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkMessageCode.h; sourceTree = ""; }; + 6FB1C98E910F1E6D0DACA28CF05FA08E /* IQKeyboardManagerSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-umbrella.h"; sourceTree = ""; }; 6FD841BE77E2D4BDDC8DF77D283B1FCB /* Constants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constants.swift; path = ConsentViewController/Classes/Constants.swift; sourceTree = ""; }; + 7006A5366815E0D1A1AC0BC96AF85400 /* AllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllPass.swift; path = Sources/Nimble/Matchers/AllPass.swift; sourceTree = ""; }; + 70098D87239066D9714D0F0671BF1C98 /* IQKeyboardManager+Resign.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Resign.swift"; path = "IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign.swift"; sourceTree = ""; }; 70206F4AE991E4A6C241291B45B51CDA /* Pods-Examples-ObjC-ExampleApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-ObjC-ExampleApp-dummy.m"; sourceTree = ""; }; + 7074851D2482EE864C5FB2FAEB4F10E7 /* CwlMachBadInstructionHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlMachBadInstructionHandler-prefix.pch"; sourceTree = ""; }; 70AAF1737DA93EA12FCC90DF925BEB8B /* Pods-Tests-ObjC-ExampleAppUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-ObjC-ExampleAppUITests-umbrella.h"; sourceTree = ""; }; 70AE9BBBC6911F97C45CEC0AF6EB449C /* Pods-Examples-ConsentViewController_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-ConsentViewController_Example.modulemap"; sourceTree = ""; }; - 70DB089D17A3FB29EF97D79E2DD93541 /* WHCollectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHCollectionView.swift; path = Sources/Subclasses/WHCollectionView.swift; sourceTree = ""; }; - 70E324B25E38F94390F9EB0ED4437F07 /* HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatController.swift; sourceTree = ""; }; - 716F890AC934E8B8A9807B8279BB24EB /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; - 71849E329BE263D85B52CB004AD51AB5 /* DSL+Wait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+Wait.swift"; path = "Sources/Nimble/DSL+Wait.swift"; sourceTree = ""; }; - 7198B01CB9F09112A66C8A74CB059832 /* IQTextInputViewNotification-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextInputViewNotification-umbrella.h"; sourceTree = ""; }; - 7223E42D6E884EE0870AE6C92B365C07 /* DSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DSL.m; path = Sources/NimbleObjectiveC/DSL.m; sourceTree = ""; }; + 70C802EB30B4D174902F64BFEDF4B881 /* JSONView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSONView.swift; path = Sources/JSONView/JSONView.swift; sourceTree = ""; }; + 70D58BFE0C7816707CA6F1007755392E /* IQKeyboardManagerSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-prefix.pch"; sourceTree = ""; }; + 7161B5DCDFE49231562B55DAA6066E11 /* IQTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextView.swift; path = IQTextView/Classes/IQTextView.swift; sourceTree = ""; }; + 72A3F91679C52A3A821136E6505DD539 /* NMBExceptionCapture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBExceptionCapture.h; path = Sources/NimbleObjectiveC/include/NMBExceptionCapture.h; sourceTree = ""; }; + 72C7BE65FE543570C043A81113E9833F /* IQKeyboardManagerSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.release.xcconfig; sourceTree = ""; }; + 72C7F44C43C5690DC0B883678B1A6DCB /* URL+FileName.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+FileName.swift"; path = "Sources/Quick/URL+FileName.swift"; sourceTree = ""; }; + 72D4405C2F944B049C66D49781005AD6 /* FirebaseCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCore-umbrella.h"; sourceTree = ""; }; 72E1118582C658FBC578564882E082E5 /* Pods-Tests-SourcePointMetaAppUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-SourcePointMetaAppUITests-acknowledgements.plist"; sourceTree = ""; }; - 72F7B1A41381D75BB30E177799B242FF /* JSONView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JSONView.modulemap; sourceTree = ""; }; 7348485AC968CAF19EC5A3C6A4D7C8AB /* Pods-Examples-ConsentViewController_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-ConsentViewController_Example-acknowledgements.markdown"; sourceTree = ""; }; - 7364CC3ADEFFFB9BA84ADD46F9D5F845 /* Nimble-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Nimble-iOS.modulemap"; sourceTree = ""; }; - 73C4FD7131B5B3F930C9A406DD9EE984 /* Predicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Predicate.swift; path = Sources/Nimble/Matchers/Predicate.swift; sourceTree = ""; }; + 739151E711190C1BE5B2133E10E9289C /* ResourceBundle-IQTextView-IQTextView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQTextView-IQTextView-Info.plist"; sourceTree = ""; }; + 73B841F3C3994F9FB5964CFADC739D15 /* BeEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeEmpty.swift; path = Sources/Nimble/Matchers/BeEmpty.swift; sourceTree = ""; }; 73F566CFB5F21F61AC2FA68F08AA0B2D /* Quick-tvOS */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Quick-tvOS"; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 740097A017371498ADAAA1D0AB5B7F1C /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; + 7408933D9B881924358ABEB56C6EB596 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 7442995C363F851C85FE64B3A4B00C1B /* IQTextView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextView-umbrella.h"; sourceTree = ""; }; 7450C79D8367028E8750FBD28FFB9EFF /* Pods-Tests-SPGDPRExampleAppUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-SPGDPRExampleAppUITests-resources.sh"; sourceTree = ""; }; 74CF2D6A2D0D5DB2BD259BCCF764887B /* LongButtonViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = LongButtonViewCell.xib; sourceTree = ""; }; 752106479E76D0DD3449754C03EAB9D5 /* Pods-Tests-SPGDPRExampleAppUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-SPGDPRExampleAppUITests.modulemap"; sourceTree = ""; }; - 752EF78D58BDF725929F2BA05E41072A /* WHBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHBundle.swift; path = Sources/Subclasses/WHBundle.swift; sourceTree = ""; }; - 755B7B0C36656BD783592B3D323840D7 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/Public/GoogleUtilities/GULNSData+zlib.h"; sourceTree = ""; }; - 7573518237677C0E6B57D981941036A6 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; + 754BEF92020F4A1FC09E103BB777106A /* QuickConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickConfiguration.m; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.m; sourceTree = ""; }; 759D3EA383B901D142D2FC3A8CB640DB /* Pods-Tests-SPGDPRExampleAppUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-SPGDPRExampleAppUITests-umbrella.h"; sourceTree = ""; }; - 7645796C13F9EDC0C400E92890E1303E /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; + 75C4888BF100C27C1D9364F923E8C519 /* CwlPreconditionTesting.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlPreconditionTesting.debug.xcconfig; sourceTree = ""; }; + 76384906EF776A77A37571DC6C520E41 /* IQActiveConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQActiveConfiguration.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQActiveConfiguration.swift; sourceTree = ""; }; 7659A6B7A2DCBEF9F67EF52B4C3237C0 /* Pods-Examples-ConsentViewController_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-ConsentViewController_Example.release.xcconfig"; sourceTree = ""; }; - 7686E23E1C29D554CF19D7C268256313 /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; - 76F97034C54D02EE77BF2B63FF319CF5 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; + 76A72D913A71A255191CC97A5B9D6B00 /* ResourceBundle-nanopb_Privacy-nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; sourceTree = ""; }; + 76CC76A46ED220FD18DEEF5E13F03F04 /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; + 76CDC09AC51552BBFCCE41349F1AB612 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainStorage.h; sourceTree = ""; }; + 7707BD7F05AEAD109DFAD1DC98CC9229 /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; 774A94659F0BAD34ABD2D60D339BB3CB /* Pods-Examples-SourcepointFirebaseDemo-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-SourcepointFirebaseDemo-acknowledgements.markdown"; sourceTree = ""; }; 77A72569939F05DD3E89F62FC4D9A0B5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 783226561A7F87FA30356BBFDA0B9DD5 /* IQTextInputViewNotification.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQTextInputViewNotification.modulemap; sourceTree = ""; }; - 78355AD7C1277E5D6D83E643D66A66A2 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardNotification/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 787A4178773C15B48FEB129B04DC6C05 /* NimbleEnvironment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleEnvironment.swift; path = Sources/Nimble/Adapters/NimbleEnvironment.swift; sourceTree = ""; }; - 789D46DB4A82EC56170A8FDABA1B1146 /* Nimble-iOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Nimble-iOS.debug.xcconfig"; sourceTree = ""; }; - 789D6CE53772597578AFD80063B3F720 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRVersion.h; sourceTree = ""; }; + 77C1460EBE5ED2EA5DA2743DF370336D /* Negation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Negation.swift; path = Sources/Nimble/Matchers/Negation.swift; sourceTree = ""; }; + 784E78149BB92433D5D2BB064AEB14AF /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; + 78BB1E0EE2F9E90FAB93CF0A968AFF8D /* ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist"; sourceTree = ""; }; 78C3F3C49789002B4A6B013FBF3C4F02 /* Pods-Examples-SourcePointMetaApp-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-SourcePointMetaApp-resources.sh"; sourceTree = ""; }; - 7941E29EA7E328B36CAFF35CE9737F57 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; - 795CEEAE5E337F0243E5E46D031A5ABD /* Wormholy.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Wormholy.release.xcconfig; sourceTree = ""; }; - 7960E0467DEC0FCFC299333FD6EFA93D /* FirebaseCoreInternal-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-prefix.pch"; sourceTree = ""; }; - 79E9CD313DBBC45BDCEEDDA54A3F96C3 /* IQKeyboardToolbar-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardToolbar-dummy.m"; sourceTree = ""; }; - 7A818A7F3E976711317763E3478D2E8F /* WHDate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHDate.swift; path = Sources/Subclasses/WHDate.swift; sourceTree = ""; }; + 78C9F0EE3838CBA627CC3583703B9766 /* CwlPreconditionTesting-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CwlPreconditionTesting-Info.plist"; sourceTree = ""; }; + 790698D1907D96D40B94366B158B24F3 /* IQDeepResponderContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQDeepResponderContainerView.swift; path = IQKeyboardToolbarManager/Classes/IQDeepResponderContainerView.swift; sourceTree = ""; }; + 79613E4C842C69EAE38E095B7F90BD86 /* CwlMachBadInstructionHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlMachBadInstructionHandler.m; path = Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m; sourceTree = ""; }; + 79B5DEFDD954FFD119B8D63652978BD1 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; + 79E7601A02651FAC7415EEBCB49C9F6B /* UIView+IQKeyboardExtensionObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardExtensionObjc.swift"; path = "IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionObjc.swift"; sourceTree = ""; }; + 7A022E1234424683435C80940388BE00 /* IQInvocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQInvocation.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQInvocation.swift; sourceTree = ""; }; + 7A031FC6E352E7051CA493D7D23896D3 /* WHTableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHTableView.swift; path = Sources/Subclasses/WHTableView.swift; sourceTree = ""; }; 7A8BEA359194E182211C25C9D398656E /* ResourceBundle-ConsentViewController-ConsentViewController-iOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-ConsentViewController-ConsentViewController-iOS-Info.plist"; sourceTree = ""; }; + 7AD5CBFF2CC535A21DC6948EDCDBE89C /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; + 7ADDC9DE53F9B7E1A134155B9342EECE /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; + 7B08161A2B63C49591A4C21B2AEC49EC /* World.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = World.swift; path = Sources/Quick/World.swift; sourceTree = ""; }; + 7B173ED8DF89128C483E3884E1F880C4 /* FirebaseAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.debug.xcconfig; sourceTree = ""; }; 7B39D983F41A2F4973CCFC6C189B8AD3 /* Pods-TVOSExampleAppUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TVOSExampleAppUITests.debug.xcconfig"; sourceTree = ""; }; - 7B6514C19FDD5F03CDD4331DD6B07B7F /* HeartbeatLoggingTestUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatLoggingTestUtils.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatLoggingTestUtils.swift; sourceTree = ""; }; - 7B7AB33041C6A6989A361F97925C4362 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Storage.swift; sourceTree = ""; }; - 7BB570BDC710C985A4C05D43737FAD91 /* Quick-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-iOS-prefix.pch"; sourceTree = ""; }; 7BC310208D21A2EB2923EBEE54FCADA2 /* GDPRPrivacyManagerViewResponse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GDPRPrivacyManagerViewResponse.swift; sourceTree = ""; }; - 7BD776E0D688EFE6C5C2D7CA1A9592FA /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 7C09DB1B121D90616EDE2AF921680F72 /* IQKeyboardManagerSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardManagerSwift.modulemap; sourceTree = ""; }; - 7C29ACACD74E8D1E41E969C7B1E1CA02 /* IQKeyboardToolbarManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardToolbarManager-dummy.m"; sourceTree = ""; }; - 7C85826F64D9EEF4F42854F06E733277 /* CwlCatchBadInstruction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchBadInstruction.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift; sourceTree = ""; }; + 7BFD36A5C928AC017F56C1D85904E4BA /* MatchError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatchError.swift; path = Sources/Nimble/Matchers/MatchError.swift; sourceTree = ""; }; + 7C776DCB2265A3C66F6F085B02E6B99C /* HeartbeatStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatStorage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatStorage.swift; sourceTree = ""; }; 7C86F91CE1DB8CBB4F20B3FB5198EF7B /* SPCCPAManagePreferenceViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPCCPAManagePreferenceViewController.swift; sourceTree = ""; }; 7CA189AE1D392490F0D8DE7E8A2DA829 /* Pods-TVOSExampleAppUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TVOSExampleAppUITests-resources.sh"; sourceTree = ""; }; - 7CAA96145FA19BE9F9B58715D0DDEF2A /* UIView+Hierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Hierarchy.swift"; path = "IQKeyboardCore/Classes/UIKitExtensions/UIView+Hierarchy.swift"; sourceTree = ""; }; - 7CC5D8F2943EB6445527FDCD29A3B03E /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; - 7CDDBDDF4BA670964E102E1B5D01DFAC /* IQKeyboardReturnManager+UITextFieldDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardReturnManager+UITextFieldDelegate.swift"; path = "IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextFieldDelegate.swift"; sourceTree = ""; }; 7CDDC03D1A80206740DFE90B0356D8FC /* SPURLExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPURLExtensions.swift; sourceTree = ""; }; - 7D20A86F9923F3B4F4EF7F65A37EE188 /* FirebaseInstallations-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseInstallations-Info.plist"; sourceTree = ""; }; - 7D755C57BF1B04B906F74F106928665C /* Equal+Tuple.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Equal+Tuple.swift"; path = "Sources/Nimble/Matchers/Equal+Tuple.swift"; sourceTree = ""; }; - 7D9D4FA8841747C3BBEB9C372D353A2F /* IQKeyboardReturnManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardReturnManager-prefix.pch"; sourceTree = ""; }; - 7D9EC2C8F5E9B4BB7A7B1FE5BA59C862 /* PostNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PostNotification.swift; path = Sources/Nimble/Matchers/PostNotification.swift; sourceTree = ""; }; - 7DD5BF03A856CEE8C17F065C890D40DB /* RequestCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestCell.swift; path = Sources/UI/Cells/RequestCell.swift; sourceTree = ""; }; + 7D4924F4ABCA937EF78C6D630F046064 /* EndWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndWith.swift; path = Sources/Nimble/Matchers/EndWith.swift; sourceTree = ""; }; + 7D7548FA0CA956034ED94D367E83596F /* IQKeyboardToolbarManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbarManager-prefix.pch"; sourceTree = ""; }; + 7D9F63656FB06F22F2595187B0848068 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; + 7DB9104337224F469F02FE1CFA054D8E /* CustomActivity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomActivity.swift; path = Sources/Subclasses/CustomActivity.swift; sourceTree = ""; }; 7E051A6FB6BB8CE52354DC9EFBC6BD82 /* Pods-Examples-AuthExample-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-AuthExample-Info.plist"; sourceTree = ""; }; - 7E2C304FDF4D67400566CBBA2B787D8F /* InputStream+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "InputStream+Utils.swift"; path = "Sources/Utils/InputStream+Utils.swift"; sourceTree = ""; }; 7E3030523C1A187A0F7FB9046B6FD01B /* Pods-Tests-ObjC-ExampleAppUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-ObjC-ExampleAppUITests.debug.xcconfig"; sourceTree = ""; }; - 7E4CB67CE83A4AEF9D33F91EF906307F /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; - 7E533FF1F65553BEA49075A45649FAD8 /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; - 7E74712D68110A81C9A9DD9E3724485E /* WHNavigationController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHNavigationController.swift; path = Sources/Subclasses/WHNavigationController.swift; sourceTree = ""; }; - 7E914A02A61226BF6A57CACD1F5CBC1F /* UIView+IQKeyboardManagerExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardManagerExtension.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtension.swift"; sourceTree = ""; }; - 7ED00E3C96B3FAD3DC6932CC3099A5F8 /* SPMobileCore-iOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "SPMobileCore-iOS.release.xcconfig"; sourceTree = ""; }; - 7EE8A4725B42B23A5DD16230DC835583 /* GoogleUtilities-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-umbrella.h"; sourceTree = ""; }; - 7F54E77D2923C355006C920F1E69265E /* IQKeyboardManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Debug.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/Debug/IQKeyboardManager+Debug.swift"; sourceTree = ""; }; + 7F434422B10709D0CAFE05DFAECA3FCD /* ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; sourceTree = ""; }; 7F83F0546C6C0F7184FE189E8F4A06CF /* SPPropertyName.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPPropertyName.swift; path = ConsentViewController/Classes/SPPropertyName.swift; sourceTree = ""; }; - 7FB250AAAF8B838B4EF4268BC3F8F27D /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; + 7FEA1A4EC31069946A09F155DF282C30 /* UIView+Responders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Responders.swift"; path = "IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+Responders.swift"; sourceTree = ""; }; 8000FCB5CE094901411B7A87080562DE /* Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.plist"; sourceTree = ""; }; 8009AFA883EF36EED39CC47F36FE7E69 /* Pods-Examples-AuthExample */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Examples-AuthExample"; path = Pods_Examples_AuthExample.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 80A40EDA3AF0499BDBCFF09467BB49AD /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardToolbarManager-IQKeyboardToolbarManager"; path = IQKeyboardToolbarManager.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 80E40A389B86B65FE5FF320C7A0935C9 /* IQKeyboardToolbarManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbarManager-umbrella.h"; sourceTree = ""; }; - 810EC0A6205889C5FBA7F83237740652 /* DispatchTimeInterval.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DispatchTimeInterval.swift; path = Sources/Nimble/Utils/DispatchTimeInterval.swift; sourceTree = ""; }; + 80A9DB66AE8726E0CB5FC058EDC77670 /* QuickSpecBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpecBase.h; path = Sources/QuickObjCRuntime/include/QuickSpecBase.h; sourceTree = ""; }; + 80FD0F0830832A49BBFE269D8A0848E1 /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; 811DBEF851FD2262E20E4FD6A0478DFF /* Pods-Tests-SourcePointMetaAppUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-SourcePointMetaAppUITests-Info.plist"; sourceTree = ""; }; - 815EB9734D8C27D82374EA956EDBDFE3 /* Quick-tvOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Quick-tvOS-umbrella.h"; path = "../Quick-tvOS/Quick-tvOS-umbrella.h"; sourceTree = ""; }; - 81BFFA641B95BE38C19318F8E183047F /* FileHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FileHandler.swift; path = Sources/Utils/FileHandler.swift; sourceTree = ""; }; - 824147763C330FDDFEAAC82D913F54CA /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = FirebaseCore/Internal/Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 824D785E2FCB028E721F59A8235D6248 /* Quick-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Quick-iOS-dummy.m"; sourceTree = ""; }; - 832B74665654C4B5E99237148F3F448A /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; - 837B53131083EBA0554467C21F9DEE1A /* IQKeyboardToolbarManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardToolbarManager.modulemap; sourceTree = ""; }; - 83A454F910096BAA82CA9DAD4F3EF633 /* JSONView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JSONView-prefix.pch"; sourceTree = ""; }; - 83B391AF7ECED0ECDC24C47FC3894AE3 /* UIView+Parent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Parent.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+Parent.swift"; sourceTree = ""; }; - 83B67AB87D972834A26CDEF7FEA9769D /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; + 81333C8E5279606026C2964759B6A72B /* FIRFirebaseUserAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFirebaseUserAgent.m; path = FirebaseCore/Sources/FIRFirebaseUserAgent.m; sourceTree = ""; }; + 8193AC37D693F05389BC7EE7817E74E2 /* QuickTestSuite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestSuite.swift; path = Sources/Quick/QuickTestSuite.swift; sourceTree = ""; }; + 81B2DCD6F80D84C042CB7FA5F1C8FBCE /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; + 81DFF5B09AFDDA41E61A9BC5AEDDC6FD /* ToSucceed.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToSucceed.swift; path = Sources/Nimble/Matchers/ToSucceed.swift; sourceTree = ""; }; + 82C724D20EAC54F77E63A4B052CF0253 /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; + 8308C54DE95C976F10FACAADA52D2C28 /* JSONView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JSONView.release.xcconfig; sourceTree = ""; }; + 833828B6DA0C15775334C4481526CC58 /* Match.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Match.swift; path = Sources/Nimble/Matchers/Match.swift; sourceTree = ""; }; + 83BDC41EE48D14B7FE0F66177BCDDC49 /* IQKeyboardNotification-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardNotification-prefix.pch"; sourceTree = ""; }; + 83D9F90000E5510FE177292A21D0DB03 /* utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = utils.swift; path = Sources/NimbleSharedTestHelpers/utils.swift; sourceTree = ""; }; 842A76598292AC07650477A7975DFA3C /* LongButtonViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LongButtonViewCell.swift; sourceTree = ""; }; 847044E56CBBCE1235A6F3CEF3F9F607 /* IQTextView-IQTextView */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQTextView-IQTextView"; path = IQTextView.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 85792222AF4C55C9A1B6FD66910B247F /* IQTextView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQTextView.modulemap; sourceTree = ""; }; - 859CEF6FAAE11636D81A3943E0FED6DB /* QuickSelectedTestSuiteBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickSelectedTestSuiteBuilder.swift; path = Sources/Quick/QuickSelectedTestSuiteBuilder.swift; sourceTree = ""; }; - 85B42C336123B93CE8962DC3EF0235F1 /* Nimble.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Nimble.h; path = Sources/Nimble/Nimble.h; sourceTree = ""; }; - 85E12153EE52F152E3D862AA4FD5751B /* ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist"; sourceTree = ""; }; - 8647BFEF78AB24889CB26C8410420CB6 /* XCTestSuite+QuickTestSuiteBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestSuite+QuickTestSuiteBuilder.m"; path = "Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m"; sourceTree = ""; }; - 868CC676B3D618DEDB916F87996644E3 /* BeginWithPrefix.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWithPrefix.swift; path = Sources/Nimble/Matchers/BeginWithPrefix.swift; sourceTree = ""; }; + 84B95C43D7B6F56248AD75135BE05088 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; + 8551B96649DC518FEB10BEB47FFC4585 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; + 85DCA40AD37456BE4FA02979143B558D /* CwlMachBadInstructionHandler-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlMachBadInstructionHandler-umbrella.h"; sourceTree = ""; }; + 8689BBFFCE916282306018B8C16C73A4 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; 86CDA7941153CD6098183D28A6424BF8 /* Pods-Examples-AuthExample-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-AuthExample-resources.sh"; sourceTree = ""; }; - 86E3D9F4D548E348E5B82B9F6210815C /* IQKeyboardManager+Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Deprecated.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/Deprecated/IQKeyboardManager+Deprecated.swift"; sourceTree = ""; }; - 8706834DA071DFC86595867D0981238E /* WHView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHView.swift; path = Sources/Subclasses/WHView.swift; sourceTree = ""; }; 87295588035B548CD735B7461612EFE9 /* Barcode.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = Barcode.png; sourceTree = ""; }; - 877511B4B35606AC2C50B9852F202BB3 /* IQKeyboardReturnManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardReturnManager.swift; path = IQKeyboardReturnManager/Classes/IQKeyboardReturnManager.swift; sourceTree = ""; }; - 877CB4CF0203E2819D8718E42FA72530 /* SwiftLint.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftLint.debug.xcconfig; sourceTree = ""; }; - 8782270ED9BF84A059FC3D44E70B6806 /* SPMobileCore-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "SPMobileCore-tvOS.debug.xcconfig"; path = "../SPMobileCore-tvOS/SPMobileCore-tvOS.debug.xcconfig"; sourceTree = ""; }; - 879733801FA819F19A10A2B0586DE8F7 /* IQKeyboardManagerSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardManagerSwift-dummy.m"; sourceTree = ""; }; 87AEFA2EAE4004039B9687ACD673B4AC /* SPGDPRConsent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGDPRConsent.swift; sourceTree = ""; }; - 880BC78F4E9E665E279300D955AB03E0 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/FBLPromises/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 87D5ABE9F3D08E0E9D3B6E428A17FA0B /* NMBExceptionCapture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBExceptionCapture.m; path = Sources/NimbleObjectiveC/NMBExceptionCapture.m; sourceTree = ""; }; 885466C2B2B8F648EFA1950A9EB8426C /* Pods-Examples-ObjC-ExampleApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-ObjC-ExampleApp.debug.xcconfig"; sourceTree = ""; }; 886B70550F3C22CC20F9B77783E267E6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 88B34E34B95E41D7F55A200BA5BDF0FC /* IQInvocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQInvocation.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQInvocation.swift; sourceTree = ""; }; - 88D45DC70925BF740F59B93AED3D881C /* IQKeyboardManagerSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.release.xcconfig; sourceTree = ""; }; - 88DA477CC472B6C4297FD3E3512B8C55 /* IQTextInputViewInfoModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputViewInfoModel.swift; path = IQKeyboardReturnManager/Classes/IQTextInputViewInfoModel.swift; sourceTree = ""; }; - 89A886FC7EB0309BC0B6EF4FD2377D61 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; - 8AD3A4D450A2888AED931AF0FCDD38BA /* CwlCatchException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchException.swift; path = Carthage/Checkouts/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift; sourceTree = ""; }; - 8AE4C7BD118D39AB28E75376F597730A /* GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleUtilities-Info.plist"; sourceTree = ""; }; + 88E5A68E490D25730B9530B224AC6B05 /* CwlCatchException.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlCatchException.release.xcconfig; sourceTree = ""; }; + 8900858EF8CA1647169B147D2791DF67 /* RequestDetailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestDetailViewController.swift; path = Sources/UI/RequestDetailViewController.swift; sourceTree = ""; }; + 8A5A90AC4FB990424A1D8841F30954D2 /* _ObjC_HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatsPayload.swift; sourceTree = ""; }; + 8A82B370762440F79B82E09400A57C80 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardToolbar/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 8AB47EF0B0C5748A52E14C8D16EB9DDC /* FIRHeartbeatLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatLogger.m; path = FirebaseCore/Sources/FIRHeartbeatLogger.m; sourceTree = ""; }; 8B1C4DA30BEAE3606FF4DCEFDA3729DD /* SPUserData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPUserData.swift; sourceTree = ""; }; - 8B550482A95BDE817167B35E62795013 /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; + 8B53BBE2A0D25B5C8D58832F4D0ACE1F /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQTextInputViewNotification/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 8B7EBFADDF04A200048C6D59F2E2C1CE /* FirebaseCoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCoreInternal-Info.plist"; sourceTree = ""; }; 8BABD3D93658A6438AE39E7CA356B0EE /* Pods-Examples-NativeMessageExample-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-NativeMessageExample-umbrella.h"; sourceTree = ""; }; 8BB937B1C0DFFCF92F41861C2BC54DDA /* FirebaseCore-FirebaseCore_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "FirebaseCore-FirebaseCore_Privacy"; path = FirebaseCore_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 8BC7AF51FA2F0826802F6A36F319AEAE /* images */ = {isa = PBXFileReference; includeInIndex = 1; name = images; path = ConsentViewController/Assets/images; sourceTree = ""; }; - 8C299B4D455A7FA34EA7FB05606CCF53 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; - 8C5A44B76A3D4D82D166B3640F49C77A /* Equal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Equal.swift; path = Sources/Nimble/Matchers/Equal.swift; sourceTree = ""; }; - 8D46C818C030BFE569445ED1813B2BC6 /* GoogleAppMeasurementIdentitySupport.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = GoogleAppMeasurementIdentitySupport.xcframework; path = Frameworks/GoogleAppMeasurementIdentitySupport.xcframework; sourceTree = ""; }; 8D8069D3964814114ACEC3084C010B59 /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardManagerSwift-IQKeyboardManagerSwift"; path = IQKeyboardManagerSwift.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 8D9FE6BE7D01AFF37E1F76BF3302ED01 /* Contain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Contain.swift; path = Sources/Nimble/Matchers/Contain.swift; sourceTree = ""; }; + 8DE645F2294DF573039679935A89494B /* IQKeyboardToolbarPlaceholderConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarPlaceholderConfiguration.swift; path = IQKeyboardToolbar/Classes/Placeholder/IQKeyboardToolbarPlaceholderConfiguration.swift; sourceTree = ""; }; + 8DE8448FA1AE310E2375710837E256E9 /* NMBExpectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBExpectation.swift; path = Sources/Nimble/Adapters/NMBExpectation.swift; sourceTree = ""; }; + 8DF68AC15D83B3F9C35B8D2D5F9E42DC /* IQKeyboardCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardCore-Info.plist"; sourceTree = ""; }; + 8E74DCAC75D8463E2BFEEDA549A0D38F /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; 8F1B2B1E2EA16E8AA8C6A4E3DB461D04 /* Pods-Tests-NativeMessageExampleUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-NativeMessageExampleUITests.debug.xcconfig"; sourceTree = ""; }; 8F409AB3D85FB173A94C05F8560AEF6E /* Pods-Tests-AuthExampleUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-AuthExampleUITests-umbrella.h"; sourceTree = ""; }; - 8F50E71508CD580057F9C19374CC8111 /* QuickObjCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickObjCRuntime.h; path = Sources/QuickObjCRuntime/include/QuickObjCRuntime.h; sourceTree = ""; }; + 8F6021C9C3B57896D77C989E22147F4F /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; + 8F94E40F9C47186B9C90B58C1FDA12EC /* Nimble-tvOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Nimble-tvOS-dummy.m"; path = "../Nimble-tvOS/Nimble-tvOS-dummy.m"; sourceTree = ""; }; + 8F9BD032C6101EBB566A7C72079A9F6E /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; + 8FA4E06192FBBD2D464EEB4AB46FCC50 /* ShareUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShareUtils.swift; path = Sources/Utils/ShareUtils.swift; sourceTree = ""; }; 8FAD4B2C2A4A9820171E0345B3BFF0D7 /* Pods-TVOSExampleAppUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-TVOSExampleAppUITests"; path = Pods_TVOSExampleAppUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 8FC918F341DB9D68F0ACF5F5297B7D0A /* ExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleHooks.swift; path = Sources/Quick/Hooks/ExampleHooks.swift; sourceTree = ""; }; - 901A3A8C529AD64155E3B230DC8D2744 /* NMBExpectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBExpectation.swift; path = Sources/Nimble/Adapters/NMBExpectation.swift; sourceTree = ""; }; - 907E846CE0F2573B140312B3DF059B67 /* BeEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeEmpty.swift; path = Sources/Nimble/Matchers/BeEmpty.swift; sourceTree = ""; }; 9095E935D84E98CD0E8475F29BAA5986 /* SharedCoreToNativeAdapters.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SharedCoreToNativeAdapters.swift; sourceTree = ""; }; + 9098FE4D7D58067AE284C8C5FFAC0C68 /* HeartbeatsBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsBundle.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsBundle.swift; sourceTree = ""; }; + 90C4D664CCFC0EC8EB09816FA8633A75 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; 90CBB291D51BE436C8303AF5FF6B0F14 /* ConsentViewController-tvOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "ConsentViewController-tvOS.modulemap"; path = "../ConsentViewController-tvOS/ConsentViewController-tvOS.modulemap"; sourceTree = ""; }; - 90DD458E406FD58AA5EB15548DFB31B2 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULApplication.h; sourceTree = ""; }; 90E690FB1B8426FF22064D899B790E77 /* SPCustomViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPCustomViewController.swift; sourceTree = ""; }; 912335C07E49ADE52F19D561EF6DA3CA /* SPPrivacyPolicyViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPPrivacyPolicyViewController.xib; sourceTree = ""; }; - 914BF96E58D852EE5D60009D93D77EB5 /* Behavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Behavior.swift; path = Sources/Quick/Behavior.swift; sourceTree = ""; }; + 91621E1BA3A89BE74D1E7D017C175F49 /* IQKeyboardToolbarManager.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbarManager.debug.xcconfig; sourceTree = ""; }; 91856F66BE2DECF62F1F9EE807018C94 /* Pods-Examples-AuthExample-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-AuthExample-acknowledgements.markdown"; sourceTree = ""; }; 91D62181605594F9BA432C86AB828AD0 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-resources.sh"; sourceTree = ""; }; + 91F1F5EFD9F5B257BA971B8237B0B65E /* GoogleAppMeasurement-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleAppMeasurement-xcframeworks.sh"; sourceTree = ""; }; + 9203BA4D6A6B272DBF889E011390B373 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; 921BD04D1137665DAA00C54FD7449ED3 /* Pods-Examples-NativeMessageExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-NativeMessageExample.release.xcconfig"; sourceTree = ""; }; - 9240B10CFAEBE33B71A1FB4B8CAA5F5F /* JSONView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JSONView.debug.xcconfig; sourceTree = ""; }; 925CB3BA618E0430E3F897CD1C1595AC /* Pods-Tests-ConsentViewController_ExampleTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-ConsentViewController_ExampleTests-Info.plist"; sourceTree = ""; }; - 92786E34D85D7C471450C99E8222A6B4 /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; - 929615183E968B3F423B820ECED8845C /* GoogleAppMeasurement.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.release.xcconfig; sourceTree = ""; }; - 92A9405999E5F99B1E1CC157A521928B /* Wormholy-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Wormholy-umbrella.h"; sourceTree = ""; }; - 92E4F96A08E513B2922ACE89FF98D93A /* RingBuffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RingBuffer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/RingBuffer.swift; sourceTree = ""; }; - 934913155FE9FC08620A127174CFC884 /* IQKeyboardConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardConstants.swift; path = IQKeyboardCore/Classes/Constants/IQKeyboardConstants.swift; sourceTree = ""; }; - 937C3ACC0DFFCF10D54CC18EF3712285 /* IQKeyboardToolbarManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbarManager-prefix.pch"; sourceTree = ""; }; - 93FFB2E36AC453C2DA82459E83652350 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardManagerSwift/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 942981443809EDD401F81BC6B79B05F5 /* FirebaseInstallations.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.release.xcconfig; sourceTree = ""; }; + 935EEF5E16FC6B7B0B0977DB05AE930A /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; 945767455B6DDF8DBEAADC2013CD7C86 /* Pods-Tests-SourcePointMetaAppUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Tests-SourcePointMetaAppUITests"; path = Pods_Tests_SourcePointMetaAppUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 946D9B91981FF3562F0B248C01EF193C /* SPNativeMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPNativeMessage.swift; path = ConsentViewController/Classes/SPNativeMessage.swift; sourceTree = ""; }; + 9486C1AFBFBCE9306650338B9FBFB1AD /* JSONView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JSONView-dummy.m"; sourceTree = ""; }; 94888D4B141708E955BD94A3E24F2560 /* Pods-TVOSExampleApp-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TVOSExampleApp-acknowledgements.plist"; sourceTree = ""; }; + 94A7D22137E1C496D0F85A3CEB620587 /* nanopb.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = nanopb.modulemap; sourceTree = ""; }; 94DDA13C746BD0D22B7AB71BBC8B1281 /* ConsentViewController-iOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ConsentViewController-iOS-Info.plist"; sourceTree = ""; }; 9526B810DA94A28F937F48E17CC1F5C9 /* Pods-Tests-NativeMessageExampleUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-NativeMessageExampleUITests-Info.plist"; sourceTree = ""; }; - 955FFB48FD9B3F9F9A49D8FF08579556 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; + 9576D8FB03AEE9AC0CBDD7F29B35CAA8 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; + 957ECFCEB95A78EED2F84236B2271846 /* BeIdenticalTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeIdenticalTo.swift; path = Sources/Nimble/Matchers/BeIdenticalTo.swift; sourceTree = ""; }; + 9596493F419E94FDD1890E1D05FB9DE8 /* IQKeyboardToolbar-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbar-prefix.pch"; sourceTree = ""; }; 95BACE7612A4E8F4F0567A9AA60CA729 /* Pods-Examples-SourcepointFirebaseDemo.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-SourcepointFirebaseDemo.modulemap"; sourceTree = ""; }; - 95C03B989707B41DE52073D2BF149DCA /* Flow.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Flow.storyboard; path = Sources/UI/Flow.storyboard; sourceTree = ""; }; 95CE5BA6845C27259E5E75FF90D770CF /* SPCCPACategoryDetailsViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPCCPACategoryDetailsViewController.xib; sourceTree = ""; }; + 95F0052081268DFDBE4A0120A806FDDD /* AsyncDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncDSL.swift; path = Sources/Quick/DSL/AsyncDSL.swift; sourceTree = ""; }; 96046321F1D0A6B8DB94CFC1A02E4839 /* SPPrivacyManagerRequestResponse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPPrivacyManagerRequestResponse.swift; sourceTree = ""; }; - 963ED2BA244025028B39FAA5FF4685D1 /* ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist"; sourceTree = ""; }; - 966EA30EE46F7616473774CAC3C25E7B /* Quick-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Quick-tvOS.release.xcconfig"; path = "../Quick-tvOS/Quick-tvOS.release.xcconfig"; sourceTree = ""; }; - 967CAFFF493C6FEC1965C15C0DB132C5 /* IQTextView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextView.release.xcconfig; sourceTree = ""; }; - 977388C1D2919ECAEA6852A831913198 /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; - 979094166C07B4928759772A0019F6B8 /* SPMobileCore-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "SPMobileCore-tvOS.release.xcconfig"; path = "../SPMobileCore-tvOS/SPMobileCore-tvOS.release.xcconfig"; sourceTree = ""; }; + 969DDE8AF1547A69AC2FA725B6F5CDB2 /* IQKeyboardToolbarManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardToolbarManager-Info.plist"; sourceTree = ""; }; + 969FE37988516D4F7FCD8175873C3FD7 /* Quick-tvOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Quick-tvOS-umbrella.h"; path = "../Quick-tvOS/Quick-tvOS-umbrella.h"; sourceTree = ""; }; + 96BEBF5B770103D49A6779BB3F23B618 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardCore/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 9710C155F41476AE899A9061EAEEA7E2 /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; + 979E2831984CEF3CD1981DFB1DAFFB79 /* IQKeyboardManagerSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardManagerSwift-Info.plist"; sourceTree = ""; }; + 97C08F366011ABF5B61B5D428C2A32B0 /* QuickSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpec.h; path = Sources/QuickObjectiveC/QuickSpec.h; sourceTree = ""; }; + 983369F50E07F986B7B75FE69228C2EC /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; 983BDF8D0A591D54CB03F4ACB6E58CDA /* Pods-Examples-SourcePointMetaApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-SourcePointMetaApp.debug.xcconfig"; sourceTree = ""; }; - 9884E32738BA4639A674388FB13803E7 /* AssertionRecorder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionRecorder.swift; path = Sources/Nimble/Adapters/AssertionRecorder.swift; sourceTree = ""; }; - 98D6EE0D7EF53CE7E8EA55AFABA9C287 /* IQBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItem.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItem.swift; sourceTree = ""; }; + 9854D1AA61EDBCC8C7F3C964FA9AC3FD /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; + 985E2F8DBB92E8FF07EB736106587CA2 /* FirebaseCoreInternal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.debug.xcconfig; sourceTree = ""; }; + 98F6695DEAC1D13CB0C1ADEFC4FBCE58 /* IsAppEncrypted.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IsAppEncrypted.m; path = third_party/IsAppEncrypted/IsAppEncrypted.m; sourceTree = ""; }; 994E32106A3E483B71224175EE751364 /* Pods-Tests-NativeMessageExampleUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-NativeMessageExampleUITests.release.xcconfig"; sourceTree = ""; }; - 997D2B0154C946E71B9C8D06F6CFA0F8 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 99BE6D7C2ABC9332D2FEDB1DA14CFD80 /* Nimble-tvOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Nimble-tvOS-dummy.m"; path = "../Nimble-tvOS/Nimble-tvOS-dummy.m"; sourceTree = ""; }; + 998AE9A12896605E4272EBD27415F0DF /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRVersion.h; sourceTree = ""; }; + 99E2520C737AC3324E6D8537F4FE3F34 /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; 9A0027FF1D4610D3184663A739F457A0 /* Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.markdown"; sourceTree = ""; }; + 9A357AC195864E56D2592C1979BBAF05 /* UIView+RespondersObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+RespondersObjc.swift"; path = "IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+RespondersObjc.swift"; sourceTree = ""; }; 9A393314456FFB3E06800F9CD1A915F3 /* Pods-Examples-NativeMessageExample-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-NativeMessageExample-dummy.m"; sourceTree = ""; }; - 9AD0D93A856F4F1E09591FE8E9E109DC /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; - 9B6595610EBED427CA9A17FD63904EF6 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkLoggerProtocol.h; sourceTree = ""; }; + 9A627BAB9445B7F348964DCEC0316670 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + 9AB91992ADD70EED081100015CB5338E /* SwiftLint.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftLint.debug.xcconfig; sourceTree = ""; }; + 9AE3C37AC143AA6187DAA70513DB82D2 /* IQRootControllerConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQRootControllerConfiguration.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQRootControllerConfiguration.swift; sourceTree = ""; }; + 9B9096FD1A4F1C96E2829FA42428F04D /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; 9BA34AE937DE44415845F1FA58BA63A1 /* Pods-Examples-SourcepointFirebaseDemo-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-SourcepointFirebaseDemo-resources.sh"; sourceTree = ""; }; 9BAC764B51BFC1BC76D06BE75E333536 /* ResourceBundle-ConsentViewController-ConsentViewController-tvOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "ResourceBundle-ConsentViewController-ConsentViewController-tvOS-Info.plist"; path = "../ConsentViewController-tvOS/ResourceBundle-ConsentViewController-ConsentViewController-tvOS-Info.plist"; sourceTree = ""; }; 9BC1FB1939BFE5F15D153AAC7FEF4A83 /* SPMessageUIDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPMessageUIDelegate.swift; path = ConsentViewController/Classes/SPMessageUIDelegate.swift; sourceTree = ""; }; 9BEC03026DF74168D976AE6F80B66B17 /* SPPMHeader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPPMHeader.swift; sourceTree = ""; }; - 9C1CF97D6E2D910E716566E0E6577558 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = GoogleUtilities/Privacy/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 9C3E3CB761383A5F33EA2941AC616F6F /* IQKeyboardManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Internal.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Internal.swift"; sourceTree = ""; }; - 9C4502AF490D6892982195E8C8A7F53B /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; 9C5C917A9D7FC2BFF33532D4FA9D3EBE /* Pods-Examples-SourcepointFirebaseDemo-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-SourcepointFirebaseDemo-Info.plist"; sourceTree = ""; }; - 9C81DD2F22C774AC3D4CE877C34EFD02 /* ExpectationMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpectationMessage.swift; path = Sources/Nimble/ExpectationMessage.swift; sourceTree = ""; }; - 9CCFFA270204C150B82CA14265C8B8A1 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLogger.h; sourceTree = ""; }; - 9D0092EBA17005E4C5E8DFB84F9C8151 /* IQKeyboardAppearanceManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardAppearanceManager+Internal.swift"; path = "IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager+Internal.swift"; sourceTree = ""; }; + 9C74BF65952CA34C7E7E7CE246246DDE /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; + 9CF9B3750AC996B188363CC4B0C54DD7 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULAppDelegateSwizzler.h; sourceTree = ""; }; + 9D7DE976823DEE57DFC868F29DF873AF /* IQKeyboardToolbarManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbarManager-umbrella.h"; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9DC58EDA4573836B36C15FE9D20DA773 /* OSLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OSLogger.swift; path = ConsentViewController/Classes/OSLogger.swift; sourceTree = ""; }; - 9E3240CCE746F0BF677592D3F6CF5B1C /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; - 9EF1E91AEEA40055B4C9EBB4F98DF1FF /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; - 9F04AA8BC68E9A84F7AA20A5546BE998 /* UIView+IQKeyboardManagerExtensionObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardManagerExtensionObjc.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtensionObjc.swift"; sourceTree = ""; }; + 9DC76871304CCDFD3A1D21BF050D3177 /* WHNavigationController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHNavigationController.swift; path = Sources/Subclasses/WHNavigationController.swift; sourceTree = ""; }; + 9DC8945AB452F2860FCC5CBB94324624 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = ""; }; + 9E054BBC07794A97A72D7F5FD34898FF /* IQBarButtonItemConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItemConfiguration.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItemConfiguration.swift; sourceTree = ""; }; + 9EFDF09D136087E961C24BA4E9EE1CD8 /* ThrowAssertion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowAssertion.swift; path = Sources/Nimble/Matchers/ThrowAssertion.swift; sourceTree = ""; }; 9F469EC0035C69528C810216676EAA16 /* ConnectivityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectivityManager.swift; path = ConsentViewController/Classes/ConnectivityManager.swift; sourceTree = ""; }; - 9FBB5CE945BF34010FC34066F5B55095 /* IQKeyboardToolbarManager+Toolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Toolbar.swift"; path = "IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Toolbar.swift"; sourceTree = ""; }; - A0643F70B7B47E01C9A928D1EF6DEAD2 /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; - A123E38DC02B7A9891537D34EAF2FF2F /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - A14F6FA0580DCA2BEDEFE44D728486BD /* JSONView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "JSONView-Info.plist"; sourceTree = ""; }; + 9F4E194548CB8DA88C035DC8C7D2EF86 /* CwlPosixPreconditionTesting-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlPosixPreconditionTesting-prefix.pch"; sourceTree = ""; }; + 9F6BB2423C69F99EEAC09C7C9E7B6E66 /* Expectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expectation.swift; path = Sources/Nimble/Expectation.swift; sourceTree = ""; }; + 9F96E4D2386F493BE82DED195E2CF689 /* IQTextView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQTextView-dummy.m"; sourceTree = ""; }; + 9FFDDD271BD34C9D86E1125AE8EADE30 /* AsyncAllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncAllPass.swift; path = Sources/Nimble/Matchers/AsyncAllPass.swift; sourceTree = ""; }; + A0CA2E223EE61D297A117842655ACF18 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = ""; }; + A0D10B995612504994DB04DEEBB0138E /* CwlMachBadInstructionHandler-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CwlMachBadInstructionHandler-Info.plist"; sourceTree = ""; }; + A0F162DFF0A4C069334782DC294C71FF /* IQKeyboardToolbarConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarConstants.swift; path = IQKeyboardToolbarManager/Classes/Constants/IQKeyboardToolbarConstants.swift; sourceTree = ""; }; + A109023FCA68FDE015141DD67DC29755 /* Quick-tvOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Quick-tvOS-dummy.m"; path = "../Quick-tvOS/Quick-tvOS-dummy.m"; sourceTree = ""; }; + A11B05957DEC3AB840DA74DE56267828 /* IQKeyboardToolbar.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbar.release.xcconfig; sourceTree = ""; }; + A153645F2DDB19458FE1A4346444F6FE /* WHBaseViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHBaseViewController.swift; path = Sources/Subclasses/WHBaseViewController.swift; sourceTree = ""; }; A16FD016E18EACCF6B23F219F2E236FE /* IQKeyboardToolbar-IQKeyboardToolbar */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardToolbar-IQKeyboardToolbar"; path = IQKeyboardToolbar.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - A19DBDACF73DF8A661FABAF35E57ADE1 /* ElementsEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementsEqual.swift; path = Sources/Nimble/Matchers/ElementsEqual.swift; sourceTree = ""; }; - A1D77A57E1F329B435501672C908716B /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; - A1FA8633E90C10244140E2579810C6AA /* FirebaseAnalytics.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = FirebaseAnalytics.xcframework; path = Frameworks/FirebaseAnalytics.xcframework; sourceTree = ""; }; - A2BB9E7C9020738B762E01D9B27E8B42 /* FirebaseCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCore.modulemap; sourceTree = ""; }; - A2C680E8C88B85688EB764C70AE04356 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; - A2CFFAAA0D1E6D27096A5A29E166619B /* FirebaseCoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCoreInternal-Info.plist"; sourceTree = ""; }; - A31FCF2029AEB431F9B3E6CE4E2162A6 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; - A339F3B7EAC3BD75E89053047073DEF2 /* UICollectionView+IndexPaths.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UICollectionView+IndexPaths.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UICollectionView+IndexPaths.swift"; sourceTree = ""; }; - A33D7A3F8A6C2631D0608B6829E99E2D /* Quick-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Quick-iOS.modulemap"; sourceTree = ""; }; - A381E7922866ACD62FE83FD3C2342456 /* FirebaseInstallations.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.debug.xcconfig; sourceTree = ""; }; - A4A607350DE79A37FDB354A47F15B41F /* IQScrollViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQScrollViewConfiguration.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQScrollViewConfiguration.swift; sourceTree = ""; }; - A4D17D3E433925C0D124D3772DA86950 /* Wormholy.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Wormholy.debug.xcconfig; sourceTree = ""; }; - A4F966A4D01EFDA3F93496FAAEAC58B5 /* Nimble-tvOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Nimble-tvOS-umbrella.h"; path = "../Nimble-tvOS/Nimble-tvOS-umbrella.h"; sourceTree = ""; }; - A562257A7EE6A3602A66E6582DD95EAB /* CustomHTTPProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomHTTPProtocol.swift; path = Sources/CustomHTTPProtocol.swift; sourceTree = ""; }; + A188CBEBC676609F35A63D53BA78950B /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h; sourceTree = ""; }; + A1AE3F717FE3E0E66C2B39495FB5A811 /* ThrowError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowError.swift; path = Sources/Nimble/Matchers/ThrowError.swift; sourceTree = ""; }; + A2413C25A1E9B1773F4BB7C4A9918225 /* WormholyConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = WormholyConstructor.m; path = Sources/Objc/WormholyConstructor.m; sourceTree = ""; }; + A24EBA1A48811A82E9E39B985421398F /* ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; sourceTree = ""; }; + A25E299620E4156A2638D0F3DE5EC583 /* CwlCatchException.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlCatchException.debug.xcconfig; sourceTree = ""; }; + A26BBC7E4321F39E52EB7D529A6C5E94 /* DSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DSL.m; path = Sources/NimbleObjectiveC/DSL.m; sourceTree = ""; }; + A29A933877C4A42745B22A0407B169CF /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; + A361202B2E3C64A15E73F68BEB6EC838 /* CwlPreconditionTesting-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlPreconditionTesting-umbrella.h"; sourceTree = ""; }; + A36B888EBDB6ED11E7C0692FE5AAC0E7 /* Colors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Colors.swift; path = "Sources/Support Files/Colors.swift"; sourceTree = ""; }; + A4610644C7B0109D328649CBEC1527DC /* SPMobileCore.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = SPMobileCore.xcframework; sourceTree = ""; }; + A46E3B649881FB5DBD58A006029D4A9C /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; + A4CC809ED8B5AE51F38848C0F72698E0 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; + A52ECA6E35D137500EB0D742A5100B58 /* Wormholy-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Wormholy-prefix.pch"; sourceTree = ""; }; A5839082B8F6542D0C2A2B3E1CF9AB40 /* Pods-Examples-ConsentViewController_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-ConsentViewController_Example-acknowledgements.plist"; sourceTree = ""; }; - A596D3A4A9D566D71BC803D06552773E /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; + A5B85C33CEAEF1D6C35FD328C4D76F4F /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = ""; }; + A5CF58C2980FC8C6E33960F8257583AD /* AsyncExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncExampleHooks.swift; path = Sources/Quick/Hooks/AsyncExampleHooks.swift; sourceTree = ""; }; A602E08A711C2221EF6229727384A7CF /* SPPrivacyManagerTab.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPPrivacyManagerTab.swift; path = ConsentViewController/Classes/SPPrivacyManagerTab.swift; sourceTree = ""; }; - A6118A229CB131B6546F8E2C35A8B04E /* Quick-tvOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "Quick-tvOS.modulemap"; path = "../Quick-tvOS/Quick-tvOS.modulemap"; sourceTree = ""; }; - A636064211D47B85F3EB7BCDE55DB714 /* IQTextInputViewNotification.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextInputViewNotification.debug.xcconfig; sourceTree = ""; }; + A633DBE772E554D5D84ED42635A8334C /* QCKDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QCKDSL.m; path = Sources/QuickObjectiveC/DSL/QCKDSL.m; sourceTree = ""; }; + A65D69CB88594A9705501AF0677C3716 /* QuickSelectedTestSuiteBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickSelectedTestSuiteBuilder.swift; path = Sources/Quick/QuickSelectedTestSuiteBuilder.swift; sourceTree = ""; }; A69621B2FFC5BDB799083519D042BA81 /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-ConsentViewController_ExampleTests-dummy.m"; sourceTree = ""; }; - A6CDFD442F6A27283F045D4440B11C01 /* IQActiveConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQActiveConfiguration.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQActiveConfiguration.swift; sourceTree = ""; }; + A6FFF671D060417A9CF24E8B6B67ADB7 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRConfiguration.h; sourceTree = ""; }; + A70A5FFB77406837B331831AFA067EA9 /* Quick-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Quick-tvOS.release.xcconfig"; path = "../Quick-tvOS/Quick-tvOS.release.xcconfig"; sourceTree = ""; }; A77DA1D8C3D825C0C7E8EF07206E936D /* SPMessageLanguage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPMessageLanguage.swift; path = ConsentViewController/Classes/SPMessageLanguage.swift; sourceTree = ""; }; - A7B900E2DC4550F54AB402C1C5020DB3 /* QuickTestSuite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestSuite.swift; path = Sources/Quick/QuickTestSuite.swift; sourceTree = ""; }; A7FC119477F460006B723993FA489467 /* SPCCPANativePrivacyManagerViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPCCPANativePrivacyManagerViewController.swift; sourceTree = ""; }; - A8C32FE882E21AA05370CA7229768EDB /* GULNetworkInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkInfo.m; path = GoogleUtilities/Environment/NetworkInfo/GULNetworkInfo.m; sourceTree = ""; }; - A8E13DD62383524F3373CE2B009F5052 /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; + A8539471500A9065B1DF8CED74E86479 /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; + A85E92CAEEEDC4C630593857225DA065 /* Quick-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Quick-iOS-dummy.m"; sourceTree = ""; }; + A89672116452AEA51E63CDD4641DF6AC /* IQKeyboardNotification.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardNotification.debug.xcconfig; sourceTree = ""; }; + A8B5754E3D9CF0928319A37F8D4D281A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardNotification/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardManagerSwift; path = IQKeyboardManagerSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - A8F302D73CDD48B864D4CDC0EF0A721D /* Nimble-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-iOS-umbrella.h"; sourceTree = ""; }; - A90B7853B42A31D21CE9F7379DC5A251 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULMutableDictionary.h; sourceTree = ""; }; - A9301DBF0942EABDDAF8A2D6E9FE6054 /* NimbleXCTestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleXCTestHandler.swift; path = Sources/Nimble/Adapters/NimbleXCTestHandler.swift; sourceTree = ""; }; - A95932A805643F9F77750936A4A03862 /* IQTextInputViewNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputViewNotification.swift; path = IQTextInputViewNotification/Classes/IQTextInputViewNotification.swift; sourceTree = ""; }; - A9A8C3E06D197250F142140842379FE4 /* ExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleGroup.swift; path = Sources/Quick/ExampleGroup.swift; sourceTree = ""; }; - AA23DF396AC9400B3F309177A7B9A5F1 /* FirebaseCoreInternal-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-umbrella.h"; sourceTree = ""; }; + A93FA39A9D83693D979D6C87751F4E5B /* IQKeyboardToolbarManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardToolbarManager-dummy.m"; sourceTree = ""; }; + A94D32980FE8EEFD4BF3C5D8AB171AFC /* Quick-iOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Quick-iOS.debug.xcconfig"; sourceTree = ""; }; + A9AFE904771B568A4754C58702BBFAA9 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; + A9E567C3801F77C6845784BC161E6AF0 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULMutableDictionary.h; sourceTree = ""; }; + A9F239EB342CD33668E7657BEF9023C2 /* JSONView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JSONView.debug.xcconfig; sourceTree = ""; }; + AA0F831F10B5385C15685F1BE6EEC902 /* SubclassDetection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubclassDetection.swift; path = Sources/Quick/SubclassDetection.swift; sourceTree = ""; }; + AA1ADE3868CD5346F4F2BAA26B8668B3 /* BeLessThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThan.swift; path = Sources/Nimble/Matchers/BeLessThan.swift; sourceTree = ""; }; + AA26FA80CF19C1376665161D157B339A /* AssertionRecorder+Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssertionRecorder+Async.swift"; path = "Sources/Nimble/Adapters/AssertionRecorder+Async.swift"; sourceTree = ""; }; + AA30F8B79734070F28F2685338C219C8 /* FirebaseAnalytics.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = FirebaseAnalytics.xcframework; path = Frameworks/FirebaseAnalytics.xcframework; sourceTree = ""; }; + AA4F27E44DABBCD644F5EAFC786B157F /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; AA6B5382DCD05DA49AE8667BAAD85D46 /* SPString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPString.swift; sourceTree = ""; }; - AA80DA76BC89201F1508D2D28BBCDEB8 /* UIView+ResignObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+ResignObjc.swift"; path = "IQKeyboardManagerSwift/Resign/UIKItExtensions/UIView+ResignObjc.swift"; sourceTree = ""; }; + AA8CD736A98F2741BD96AF9CFB0498E4 /* UIView+Hierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Hierarchy.swift"; path = "IQKeyboardCore/Classes/UIKitExtensions/UIView+Hierarchy.swift"; sourceTree = ""; }; AA92ED38E716E03D3FC758C810953B95 /* Wormholy-Wormholy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "Wormholy-Wormholy"; path = Wormholy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - ABF5610414805D9DAD4B9DFDCCE56C6F /* FIRFirebaseUserAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFirebaseUserAgent.m; path = FirebaseCore/Sources/FIRFirebaseUserAgent.m; sourceTree = ""; }; + AABE37F8C23C6D9E87B16B75F451798C /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; + AAC3007A68D81AA5A7DD2C0D79C5DA30 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = ""; }; + AB8A4A9B4157CDAA3D994D9F0DAA5886 /* QCKDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QCKDSL.h; path = Sources/QuickObjectiveC/DSL/QCKDSL.h; sourceTree = ""; }; + ABABF808BCAB1D58E18BC75EC35A5A1F /* Quick-iOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Quick-iOS-Info.plist"; sourceTree = ""; }; AC0B7DB098A360C871AEEFC494EF2441 /* SPIDFAStatus.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPIDFAStatus.swift; path = ConsentViewController/Classes/SPIDFAStatus.swift; sourceTree = ""; }; AC6BF0CBB80DC543EA9A8290A1EB96A8 /* StateNativeToCoreAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = StateNativeToCoreAdapter.swift; sourceTree = ""; }; - AC77D88FD4D2CC86CC688ED924B45089 /* FIRInstallationsBackoffController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsBackoffController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.h; sourceTree = ""; }; - AD620E8827ABB7E19850213C1965F3C2 /* AssertionDispatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionDispatcher.swift; path = Sources/Nimble/Adapters/AssertionDispatcher.swift; sourceTree = ""; }; + AC6C453CD050FB5817AA3897D415B52C /* GULNetworkInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInternal.h; path = GoogleUtilities/Network/GULNetworkInternal.h; sourceTree = ""; }; + AC91C44A59AABC5FF63CF75D8B6F86C5 /* CwlPosixPreconditionTesting.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CwlPosixPreconditionTesting.modulemap; sourceTree = ""; }; + AD32F2285581C5240F786F49CA8C33E4 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; + AD8A1623E24EBB185642DD871266F75A /* Array+Sort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+Sort.swift"; path = "IQKeyboardToolbarManager/Classes/UIKitExtensions/Array+Sort.swift"; sourceTree = ""; }; + AD8AA25743B7DB5360A40AC1336ABBB0 /* CwlPreconditionTesting.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CwlPreconditionTesting.modulemap; sourceTree = ""; }; + ADB4F88912D4C5E25D8BE4F0B806CE78 /* CwlMachBadInstructionHandler.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CwlMachBadInstructionHandler.modulemap; sourceTree = ""; }; + ADC01D3509458F80B420EA447786BB2C /* PromisesObjC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesObjC-umbrella.h"; sourceTree = ""; }; AE88860572FF0DD26A128831EAF40663 /* SPNativeScreenViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPNativeScreenViewController.swift; sourceTree = ""; }; - AEF183E42EC848C5FD513A7BEC3AB0E7 /* RequestDetailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestDetailViewController.swift; path = Sources/UI/RequestDetailViewController.swift; sourceTree = ""; }; - AF5A4886C0DA3C0905EC20EC9E16EEEC /* WHTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHTextView.swift; path = Sources/Subclasses/WHTextView.swift; sourceTree = ""; }; + AE8A7BA9F0275B149E1D0749B53CDD49 /* FIRCurrentDateProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCurrentDateProvider.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.m; sourceTree = ""; }; + AE99FBCE8B8C83A93A6C33D9D5723514 /* CwlCatchExceptionSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CwlCatchExceptionSupport-dummy.m"; sourceTree = ""; }; + AEED0B0D8119723149D7E468C5282C0B /* Expression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expression.swift; path = Sources/Nimble/Expression.swift; sourceTree = ""; }; + AEFE0B8AB65CAA06ADCEC1AC92FB08CF /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; + AF2760999E9505C542C43463DA33C683 /* BeginWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWith.swift; path = Sources/Nimble/Matchers/BeginWith.swift; sourceTree = ""; }; + AFAFBCA4CA46B7789F68E77AD06F489E /* IQKeyboardManager+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Position.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Position.swift"; sourceTree = ""; }; AFB1557A33F666C0A9D83F8FE7C9D111 /* Pods-Examples-ConsentViewController_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-ConsentViewController_Example.debug.xcconfig"; sourceTree = ""; }; - B0223A8872E2DE9040417C22BEE36FF8 /* IQKeyboardInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardInfo.swift; path = IQKeyboardNotification/Classes/IQKeyboardInfo.swift; sourceTree = ""; }; - B02F30958F58C9BB4C92F25710B7BE2B /* NMBExceptionCapture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBExceptionCapture.h; path = Sources/NimbleObjectiveC/NMBExceptionCapture.h; sourceTree = ""; }; B035E0A9C9B2061E23E37637991AF18F /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-Info.plist"; sourceTree = ""; }; - B07B30B332CCCEFC8961E2C442315EF8 /* SatisfyAllOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAllOf.swift; path = Sources/Nimble/Matchers/SatisfyAllOf.swift; sourceTree = ""; }; + B050097AE422BC05C6098DCF057DB272 /* WormholyMethodSwizzling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WormholyMethodSwizzling.h; path = Sources/Objc/WormholyMethodSwizzling.h; sourceTree = ""; }; + B07C103C97EA779BB2E3F8418929E9EF /* Contain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Contain.swift; path = Sources/Nimble/Matchers/Contain.swift; sourceTree = ""; }; B0D11B44C645CCA4370139EC3EE9C182 /* SPDate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPDate.swift; path = ConsentViewController/Classes/SPDate.swift; sourceTree = ""; }; + B0E65EFCCCF70977E03B71E52395AD11 /* BeWithin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeWithin.swift; path = Sources/Nimble/Matchers/BeWithin.swift; sourceTree = ""; }; B0FB9D7152307E006BDF6F5C4CE9A9A1 /* Pods-Tests-NativeMessageExampleUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-NativeMessageExampleUITests-acknowledgements.plist"; sourceTree = ""; }; - B14AE276C2279D801C19BC2519D636C6 /* IQKeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManager.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager.swift; sourceTree = ""; }; - B1531A61005719146F0AC17BCAF28D30 /* Match.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Match.swift; path = Sources/Nimble/Matchers/Match.swift; sourceTree = ""; }; - B1B881F92E526A8209413F2ECC36111C /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; + B1B783765AFDBBC9FF7903D64E5A39B0 /* CurrentSpec.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurrentSpec.swift; path = Sources/Quick/CurrentSpec.swift; sourceTree = ""; }; + B1BEC02223C75794AFCD195F68ED8447 /* IQKeyboardToolbarConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarConfiguration.swift; path = IQKeyboardToolbarManager/Classes/Configuration/IQKeyboardToolbarConfiguration.swift; sourceTree = ""; }; + B1BEE24BA36FDA58A106C56809C0610C /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h; sourceTree = ""; }; + B1C3C5D363C62E3B2674821C53520683 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; B1C9B90A3AFF6D6A5D97A1651A7D2900 /* ConsentViewController-tvOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConsentViewController-tvOS-umbrella.h"; path = "../ConsentViewController-tvOS/ConsentViewController-tvOS-umbrella.h"; sourceTree = ""; }; - B2E1278DEF469D3EA83B6DDCC6458F39 /* CustomActivity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomActivity.swift; path = Sources/Subclasses/CustomActivity.swift; sourceTree = ""; }; - B3459CF29818A9903902E78A70468F8D /* ExampleMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleMetadata.swift; path = Sources/Quick/ExampleMetadata.swift; sourceTree = ""; }; + B2020A4EA56E58DF9051225B6ED4D89B /* Nimble-tvOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "Nimble-tvOS-Info.plist"; path = "../Nimble-tvOS/Nimble-tvOS-Info.plist"; sourceTree = ""; }; + B29E4356D1D410280B2A1E1567FCD00D /* UIView+IQKeyboardManagerExtensionObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardManagerExtensionObjc.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtensionObjc.swift"; sourceTree = ""; }; + B2B165934E9839F38ACCAC3155B9E1AD /* IQKeyboardAppearanceManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardAppearanceManager.swift; path = IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager.swift; sourceTree = ""; }; + B2E8B7E8BA00F2628706C0AA85E4F5BB /* SPMobileCore-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "SPMobileCore-tvOS.release.xcconfig"; path = "../SPMobileCore-tvOS/SPMobileCore-tvOS.release.xcconfig"; sourceTree = ""; }; + B30228F44B1ECB9333C5BB269B12FC50 /* IQTextInputViewNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputViewNotification.swift; path = IQTextInputViewNotification/Classes/IQTextInputViewNotification.swift; sourceTree = ""; }; + B32B6C183B012436F99263A2CAB137F1 /* ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; sourceTree = ""; }; B38087A49120AF6988F87CAD1193D2EE /* Pods-Examples-SourcePointMetaApp-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-SourcePointMetaApp-Info.plist"; sourceTree = ""; }; + B38761F6B536F6512B2550EEFADD6366 /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; + B3A3D24201B2F1A39E6787ECA7D65505 /* Quick-iOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Quick-iOS.release.xcconfig"; sourceTree = ""; }; + B3B7F216AFAC272B8A629EBC12FA2E0A /* AsyncWorld+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AsyncWorld+DSL.swift"; path = "Sources/Quick/DSL/AsyncWorld+DSL.swift"; sourceTree = ""; }; B3E4DC932BBEFAFD5A49D90AB2AC7D86 /* Pods-Tests-ConsentViewController_ExampleTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-ConsentViewController_ExampleTests.modulemap"; sourceTree = ""; }; - B40BB952D7B8E74D6B9697915507E79F /* IQRootControllerConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQRootControllerConfiguration.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQRootControllerConfiguration.swift; sourceTree = ""; }; - B41FE3E86B3EAF6DB3508ADFBF9B331B /* BeGreaterThanOrEqualTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThanOrEqualTo.swift; path = Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift; sourceTree = ""; }; + B429F14EB4A5E9DA1D17227E6D90E17D /* IQKeyboardReturnManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardReturnManager-Info.plist"; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* GoogleUtilities */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GoogleUtilities; path = GoogleUtilities.framework; sourceTree = BUILT_PRODUCTS_DIR; }; B449CC35881DF31AE43C3912C1B54623 /* NSObjectExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NSObjectExtensions.swift; sourceTree = ""; }; - B461DAEC591BD038A169FB4459420346 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/FIROptionsInternal.h; sourceTree = ""; }; B462B473A535B8124B294EBC6A4A8902 /* Pods-Examples-AuthExample-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-AuthExample-dummy.m"; sourceTree = ""; }; B4807E584DB501AC5F5FAAB14026E391 /* Pods-Tests-ConsentViewController_ExampleTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-ConsentViewController_ExampleTests-umbrella.h"; sourceTree = ""; }; - B4B16CD22C1AD2CCE2DC7CB454AF688C /* Config.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Config.swift; path = "Sources/Support Files/Config.swift"; sourceTree = ""; }; B4B1A58096F15199A14069C5D6AA1C99 /* IQKeyboardToolbar */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardToolbar; path = IQKeyboardToolbar.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B4DE8FA000CDDE465527A551708B2742 /* WHLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHLabel.swift; path = Sources/Subclasses/WHLabel.swift; sourceTree = ""; }; - B55549E765741E265FC8791EB86F5D41 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h; sourceTree = ""; }; - B5853F140A27DF91481E63FF8B01194E /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; - B610340313F660971B0A5708C6C8A111 /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; - B6A97FB37359EC78BBE5FC6FB07F29AF /* FIRHeartbeatLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatLogger.m; path = FirebaseCore/Sources/FIRHeartbeatLogger.m; sourceTree = ""; }; + B4D63D4847FC55FF58BB4A31235A0BF9 /* UIView+Parent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Parent.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+Parent.swift"; sourceTree = ""; }; + B4FC1CAC1404126C258F956D45F9CCC6 /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; + B5139508753F2B17003FEED9C0AF3641 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardReturnManager/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; + B51861A159CB213A49F54058AD763015 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkURLSession.h; sourceTree = ""; }; + B54E6D465C609652566C8D907BE245FC /* IQKeyboardManagerSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardManagerSwift.modulemap; sourceTree = ""; }; + B5DE92BBC442B76678390B2150C0ED58 /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; + B6A755999186782F65061F41046B284E /* CwlCatchExceptionSupport.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CwlCatchExceptionSupport.modulemap; sourceTree = ""; }; B6AA1166CD5E836C9349D4C8FB74D2E5 /* ConsentViewController-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "ConsentViewController-tvOS.release.xcconfig"; path = "../ConsentViewController-tvOS/ConsentViewController-tvOS.release.xcconfig"; sourceTree = ""; }; - B6AC2312918DA678C7FB67249A5CEFFF /* IQTextView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextView-prefix.pch"; sourceTree = ""; }; - B6BCF353F54D6803B0577E9013F8AFCF /* Expression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expression.swift; path = Sources/Nimble/Expression.swift; sourceTree = ""; }; - B6C1EE9EE98C6F1DFF63C1549FE110F4 /* Quick-tvOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "Quick-tvOS-Info.plist"; path = "../Quick-tvOS/Quick-tvOS-Info.plist"; sourceTree = ""; }; - B6CE89B16F4EDDF0AD4EAFB1726E592B /* JSONView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JSONView-dummy.m"; sourceTree = ""; }; - B749A0F534AA28020498E4C00093F5C1 /* Quick-iOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Quick-iOS-Info.plist"; sourceTree = ""; }; - B791C67B9CB613FFCA78731AAA7A7EB3 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = ""; }; - B7F57581209C561D05A7527AD7A21A8C /* ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist"; sourceTree = ""; }; + B6CFFBFD33C80AE18D03D79100AF8558 /* HooksPhase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HooksPhase.swift; path = Sources/Quick/Hooks/HooksPhase.swift; sourceTree = ""; }; + B7142A9107596D3C6205A0EDB8A388DD /* ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist"; sourceTree = ""; }; + B789CF2E82183FA849B2EE1AE3EEB80A /* WHCollectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHCollectionView.swift; path = Sources/Subclasses/WHCollectionView.swift; sourceTree = ""; }; + B7BDFAB7F2C3D6412FF9E6427BF0BF5E /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; + B7DA271879C5545FA95AC3A9F8807B2B /* IQKeyboardManager+ActiveConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+ActiveConfiguration.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+ActiveConfiguration.swift"; sourceTree = ""; }; B81BEE3865FF627CB1446B33E244F3B9 /* Pods-TVOSExampleApp-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TVOSExampleApp-acknowledgements.markdown"; sourceTree = ""; }; - B8340B27E184F8421DC2BDC320B0EC19 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; - B8ACBDD2D08FBECE60B571501F156A9C /* BodyDetailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BodyDetailViewController.swift; path = Sources/UI/BodyDetailViewController.swift; sourceTree = ""; }; - B8DC42E314A6A073A8CBEA8D0E051670 /* IQKeyboardToolbarManager.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbarManager.release.xcconfig; sourceTree = ""; }; - B996EB791EDA9EF2B054183A905F4391 /* FirebaseCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCore-umbrella.h"; sourceTree = ""; }; - BB4C87A48ABBDAA97592080F85929A90 /* QCKDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QCKDSL.m; path = Sources/QuickObjectiveC/DSL/QCKDSL.m; sourceTree = ""; }; + B87338A60396DC7C8B9E9C14E50D1517 /* GoogleAppMeasurement.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.release.xcconfig; sourceTree = ""; }; + B9B245DECDD24C9AC0F75E7898CAEF76 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULSwizzler.h; sourceTree = ""; }; + BAC7A0B37A8D91FE55F50A479F14B44C /* NSBundle+CurrentTestBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSBundle+CurrentTestBundle.swift"; path = "Sources/Quick/NSBundle+CurrentTestBundle.swift"; sourceTree = ""; }; + BAC9703CCCA66DA53EEA0A439C70ABA9 /* ActionableTableViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = ActionableTableViewCell.xib; path = Sources/UI/Cells/ActionableTableViewCell.xib; sourceTree = ""; }; + BB6932AE55EA481CF1AAF28D724E19F9 /* UIView+IQKeyboardManagerExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardManagerExtension.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtension.swift"; sourceTree = ""; }; + BB96A1C01235D2DB104ABB1DC2A63E21 /* CwlMachBadInstructionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlMachBadInstructionHandler.h; path = Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h; sourceTree = ""; }; BBB9A9F0E5F0ED975F2A1A1AA5A8A5EC /* SourcepointClientCoordinator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SourcepointClientCoordinator.swift; sourceTree = ""; }; - BCD8B6305B55006EA5910F11709B01AB /* FirebaseInstallations.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseInstallations.modulemap; sourceTree = ""; }; - BCFA56426C8CA914EB49D1171DEB1BB7 /* GULNetworkInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInfo.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULNetworkInfo.h; sourceTree = ""; }; - BD135035AFDD1E8703C62D6F24A95EF0 /* IQKeyboardToolbar.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardToolbar.modulemap; sourceTree = ""; }; - BD8DBD37BFCC2189451CB076D74EC280 /* WeakContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WeakContainer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/WeakContainer.swift; sourceTree = ""; }; - BDB5D46E51C798C1E3F7D433589F7BA8 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = FirebaseInstallations/Source/Library/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - BDCB91B4EBA43D6A752144A35F5C39B1 /* CwlCatchException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlCatchException.m; path = Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m; sourceTree = ""; }; - BE05912A10F759D64655CF37ADC5987C /* IQKeyboardToolbar-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbar-prefix.pch"; sourceTree = ""; }; - BE6DE25CB81DF3A391F8A3241FE0F113 /* HeartbeatsBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsBundle.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsBundle.swift; sourceTree = ""; }; - BF05B2B122EE3F0CCF5B34243A45E7C3 /* mach_excServer.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mach_excServer.c; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c; sourceTree = ""; }; - BF893A9ABCE11078B3438156F1640B3B /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULSwizzler.h; sourceTree = ""; }; - BFD24D10A0A011170A605A0CE77C505B /* IQKeyboardNotification-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardNotification-dummy.m"; sourceTree = ""; }; + BBBB1C27BF4880E7D44DA1EA3A17A658 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetwork.h; sourceTree = ""; }; + BDC87B2DDE2EA8F037A768043509C7DC /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; + BDE3ACC9919EBFCC1AB3449F164F1C80 /* IQKeyboardReturnManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardReturnManager-umbrella.h"; sourceTree = ""; }; + BE46FD2C9A2945C44977ED7FFF75B5ED /* CwlCatchException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchException.swift; path = Sources/CwlCatchException/CwlCatchException.swift; sourceTree = ""; }; + BE60272E11ADB724C93010B2B4936F82 /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; + BE6574F64FA1EA3700CF64D22C778856 /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; + BE7F6B22DDE3192E0442A82C559D5836 /* BeCloseTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeCloseTo.swift; path = Sources/Nimble/Matchers/BeCloseTo.swift; sourceTree = ""; }; + BE80F7781B3D638A7E69BC47FCE44F37 /* IQKeyboardReturnManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardReturnManager-dummy.m"; sourceTree = ""; }; + BED36662D4F72A2E1B9DA8B9823EA686 /* IQKeyboardToolbarManager+Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Deprecated.swift"; path = "IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Deprecated.swift"; sourceTree = ""; }; + BF374197388716B739DB5B8C30DAD6A0 /* String+C99ExtendedIdentifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+C99ExtendedIdentifier.swift"; path = "Sources/Quick/String+C99ExtendedIdentifier.swift"; sourceTree = ""; }; + BF4E19260113E31B01ACC4A40F06CC32 /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; + BF930FF66C57169A442D8B8AE1758951 /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; C03190257F1960B9B76BE102566E21AD /* SPGDPRManagePreferenceViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPGDPRManagePreferenceViewController.xib; sourceTree = ""; }; - C05FB56DAEEDCA29BA74D9393362D4A5 /* Example.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Example.swift; path = Sources/Quick/Example.swift; sourceTree = ""; }; C0957EB8E218AD92A68D3B9545B310B8 /* Pods-Examples-ObjC-ExampleApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-ObjC-ExampleApp.release.xcconfig"; sourceTree = ""; }; - C128E232D8CB1629474DCDDD789A295D /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; - C163FB5D653618A204E3FEA3AD4DC82D /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; - C1A7D9F99FA34F4FBE45C210D3765C55 /* PromisesObjC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PromisesObjC.modulemap; sourceTree = ""; }; - C20D5948145CC0039A9DB6E6DB0024E7 /* Wormholy-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Wormholy-Info.plist"; sourceTree = ""; }; - C2747E5052238442DF33536DDD1F2A33 /* BeVoid.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeVoid.swift; path = Sources/Nimble/Matchers/BeVoid.swift; sourceTree = ""; }; + C0CA07D267FBD8C4220DECC3B0848D17 /* GULNetworkInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkInfo.m; path = GoogleUtilities/Environment/NetworkInfo/GULNetworkInfo.m; sourceTree = ""; }; + C0FDE3CA87B3E93E97F2DB41CA742521 /* FIRInstallationsBackoffController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsBackoffController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.h; sourceTree = ""; }; + C206E48C5FD72701093625C9FEDD1C14 /* IQTextView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextView.debug.xcconfig; sourceTree = ""; }; + C27FE6E8099EFAE616C0117F0A94461C /* Quick-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-iOS-umbrella.h"; sourceTree = ""; }; C2D78C7CC2691E374ACEB1E6F473BD02 /* ConsentViewController-tvOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ConsentViewController-tvOS-dummy.m"; path = "../ConsentViewController-tvOS/ConsentViewController-tvOS-dummy.m"; sourceTree = ""; }; C2ED87FF684D4E49C5ED31ABB13C38AC /* Pods-Examples-SourcePointMetaApp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-SourcePointMetaApp.modulemap"; sourceTree = ""; }; - C2F3A36BA266CB175E33BD2B29F2414B /* IQKeyboardNotification-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardNotification-umbrella.h"; sourceTree = ""; }; C2FCA34B3522D944BAA3DC6A57D99686 /* Nimble-iOS */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Nimble-iOS"; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C30025A4F64B593C3085A683F7D1C262 /* BeAnInstanceOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAnInstanceOf.swift; path = Sources/Nimble/Matchers/BeAnInstanceOf.swift; sourceTree = ""; }; - C36F5EFB0BC6BFE4499C4B8EB6AF10EE /* ToSucceed.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToSucceed.swift; path = Sources/Nimble/Matchers/ToSucceed.swift; sourceTree = ""; }; - C3727AAE81DC2BDC43156A2F1B88527B /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; C384BAF69B1BDA613D1E4F78577AC62F /* SPPrivacyPolicyViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPPrivacyPolicyViewController.swift; sourceTree = ""; }; + C3BA0948AE51327AA64A49BFFC847D66 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; C3C4FC7367786DA4ADD5D4613303527E /* SPDeviceManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPDeviceManager.swift; path = ConsentViewController/Classes/SPDeviceManager.swift; sourceTree = ""; }; C3D163ED35F95B184B10CF3222D35768 /* Pods-TVOSExampleApp */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-TVOSExampleApp"; path = Pods_TVOSExampleApp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C46A72451BEA061D4A42B6CA7C7B4237 /* ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist"; sourceTree = ""; }; - C566F234AC40385CD0C09D53D3AC7480 /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = ""; }; + C3DE70D4B74186544DE35040F08B1F68 /* BeAKindOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAKindOf.swift; path = Sources/Nimble/Matchers/BeAKindOf.swift; sourceTree = ""; }; + C3F0A86AF2E75FC5D43E56354F932455 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = Sources/Storage.swift; sourceTree = ""; }; + C407A54E017467BD3403FC613AFB7F1B /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULAppEnvironmentUtil.h; sourceTree = ""; }; + C46CFB8EF3CEB56EDF6712289A27A9C7 /* IQTextView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQTextView.modulemap; sourceTree = ""; }; + C5A307F97B8D4D230351B1E3803B356C /* ErrorUtility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ErrorUtility.swift; path = Sources/Quick/ErrorUtility.swift; sourceTree = ""; }; C5AE4F2FE6962D2D5782A193601217D4 /* Pods-Examples-SourcepointFirebaseDemo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-SourcepointFirebaseDemo.release.xcconfig"; sourceTree = ""; }; - C6921E3C54DE4DC87A71456A218F2DB3 /* Array+Sort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+Sort.swift"; path = "IQKeyboardToolbarManager/Classes/UIKitExtensions/Array+Sort.swift"; sourceTree = ""; }; - C6C7E888A71A93EEC148A9E95DDF022E /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; - C6C8B29729DB86FFCE7221ECCECE44A6 /* IQKeyboardNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardNotification.swift; path = IQKeyboardNotification/Classes/IQKeyboardNotification.swift; sourceTree = ""; }; + C5D7A3F73EF1C63F9610263E2A3C4EBA /* RequestTitleSectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTitleSectionView.swift; path = Sources/UI/Sections/RequestTitleSectionView.swift; sourceTree = ""; }; + C5E73C9325537856D0BFC3E891FCC1C0 /* WHLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHLabel.swift; path = Sources/Subclasses/WHLabel.swift; sourceTree = ""; }; + C5F0138D0FEA2195D7B1FCB1DF1496C8 /* Nimble-tvOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Nimble-tvOS-prefix.pch"; path = "../Nimble-tvOS/Nimble-tvOS-prefix.pch"; sourceTree = ""; }; + C61F8B32B14E4029D7A1CA2DE208A5A5 /* Quick-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Quick-tvOS.debug.xcconfig"; path = "../Quick-tvOS/Quick-tvOS.debug.xcconfig"; sourceTree = ""; }; C6EE4EAFFA46B29CEDB96AF54E59AD52 /* Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Collection.swift; sourceTree = ""; }; - C78DA2558B864B9702B2369FBCF01E5A /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; + C71513E560B1CB1D8E9A60A2D72233D9 /* Wormholy.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Wormholy.release.xcconfig; sourceTree = ""; }; + C7C2329C3E94A50D0854E8A86D2E0C27 /* IQKeyboardInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardInfo.swift; path = IQKeyboardNotification/Classes/IQKeyboardInfo.swift; sourceTree = ""; }; C7D0A4151C95D4FBAD32B247F044F933 /* Pods-Examples-NativeMessageExample */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Examples-NativeMessageExample"; path = Pods_Examples_NativeMessageExample.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C8314830A14A113FF5CF64B7B0549946 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = Sources/Storage.swift; sourceTree = ""; }; - C869FF6A4E0AFD704A0FA11F50448CEF /* WormholyMethodSwizzling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WormholyMethodSwizzling.h; path = Sources/Objc/WormholyMethodSwizzling.h; sourceTree = ""; }; - C8D8B82C01EBFA91F935A177F4D9C1D7 /* IQKeyboardReturnManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardReturnManager-Info.plist"; sourceTree = ""; }; + C86E7B7B7BB35A919A914A174E125A7A /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + C8B93BF6FE9F9C181C11A80BA91A4930 /* HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsPayload.swift; sourceTree = ""; }; C8E0F49D3F9CF6715FD8D2D98638F20F /* Quick-iOS */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Quick-iOS"; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C97674DE28752F26BE12E99A268EA4F2 /* Quick-iOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Quick-iOS.release.xcconfig"; sourceTree = ""; }; - C9A1D9F64D4051E4B289E73937C42FF9 /* Heartbeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Heartbeat.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Heartbeat.swift; sourceTree = ""; }; - CA082F651F11D8C913684BE5E889FEA9 /* _ObjC_HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatsPayload.swift; sourceTree = ""; }; - CA6FA77DAB27AAA6EB48FC6BC66D0F0D /* IQKeyboardToolbarManager+Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Deprecated.swift"; path = "IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Deprecated.swift"; sourceTree = ""; }; - CB3663379ECD63B20466EF5967266590 /* FIRCurrentDateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCurrentDateProvider.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.h; sourceTree = ""; }; + C92509E734A6C345C96274A3E981A6A6 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + C9293F38470C63C2962F16E019C59547 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+ToolbarManagerDeprecated.swift"; path = "IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManagerDeprecated.swift"; sourceTree = ""; }; + C936250F69BC4E03BF6EFDD20C6E0449 /* IQKeyboardToolbarManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Debug.swift"; path = "IQKeyboardToolbarManager/Classes/Debug/IQKeyboardToolbarManager+Debug.swift"; sourceTree = ""; }; + C9391B97E8AE9BB43422D8C5BC9536AC /* CwlMachBadInstructionHandler.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlMachBadInstructionHandler.release.xcconfig; sourceTree = ""; }; + C9A9B7E43BDAD2F718FFD17A863D0A84 /* XCTestSuite+QuickTestSuiteBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestSuite+QuickTestSuiteBuilder.m"; path = "Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m"; sourceTree = ""; }; + CA51FBC8E872CD7ACAD950A44AB5F027 /* CwlCatchException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlCatchException.m; path = Sources/CwlCatchExceptionSupport/CwlCatchException.m; sourceTree = ""; }; + CA61691E97C846F19ADB7C40FD2B4ADB /* IQKeyboardReturnManager+UITextFieldDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardReturnManager+UITextFieldDelegate.swift"; path = "IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextFieldDelegate.swift"; sourceTree = ""; }; + CA715F2887DD043810B1AFE30E508AC1 /* IQKeyboardResignHandler+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardResignHandler+Internal.swift"; path = "IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler+Internal.swift"; sourceTree = ""; }; + CA8395F2E2F83FAF9D50EF21F95C710A /* _ObjC_HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatController.swift; sourceTree = ""; }; + CA8B0499887AFBE40464AD6F5DDA6C5F /* RequestModelBeautifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModelBeautifier.swift; path = Sources/Utils/RequestModelBeautifier.swift; sourceTree = ""; }; + CAD3B3265A52A20F40CA87019535A969 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; CB3BEA64D4C9043A08F3A930EDD0E944 /* Pods-Examples-AuthExample-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-AuthExample-umbrella.h"; sourceTree = ""; }; CB413D4FC5F9DFD4E06B1F4EC9D9074F /* ConsentViewController-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ConsentViewController-iOS-umbrella.h"; sourceTree = ""; }; - CB6B3D895D685ED1C8498161122E6D56 /* SourceLocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SourceLocation.swift; path = Sources/Nimble/Utils/SourceLocation.swift; sourceTree = ""; }; - CB6DE7F50A35034ACED6E318472E9B95 /* IQKeyboardNotification-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardNotification-prefix.pch"; sourceTree = ""; }; - CB7953BC41FE8D8C62F54D300AD2BFFB /* IQTitleBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTitleBarButtonItem.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQTitleBarButtonItem.swift; sourceTree = ""; }; - CB8F1E10FDD04E9CE3BE4DB16B3043EF /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Quick/Filter.swift; sourceTree = ""; }; - CBE191C81958F269F0967C1724EAF1B7 /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; - CC3FED565A6CA2CA259AF2EEC3466425 /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; - CC9AE9B277DB33061EF7D070BDA6B44C /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; - CD1CDA52379B0E559EF41AFF18873C26 /* JSONView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSONView.swift; path = Sources/JSONView/JSONView.swift; sourceTree = ""; }; - CD49D5CCB9DFA5474E6C9B8A872F61E7 /* FirebaseCoreInternal.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreInternal.modulemap; sourceTree = ""; }; - CDDDB1E71C30352FDEF7C83C02CF7745 /* IQKeyboardCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardCore-dummy.m"; sourceTree = ""; }; - CE31A63E42D84DB9BFB057CD01A26F7B /* IQKeyboardCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardCore.modulemap; sourceTree = ""; }; - CE68FDF75CC5AB27C334D196C063E5F4 /* ThrowAssertion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowAssertion.swift; path = Sources/Nimble/Matchers/ThrowAssertion.swift; sourceTree = ""; }; - CE708006F79C98E799811B91F9FA402C /* IQKeyboardReturnManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardReturnManager.modulemap; sourceTree = ""; }; - CEB98F11904104FA5986274E5E3AD1BF /* IQTextInputView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputView.swift; path = IQKeyboardCore/Classes/IQTextInputView.swift; sourceTree = ""; }; + CBE8437615205B25F5BEF35B3A81EDEE /* QuickConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickConfiguration.swift; path = Sources/Quick/Configuration/QuickConfiguration.swift; sourceTree = ""; }; + CBF89707947635E807790F88B0A8BD10 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; + CC14A8A1A0D472EF58D5491F0B14547E /* IQTextInputViewNotification.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextInputViewNotification.debug.xcconfig; sourceTree = ""; }; + CC56497384E780278F916D6C57EA4951 /* CwlPreconditionTesting */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CwlPreconditionTesting; path = CwlPreconditionTesting.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + CCE82D92BB4A30E93E343AE451E79C32 /* BeResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeResult.swift; path = Sources/Nimble/Matchers/BeResult.swift; sourceTree = ""; }; + CDE29F7E2C2B8181BDC86D8BC3C43A2F /* AsyncExample.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncExample.swift; path = Sources/Quick/Examples/AsyncExample.swift; sourceTree = ""; }; + CE4C5BB8F7EA63BD8D6D7AA25EF08757 /* BeGreaterThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThan.swift; path = Sources/Nimble/Matchers/BeGreaterThan.swift; sourceTree = ""; }; + CE61A8CA9758CA1D4AA14AA0909D6F4A /* Callsite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Callsite.swift; path = Sources/Quick/Callsite.swift; sourceTree = ""; }; + CE83326423A35E77F8489B85BACF722B /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; + CE860B2EA5C79C372454DCB7851C091C /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; + CEB05A5C3231DDF5CB5C7608FDAAED1A /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; + CEDE01BAA77F62D91DCA1484E7720CB7 /* Wormholy.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Wormholy.modulemap; sourceTree = ""; }; + CEEF2772E3AD8AFE9DAE3F2083371D77 /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; + CF03731063A8BCF7639F74A1880DBAEF /* CwlCatchExceptionSupport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlCatchExceptionSupport.debug.xcconfig; sourceTree = ""; }; CF2874772D1FCD934DCD53213E94B8D6 /* Pods-TVOSExampleAppUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TVOSExampleAppUITests.release.xcconfig"; sourceTree = ""; }; - CF870810804034F6AECC0FBAFE0DC8D4 /* IQKeyboardToolbar-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardToolbar-Info.plist"; sourceTree = ""; }; - CF9C53FA56236C99A2DD68A546446E60 /* QuickConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickConfiguration.h; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.h; sourceTree = ""; }; + CF5214681ADBB06F82221BD6E6C63ECF /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; + CFAC1713790B2F45ED9DFC538B41EAF1 /* CwlCatchExceptionSupport-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CwlCatchExceptionSupport-Info.plist"; sourceTree = ""; }; CFC7850E9B7310BAB913C6048A714A7D /* SPUserDataCoreToNativeAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPUserDataCoreToNativeAdapter.swift; sourceTree = ""; }; - CFDDCD05F125493153660F528D3F0D50 /* IQTextView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQTextView-dummy.m"; sourceTree = ""; }; + CFEF89211FE63A0A4B6ADD195A259172 /* Wormholy-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Wormholy-dummy.m"; sourceTree = ""; }; D021AFCDBBA61E7E3DD77F234D1D5B43 /* Pods-TVOSExampleApp-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TVOSExampleApp-Info.plist"; sourceTree = ""; }; - D07165294032BC465A489F3B4973CA64 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; - D0A2539FF4BB3036DDCCBA8C73FE63B8 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRApp.h; sourceTree = ""; }; - D0EE0EF7B41939A08E077B538D1C574F /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkMessageCode.h; sourceTree = ""; }; + D03736E44507497FC9B090CBB6B354E3 /* FIRFirebaseUserAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirebaseUserAgent.h; path = FirebaseCore/Sources/FIRFirebaseUserAgent.h; sourceTree = ""; }; + D0A20F94BAC0F3868916549EF7807042 /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallations.h; sourceTree = ""; }; + D0CF9E05F7A901F3CF7A759DA305AB77 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + D0E78647084792E4319064B21AE398EC /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = GoogleUtilities/Privacy/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; D15D3DB152A6F0E9F5C482B377B5F225 /* Pods-Examples-ConsentViewController_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-ConsentViewController_Example-dummy.m"; sourceTree = ""; }; - D16C3ABE9FB947B9FE3B6C21F667D025 /* Callsite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Callsite.swift; path = Sources/Quick/Callsite.swift; sourceTree = ""; }; - D17C9FC560818F417156435E89D1D08F /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; - D18A08E958F91835B67DA617DC313A92 /* RaisesException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RaisesException.swift; path = Sources/Nimble/Matchers/RaisesException.swift; sourceTree = ""; }; - D18DC336E57A1818C8206883DADAEE9D /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = FirebaseCore/Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - D249544530276105CB9036CD6A7192A1 /* Closures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Closures.swift; path = Sources/Quick/Hooks/Closures.swift; sourceTree = ""; }; - D25A947E6669C5DD957CE3956C908ED1 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULAppDelegateSwizzler.h; sourceTree = ""; }; - D28280D3333BCEB4A4F9664245E627BE /* IQKeyboardNotification.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardNotification.release.xcconfig; sourceTree = ""; }; - D29219EDB23C34E00F2E2562696C9D72 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - D292891B6BD80BF02FD70ACD1FE697A2 /* ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist"; sourceTree = ""; }; - D2D4E2CA4FAC5D4ADD2C8AE2C401DDE1 /* _ObjC_HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatController.swift; sourceTree = ""; }; - D31B6019D60BE8E6CBB60928E3CA4C69 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - D34603469A654EB2572EC096EFA28BF7 /* QuickSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpec.m; path = Sources/QuickObjectiveC/QuickSpec.m; sourceTree = ""; }; - D34A2DCD23DA65175EFE09E23F089D2F /* IQTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextView.swift; path = IQTextView/Classes/IQTextView.swift; sourceTree = ""; }; - D34F48F0156F59F5CC1403BACC7B28BF /* IQTextInputViewNotification-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQTextInputViewNotification-dummy.m"; sourceTree = ""; }; - D374C38A488A93BD2F7C740BC5E16715 /* Section.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Section.swift; path = Sources/Models/Section.swift; sourceTree = ""; }; - D3876108CB5C02CDEF3FBBCF054D49DE /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - D4059E58B61B45F599225364F1B17FBB /* Nimble-tvOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "Nimble-tvOS-Info.plist"; path = "../Nimble-tvOS/Nimble-tvOS-Info.plist"; sourceTree = ""; }; + D18192CB0AEDAA2F8ED65D84ABE9181E /* IQKeyboardNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardNotification-Info.plist"; sourceTree = ""; }; + D192A166EAE8C2745ED41DCC1E40295A /* PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PromisesObjC-Info.plist"; sourceTree = ""; }; + D1C32D73EB2B645FC9BF38D9365ECCEA /* UIViewController+ParentContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+ParentContainer.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIViewController+ParentContainer.swift"; sourceTree = ""; }; + D1EF5C57CF95EEDFB6147F92D19FD6F7 /* UIView+IQKeyboardExtensionDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardExtensionDeprecated.swift"; path = "IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionDeprecated.swift"; sourceTree = ""; }; + D1F15C0CB1373E0CDEC3585B63805043 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; + D292C84B70317E9D64F83924C0B422A0 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + D2AD834000B280096FEB80FBEBD9A414 /* CwlPosixPreconditionTesting */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CwlPosixPreconditionTesting; path = CwlPosixPreconditionTesting.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + D2B8222ABD79FEDFA24A209D578BAC54 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; + D3626ADBB3B7D16166250CB83C71FD62 /* WeakContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WeakContainer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/WeakContainer.swift; sourceTree = ""; }; D407B14424BEC0F39C5A5519E9569AAB /* SPCCPAManagePreferenceViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPCCPAManagePreferenceViewController.xib; sourceTree = ""; }; + D40DAEECEA07B34CD1EA6C66DCEB2C6C /* CwlCatchExceptionSupport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlCatchExceptionSupport.release.xcconfig; sourceTree = ""; }; D4316DD881EB24CB8967689A40A4A0E9 /* SPAction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPAction.swift; path = ConsentViewController/Classes/SPAction.swift; sourceTree = ""; }; - D4C600042597B3B8F838711B5AED3258 /* HooksPhase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HooksPhase.swift; path = Sources/Quick/Hooks/HooksPhase.swift; sourceTree = ""; }; - D5182A11E3C599618A7632AF166DB46F /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; - D55FFC30E365D28FDCD0832530ACB9AD /* ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; sourceTree = ""; }; D58978C5A6A1FD143B441530BC082B6F /* SPJSReceiver.js */ = {isa = PBXFileReference; includeInIndex = 1; path = SPJSReceiver.js; sourceTree = ""; }; - D65ACDC02BA4514660F679FCD9A0756F /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; + D594C81A655ECF45EF32CF2373208F47 /* TextTableViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = TextTableViewCell.xib; path = Sources/UI/Cells/TextTableViewCell.xib; sourceTree = ""; }; + D5A667FE13700AECFF9987CEE895483B /* CwlPreconditionTesting-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlPreconditionTesting-prefix.pch"; sourceTree = ""; }; + D5B09BA535863D4B01B71BFC5473DBC4 /* AsyncExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncExampleGroup.swift; path = Sources/Quick/Async/AsyncExampleGroup.swift; sourceTree = ""; }; + D648943AD1475644A64F5CB20717192A /* CustomHTTPProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomHTTPProtocol.swift; path = Sources/CustomHTTPProtocol.swift; sourceTree = ""; }; D68B5CCB4312B3C7ABA7A6A77426DA41 /* Pods-TVOSExampleAppUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TVOSExampleAppUITests-acknowledgements.plist"; sourceTree = ""; }; - D6A6DE7640DC5A22D829314963941AE8 /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; - D6DAFF4C34A4E5072E581581BD3C7320 /* Await.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Await.swift; path = Sources/Nimble/Utils/Await.swift; sourceTree = ""; }; - D746E7C5CDD1B63CAB246CFC106852CD /* IQKeyboardReturnManager+UITextViewDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardReturnManager+UITextViewDelegate.swift"; path = "IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextViewDelegate.swift"; sourceTree = ""; }; - D7DAD66D2C0B565E62B4669B3823B281 /* QuickConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickConfiguration.m; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.m; sourceTree = ""; }; - D7E1722F5F469B205A5C3074B48B377E /* FirebaseCoreInternal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.release.xcconfig; sourceTree = ""; }; - D8797AB7EE07B93744B4C6EA2CA2DE2F /* IQKeyboardToolbarManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Internal.swift"; path = "IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Internal.swift"; sourceTree = ""; }; - D89E5C002D5CCC712E8E9B86A46E4EA8 /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; - D8C8EC15FFBB6E926508B6E365732D16 /* String+C99ExtendedIdentifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+C99ExtendedIdentifier.swift"; path = "Sources/Quick/String+C99ExtendedIdentifier.swift"; sourceTree = ""; }; - D929F351C4ABDF90B788BA719A5E73A8 /* WHString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHString.swift; path = Sources/Subclasses/WHString.swift; sourceTree = ""; }; + D760B0C71322AB916F76ED1A91FFAACB /* FirebaseCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCore.modulemap; sourceTree = ""; }; + D7D9476A97FCF2A9624775C73C84BCE3 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; + D7DD3BF471A00FE478039145CC4CA53A /* nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "nanopb-Info.plist"; sourceTree = ""; }; + D81FFB2F47CA4FE79FA032EFB71FA53C /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; + D82C3C1195B47C222E0B307D98FBBBEA /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; + D8540E8DFF7E9730C196553A9FDCC15B /* IQTextInputViewNotification-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextInputViewNotification-prefix.pch"; sourceTree = ""; }; + D8DECABB4D3F288EE625E49E0AFF6EC0 /* IQTextInputViewNotification.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQTextInputViewNotification.modulemap; sourceTree = ""; }; + D900D75BBBD137EE15A051E0E5E8234A /* FirebaseInstallations.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.release.xcconfig; sourceTree = ""; }; + D91F547B9A243B421B112EBB9E56482A /* IQKeyboardToolbarManager+Action.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Action.swift"; path = "IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Action.swift"; sourceTree = ""; }; + D9587A31540199F76B2B124FE2554006 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/FIROptionsInternal.h; sourceTree = ""; }; DA758438A6F939B8785F036B8FB7EC9A /* UIApplicationExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = UIApplicationExtensions.swift; sourceTree = ""; }; - DAAEE94E181881930B3A616D1E8C8189 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkConstants.h; sourceTree = ""; }; - DAD416FB0232AE5BB84D6F2DCAFC49DA /* Wormholy-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Wormholy-prefix.pch"; sourceTree = ""; }; - DB2B7DC94D8855BFFC13168F43F0437E /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; - DB9B5CAC7BC1F418C4E3474C13399DE3 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; + DB2C05762A801FB522FBCB138FF1441E /* BeginWithPrefix.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWithPrefix.swift; path = Sources/Nimble/Matchers/BeginWithPrefix.swift; sourceTree = ""; }; + DC2639B1E829A5F90E03607464AF4414 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; DC502882CA19E12678FC23F8D01856B7 /* Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.plist"; sourceTree = ""; }; - DC713AD012A9EBC46DA1EFA1EFB4489E /* IsAppEncrypted.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IsAppEncrypted.m; path = third_party/IsAppEncrypted/IsAppEncrypted.m; sourceTree = ""; }; DC7D803B015186A369CD4EEDDEA702D5 /* SPCCPAVendorDetailsViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPCCPAVendorDetailsViewController.xib; sourceTree = ""; }; - DCC870B83648F3CA50231F6E01EB1590 /* RequestCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = RequestCell.xib; path = Sources/UI/Cells/RequestCell.xib; sourceTree = ""; }; - DD61C6CDAD99EE348E865C3B680976B1 /* IQKeyboardAppearanceConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardAppearanceConfiguration.swift; path = IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceConfiguration.swift; sourceTree = ""; }; + DCF101A454E3B6E2A06629217D2236D8 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; + DD2F058EBD88A736E9743D0365C027B9 /* IQKeyboardNotification-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardNotification-dummy.m"; sourceTree = ""; }; DD709697921D84227DDB94894644BB1A /* Pods-Examples-NativeMessageExample-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-NativeMessageExample-Info.plist"; sourceTree = ""; }; - DE0A807B5EB10912A9D61E4B221D2FFC /* RequestsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestsViewController.swift; path = Sources/UI/RequestsViewController.swift; sourceTree = ""; }; - DE49826BDCB06935CCB17FFF3CCCF6EA /* IQBarButtonItemConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItemConfiguration.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItemConfiguration.swift; sourceTree = ""; }; - DF0AF3A3FEA5052A9E6F4A2EF769DE92 /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; + DE7D597697731D9160062FDCF285D382 /* IQKeyboardToolbarManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarManager.swift; path = IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager.swift; sourceTree = ""; }; + DEB7328BDFB8614EAD2EAD799824C0FE /* FirebaseAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.release.xcconfig; sourceTree = ""; }; + DEC7E2308BBA2F7476024112C8965575 /* BeAnInstanceOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAnInstanceOf.swift; path = Sources/Nimble/Matchers/BeAnInstanceOf.swift; sourceTree = ""; }; + DEDFF0DA9BDA7F9C27F2062C14B8D371 /* nanopb-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-umbrella.h"; sourceTree = ""; }; + DF194C25B34AEA58DDC39968922E81AC /* ExpectationMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpectationMessage.swift; path = Sources/Nimble/ExpectationMessage.swift; sourceTree = ""; }; DFAD2755DFADA501DCDEE7481708E60D /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-SPGDPRExampleAppUITests-dummy.m"; sourceTree = ""; }; - DFBC83D9A9995191A977A068539989C3 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; DFD25270998D2DDE6B8FC4CE1F1E2368 /* SPGDPRVendorDetailsViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPGDPRVendorDetailsViewController.xib; sourceTree = ""; }; + E0043707CF07D44F9220C7CF087E2D95 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; E022694EBD639B47976FDF834FB1C922 /* Date.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Date.swift; sourceTree = ""; }; - E034FCC9A3D1F65B7CC563D7E8E6294A /* UIView+Resign.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Resign.swift"; path = "IQKeyboardManagerSwift/Resign/UIKItExtensions/UIView+Resign.swift"; sourceTree = ""; }; - E040BACA9612D744000329AA00281651 /* BeLessThanOrEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThanOrEqual.swift; path = Sources/Nimble/Matchers/BeLessThanOrEqual.swift; sourceTree = ""; }; - E14229DA1BD3D1A260C2C18D5FDAD459 /* IQKeyboardToolbar.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbar.release.xcconfig; sourceTree = ""; }; - E206D039662A29E2E130B8FABA1AD6FD /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FirebaseInstallations.h; sourceTree = ""; }; + E04746FC82CB76AC1DA809F7843EAF6C /* Nimble.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Nimble.h; path = Sources/Nimble/Nimble.h; sourceTree = ""; }; + E0918FFEBF892D4F27789FC8F1E3DA1D /* Quick-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-iOS-prefix.pch"; sourceTree = ""; }; + E0A038CAFCE049FCCA2B19001A4C4C96 /* FirebaseCoreInternal-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-umbrella.h"; sourceTree = ""; }; + E0A060E5DA1F12147B39CB28131FA6D2 /* AsyncSpec+testMethodSelectors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "AsyncSpec+testMethodSelectors.m"; path = "Sources/QuickObjectiveC/AsyncSpec+testMethodSelectors.m"; sourceTree = ""; }; + E0BC8BB0FE4725CF87EB0A9F5D400FD6 /* CwlCatchException */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CwlCatchException; path = CwlCatchException.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + E1176A8E7C8F4162FFCA404BE6EEBB1C /* CwlMachBadInstructionHandler */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CwlMachBadInstructionHandler; path = CwlMachBadInstructionHandler.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + E18ABD7A97D4F0D64B0819C191C35E84 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + E1B76FB29EA8F4A3A6137D51D23FADEF /* CwlCatchException-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlCatchException-umbrella.h"; sourceTree = ""; }; + E1E7F1F0F821C28473F4A86C41B25AB7 /* DSL+AsyncAwait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+AsyncAwait.swift"; path = "Sources/Nimble/DSL+AsyncAwait.swift"; sourceTree = ""; }; + E2129BA7BCD8B648B9FB349C176DA621 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; + E28183BA96EE0DB449E61EDB2A843AFE /* SatisfyAllOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAllOf.swift; path = Sources/Nimble/Matchers/SatisfyAllOf.swift; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* FirebaseCore */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseCore; path = FirebaseCore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E310792516BBF6E37FF1D14CA2366DD1 /* UIView+RespondersObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+RespondersObjc.swift"; path = "IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+RespondersObjc.swift"; sourceTree = ""; }; - E38AD2DA734E1D224F8BF3ADBD01DA22 /* IQKeyboardManager+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Position.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Position.swift"; sourceTree = ""; }; + E2EAA97E201B165642B004876504B27A /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; + E302764BB6FE971DF646B352FF0DE874 /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; + E32F4479E29DABAF7BF872B9AAAF4A6C /* HeartbeatLoggingTestUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatLoggingTestUtils.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatLoggingTestUtils.swift; sourceTree = ""; }; + E34D926F7527B1A43827738B3FA8609C /* CwlMachBadInstructionHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CwlMachBadInstructionHandler-dummy.m"; sourceTree = ""; }; + E3863FD1C556D54C3E982C50EA82E084 /* CwlPreconditionTesting-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CwlPreconditionTesting-dummy.m"; sourceTree = ""; }; E3A9EBD09DA6CFE051E1666471870367 /* Pods-Examples-ObjC-ExampleApp-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-ObjC-ExampleApp-resources.sh"; sourceTree = ""; }; - E3B980FCE4E284EFB5392F27CE383026 /* RequestTitleSectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTitleSectionView.swift; path = Sources/UI/Sections/RequestTitleSectionView.swift; sourceTree = ""; }; - E3C8475127BA34A26F98446F349AB89C /* NSURLSessionConfiguration+Wormholy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLSessionConfiguration+Wormholy.m"; path = "Sources/Objc/NSURLSessionConfiguration+Wormholy.m"; sourceTree = ""; }; E3F2C0FF7F6DD89E6D8730E213E8BEC2 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-Info.plist"; sourceTree = ""; }; - E4AF32FBF02B449775F61102094711AF /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = ""; }; + E3FA1A4311E27E13B867AB056D3F2625 /* IQKeyboardReturnManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardReturnManager-prefix.pch"; sourceTree = ""; }; + E41CA8AA74470D540AF0516CAAB225AD /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = spm_resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + E4269C979DF800C248CEE4EF6E553E03 /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = ""; }; E4B024DDAEF0A1292C4585B5E4480C09 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.markdown"; sourceTree = ""; }; - E5D142EA412F121AF15706C0EA03E524 /* Colors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Colors.swift; path = "Sources/Support Files/Colors.swift"; sourceTree = ""; }; + E58DF34CA22A58EAA384996DA0161FAB /* UIScrollView+IQKeyboardManagerExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+IQKeyboardManagerExtension.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtension.swift"; sourceTree = ""; }; + E5CB5ECF48DAC0B2C0B6B7AD94DD9AE5 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; E5D6584C89A476EAB14E471673012300 /* GDPRPMConsentSnapshot.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GDPRPMConsentSnapshot.swift; sourceTree = ""; }; + E5DBC71098660DE5B08E3F9DDD5A97F8 /* IQKeyboardReturnManager+UITextViewDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardReturnManager+UITextViewDelegate.swift"; path = "IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextViewDelegate.swift"; sourceTree = ""; }; + E5F243977118F9FF7014EFBD618CBCBD /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; + E60E9F9CA7724A87FB2F40B32C5FF349 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; E618051BCBE2BDF5EB953B3E37A09230 /* SPUIColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPUIColor.swift; sourceTree = ""; }; - E645797C9F8763A16C47B162A02D0FF8 /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; - E64A915B64F830EEDD19CD122EBDA01E /* FIRTimestamp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestamp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRTimestamp.h; sourceTree = ""; }; - E651D575660BC8B65F75E486C03C6360 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; - E66A5E9A8C9E7C4627F04B393E25D1DD /* RequestTitleSectionView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = RequestTitleSectionView.xib; path = Sources/UI/Sections/RequestTitleSectionView.xib; sourceTree = ""; }; - E6D89F418EFAE2A75B94235B50A0DEA4 /* IQTextView+Placeholderable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQTextView+Placeholderable.swift"; path = "IQTextView/Classes/IQTextView+Placeholderable.swift"; sourceTree = ""; }; - E6E65D2E96449D11C0EC3C2A9FD6AF96 /* IQPlaceholderable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPlaceholderable.swift; path = IQKeyboardToolbar/Placeholderable/IQPlaceholderable.swift; sourceTree = ""; }; - E6F5B8E77427FACDFD1FCB9B112E01B4 /* BeCloseTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeCloseTo.swift; path = Sources/Nimble/Matchers/BeCloseTo.swift; sourceTree = ""; }; - E70DF14428EB0C35012D69FFCB808172 /* CwlBadInstructionException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlBadInstructionException.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift; sourceTree = ""; }; + E62B48AD78A8199016E9CC780B0C438D /* IQKeyboardConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardConstants.swift; path = IQKeyboardCore/Classes/Constants/IQKeyboardConstants.swift; sourceTree = ""; }; + E65AF204BB83B541A6F7685A67A74FE2 /* IQKeyboardToolbarManager+Toolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Toolbar.swift"; path = "IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Toolbar.swift"; sourceTree = ""; }; + E6B6055780BBF42CF95D5E9937FA4B31 /* Section.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Section.swift; path = Sources/Models/Section.swift; sourceTree = ""; }; + E72C75729C5B0D555147F8E096CDF979 /* NimbleSwiftTestingHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleSwiftTestingHandler.swift; path = Sources/Nimble/Adapters/NimbleSwiftTestingHandler.swift; sourceTree = ""; }; E74D488FAB1BF71E1683399DE24561E3 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.debug.xcconfig"; sourceTree = ""; }; + E750A7087DBD3C4BACD13CFF8ED23007 /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; + E75AE00E671306E9A58B2E5A5815D48F /* Wormholy-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Wormholy-umbrella.h"; sourceTree = ""; }; + E78C616233D5D9825EB073523F0DC62C /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; + E79685EF80A61FB64E0432F6162A1238 /* IQKeyboardResignHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardResignHandler.swift; path = IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler.swift; sourceTree = ""; }; E809C61DAFA64E047AFD6934B3D368B1 /* SPPMHeader.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPPMHeader.xib; sourceTree = ""; }; - E8D8EFE36A8C64F7BC1D214068840043 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; - E97F8A08BF6E031ECE081242D60B7814 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = ""; }; + E8ABD8DA9A1E576B3BF3437149CD387C /* IQKeyboardNotification.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardNotification.modulemap; sourceTree = ""; }; + E8B44AA61F315BDAD17181D9386F5FB4 /* GoogleUtilities-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-umbrella.h"; sourceTree = ""; }; + E93B05AB7F2D74755F556BEFA27ABDB6 /* Polling+Require.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Polling+Require.swift"; path = "Sources/Nimble/Polling+Require.swift"; sourceTree = ""; }; + E9434B13D13532D911BB386151B42943 /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; + E96E350596132C3A65B58D48E75232FE /* IQKeyboardToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbar.swift; path = IQKeyboardToolbar/Classes/IQKeyboardToolbar.swift; sourceTree = ""; }; + E97532B3008EAD598A48D9E01B06B2B7 /* AsyncSpec.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncSpec.swift; path = Sources/Quick/Async/AsyncSpec.swift; sourceTree = ""; }; E98FFA7D2B12F8B56DF12ED0872E6ED9 /* SPStringifiedJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPStringifiedJSON.swift; path = ConsentViewController/Classes/SPStringifiedJSON.swift; sourceTree = ""; }; - E9A1E6E9364855F70D75F15A754E6259 /* WormholyConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = WormholyConstructor.m; path = Sources/Objc/WormholyConstructor.m; sourceTree = ""; }; - E9C973AA0FBD247656B58ACB72D0EFD9 /* Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Async.swift; path = Sources/Nimble/Matchers/Async.swift; sourceTree = ""; }; + E9EAAA300C2D6362912AE15C9D01E4CF /* IQKeyboardReturnManager.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardReturnManager.release.xcconfig; sourceTree = ""; }; E9FBF67C3246E3D2ADA23088089A3045 /* ConsentViewController-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ConsentViewController-iOS-prefix.pch"; sourceTree = ""; }; - E9FE76191909FD3FCB451D593F1C6737 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; EA0D26720A72EBD5E2B83B2AAB765B08 /* Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.markdown"; sourceTree = ""; }; - EA4BF567D923787989FE060507848120 /* nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "nanopb-Info.plist"; sourceTree = ""; }; + EA5173EB199F9C06632F1D554BFEA535 /* Flow.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Flow.storyboard; path = Sources/UI/Flow.storyboard; sourceTree = ""; }; + EA5D8EF50A7F32B84EBC90AF394CB7C8 /* NimbleEnvironment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleEnvironment.swift; path = Sources/Nimble/Adapters/NimbleEnvironment.swift; sourceTree = ""; }; EA6EBBDAFEAF9A267D8A8E92122DD4B2 /* Pods-Examples-NativeMessageExample-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-NativeMessageExample-acknowledgements.markdown"; sourceTree = ""; }; + EA79E967714FB4D90542038839E9CB94 /* PromisesObjC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PromisesObjC.modulemap; sourceTree = ""; }; EA9FBE05AF82518F98FDD4F55F6BE908 /* Pods-Examples-SourcepointFirebaseDemo-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-SourcepointFirebaseDemo-acknowledgements.plist"; sourceTree = ""; }; EAABE4CA58AFE687902C3F3C7046A681 /* Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.plist"; sourceTree = ""; }; - EAC367538AF3A91F50F8236BC0EE96FD /* IQKeyboardToolbarConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarConfiguration.swift; path = IQKeyboardToolbarManager/Classes/Configuration/IQKeyboardToolbarConfiguration.swift; sourceTree = ""; }; - EBEB0A041DA976F6476AA0359B5185C7 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; - EC43BF4EE2CB5F1B08821248B0A321D0 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = ""; }; - EC949CD0164BF153DCE350A7138FEEA2 /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; - ECDCF0F3A30E9CE7ACD3E327E2BB92D2 /* NSBundle+CurrentTestBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSBundle+CurrentTestBundle.swift"; path = "Sources/Quick/NSBundle+CurrentTestBundle.swift"; sourceTree = ""; }; - ECF1DF610DCD827C87F956BB565C8C42 /* ErrorUtility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ErrorUtility.swift; path = Sources/Quick/ErrorUtility.swift; sourceTree = ""; }; - ED6203D42429D5E944274588317B782D /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - ED80881EA361D147468F7A78A220F6BD /* IQKeyboardToolbarPlaceholderConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarPlaceholderConfiguration.swift; path = IQKeyboardToolbar/Classes/Placeholder/IQKeyboardToolbarPlaceholderConfiguration.swift; sourceTree = ""; }; - EDCCE99C011988A7788B57327E840618 /* Postman.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Postman.swift; path = Sources/Models/Postman/Postman.swift; sourceTree = ""; }; + EADB2648A8FBA0C2EDBA5849395F04A1 /* IQTextView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQTextView-Info.plist"; sourceTree = ""; }; + EBB21CCD209327E78352F268FE5D05DD /* CwlCatchException-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CwlCatchException-dummy.m"; sourceTree = ""; }; + ED1FC96C6EDA99EF67C2DA3C4A33582A /* Wormholy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Wormholy.swift; path = Sources/Wormholy.swift; sourceTree = ""; }; + ED4C44088D195E59E09E786F41DAD355 /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = Sources/Nimble/Matchers/Map.swift; sourceTree = ""; }; + ED6272CCA83508A3A34BA111C6A513BB /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Quick/Filter.swift; sourceTree = ""; }; EDCE60703B147513DEAC7E5E96A65154 /* Pods-Examples-SourcepointFirebaseDemo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-SourcepointFirebaseDemo-dummy.m"; sourceTree = ""; }; EDF69D30CA3D2B0C488942CB6B5D247E /* SPCCPACategoryDetailsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPCCPACategoryDetailsViewController.swift; sourceTree = ""; }; - EDFF452AC6C1DF3F38720636E6C7779C /* DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DSL.h; path = Sources/NimbleObjectiveC/DSL.h; sourceTree = ""; }; - EE443A8F6053E38AD6572F7DEAC8ADA9 /* IQKeyboardToolbarManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarManager.swift; path = IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager.swift; sourceTree = ""; }; - EE5BE77C3FC31BEBE1959B057B72625C /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - EE7644B44C737CD8744A0546FDEF85C4 /* IQKeyboardExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardExtended.swift; path = IQKeyboardCore/Classes/IQKeyboardExtended.swift; sourceTree = ""; }; + EDFB09D332CF36721F7A83B65175E88F /* IQTextInputViewInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputViewInfo.swift; path = IQTextInputViewNotification/Classes/IQTextInputViewInfo.swift; sourceTree = ""; }; + EE0739C1018CA17711EA54F49417946B /* IQTextInputView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputView.swift; path = IQKeyboardCore/Classes/IQTextInputView.swift; sourceTree = ""; }; + EE38E7D54FBC5FA87D165B5A4FA59EC9 /* RequestsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestsViewController.swift; path = Sources/UI/RequestsViewController.swift; sourceTree = ""; }; + EE54C9146230FA28D06FA1D85664BB37 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/Public/GoogleUtilities/GULNSData+zlib.h"; sourceTree = ""; }; EE78CA102B7BD2FFD251FA862D4239DC /* SPQRCode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPQRCode.swift; sourceTree = ""; }; - EED09E4AF92B56AE1B2C7DE6D9DA2A17 /* SatisfyAnyOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAnyOf.swift; path = Sources/Nimble/Matchers/SatisfyAnyOf.swift; sourceTree = ""; }; - EF6ACC04C0CF3B52A8A4D2AE80C72C21 /* GoogleAppMeasurement.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = GoogleAppMeasurement.xcframework; path = Frameworks/GoogleAppMeasurement.xcframework; sourceTree = ""; }; - EF7642BA7C25EE9CE4D0167A9285A7EB /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; - EFE625540A6B06B320DEBAAB44730FC9 /* GoogleUtilities.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleUtilities.modulemap; sourceTree = ""; }; - EFF908F59C1FE27798A96D99142EA4F1 /* SPMobileCore-iOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "SPMobileCore-iOS.debug.xcconfig"; sourceTree = ""; }; - F041EEB75423280546DFBC551F5404E6 /* IQKeyboardManagerSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardManagerSwift-Info.plist"; sourceTree = ""; }; + EE841CFFC5421051274500BC8FF6A8DB /* IQKeyboardToolbar-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardToolbar-Info.plist"; sourceTree = ""; }; + EF6900942D6C588E3E56535DCCF82EFD /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + EF9D8ACBD90B202ED7671AED491D5F28 /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; + EFFB42EBA6B36A4E257D3F51EF9DC7DC /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = FirebaseCore/Internal/Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + F00A310658C463AD2E3C33FB171EC9F8 /* IQTextInputViewNotification-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQTextInputViewNotification-dummy.m"; sourceTree = ""; }; F045FC917421FFB4E16A9C05BD0B27C8 /* SPFocusableTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPFocusableTextView.swift; sourceTree = ""; }; F04688DB063193CB7C0D050E87ACE1FE /* Pods-Tests-ObjC-ExampleAppUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Tests-ObjC-ExampleAppUITests"; path = Pods_Tests_ObjC_ExampleAppUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - F0892D257C6CCA0E22BA2F114C72304C /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; - F1E4924E9DBA14EC60329B779BFEED62 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; - F24C628165B8DB74332AD3E82D3C33B9 /* FIRInstallationsBackoffController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsBackoffController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.m; sourceTree = ""; }; - F3741CD9BC1027E29254EA670253678E /* IQTextInputViewNotification-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextInputViewNotification-prefix.pch"; sourceTree = ""; }; - F3C7E3E02E322F52CD58F40E74EF7F61 /* IQKeyboardCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardCore.release.xcconfig; sourceTree = ""; }; - F4037A93A2FFC8C9D236D1187E49BE34 /* FirebaseAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.debug.xcconfig; sourceTree = ""; }; + F12B154BCE2F829B35E14B1572A6A11B /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; + F1491DC45BF249A59AD8CC59BC57813D /* DSL+Wait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+Wait.swift"; path = "Sources/Nimble/DSL+Wait.swift"; sourceTree = ""; }; + F22C32C8E37A2E81C19E81D115A7CD82 /* Quick-tvOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Quick-tvOS-prefix.pch"; path = "../Quick-tvOS/Quick-tvOS-prefix.pch"; sourceTree = ""; }; + F3AA96C6D3CC2339D41DFCCA064AE221 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; + F3F02076DF398AB04994F86592D2A03B /* SuiteHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SuiteHooks.swift; path = Sources/Quick/Hooks/SuiteHooks.swift; sourceTree = ""; }; + F43C191D5EFD4AA4564971E2F3E68FCF /* IQScrollViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQScrollViewConfiguration.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQScrollViewConfiguration.swift; sourceTree = ""; }; + F440B4F75146FD828851926CEEE43163 /* Equal+Tuple.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Equal+Tuple.swift"; path = "Sources/Nimble/Matchers/Equal+Tuple.swift"; sourceTree = ""; }; + F4717DE3C7C32C18CA230DEF9AE3D3FE /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardToolbarManager/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; F4A7C470969D8D9C13E2AC186A25DCCD /* Pods-Tests-AuthExampleUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-AuthExampleUITests.debug.xcconfig"; sourceTree = ""; }; - F4B90CB65E8E18EDBB82A5DFF8B7C18B /* SPMobileCore-tvOS-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; name = "SPMobileCore-tvOS-xcframeworks.sh"; path = "../SPMobileCore-tvOS/SPMobileCore-tvOS-xcframeworks.sh"; sourceTree = ""; }; - F545BBA9094C526C1501712CDDA78D9A /* ShareUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShareUtils.swift; path = Sources/Utils/ShareUtils.swift; sourceTree = ""; }; - F54EF2D634D1BB821FC146E1CB6A5DA4 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore/FirebaseCore.h; sourceTree = ""; }; + F536C8567BCC74900C15620A5D873D25 /* WHDate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHDate.swift; path = Sources/Subclasses/WHDate.swift; sourceTree = ""; }; F56C090F1C9366C37AB253AAB9FE1A05 /* jest.config.json */ = {isa = PBXFileReference; includeInIndex = 1; path = jest.config.json; sourceTree = ""; }; - F5C5D437971F6D991D20A6E5F5D3B8A0 /* Wormholy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Wormholy.swift; path = Sources/Wormholy.swift; sourceTree = ""; }; - F5DDB6CE9B4FD98DB1C0D219C54244D2 /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; - F6074F24366079A141C8F1DBD9CA9423 /* SwiftLint.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftLint.release.xcconfig; sourceTree = ""; }; + F5C59B4ED524ABF6D2C2622A2C3CF9CE /* IQKeyboardManager+ToolbarManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+ToolbarManager.swift"; path = "IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManager.swift"; sourceTree = ""; }; + F5E901D6799A4080D3DA5DE97F41AB72 /* BeLogical.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLogical.swift; path = Sources/Nimble/Matchers/BeLogical.swift; sourceTree = ""; }; F61D4ECE7209D921C3706D389D3DD21B /* Pods-Examples-SourcepointFirebaseDemo-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-SourcepointFirebaseDemo-umbrella.h"; sourceTree = ""; }; - F64A2FDC5B0349D02BF540D6DF4DF988 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - F689C5A3ACDD78CF0C9C3F8CA36ACCF9 /* FirebaseCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCore-Info.plist"; sourceTree = ""; }; + F62081B5872B4B4CA6605D0C45EC6AA5 /* AssertionDispatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionDispatcher.swift; path = Sources/Nimble/Adapters/AssertionDispatcher.swift; sourceTree = ""; }; + F63D0B2446F40712AA7AD3941D1BCB53 /* ExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleHooks.swift; path = Sources/Quick/Hooks/ExampleHooks.swift; sourceTree = ""; }; + F63F06A3984BCA7D29B059A0408A9A12 /* IQTextInputViewInfoModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputViewInfoModel.swift; path = IQKeyboardReturnManager/Classes/IQTextInputViewInfoModel.swift; sourceTree = ""; }; + F66C852B103CF039C0B2B16B131E3FD5 /* IQKeyboardToolbar.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardToolbar.modulemap; sourceTree = ""; }; F69850BE0942AAF7569973E18927CB8F /* SPCCPAPartnersViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPCCPAPartnersViewController.xib; sourceTree = ""; }; - F6A2A3D44995EA5C38D0F4AF00A81DBB /* RequestModelBeautifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModelBeautifier.swift; path = Sources/Utils/RequestModelBeautifier.swift; sourceTree = ""; }; - F6F31AFA538CB2FB65E615BE7F520EDE /* ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; sourceTree = ""; }; - F74222BB8873866100AAA6C02D20B19C /* AdapterProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdapterProtocols.swift; path = Sources/Nimble/Adapters/AdapterProtocols.swift; sourceTree = ""; }; - F7707F3F0889C0C9C59F2BB31C131DFE /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQTextView/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - F7D27B3BC4B43A5259CFA3F41260ED3E /* URL+FileName.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+FileName.swift"; path = "Sources/Quick/URL+FileName.swift"; sourceTree = ""; }; + F6B816906F8A377175AF29FD385267AF /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; + F6C453108D1D255C879A6DF690CA1097 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; + F7FC3DF3EC50F2594E30DE7CD391DC34 /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; F82FF19FFE4F10307AE69709C965B235 /* SPUserDefaults.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPUserDefaults.swift; sourceTree = ""; }; F86DDBECF7964F601C28D8407C8E5660 /* Pods-Examples-ConsentViewController_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-ConsentViewController_Example-umbrella.h"; sourceTree = ""; }; - F877C4036FE50FB670F75F5EAD9FFA58 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLoggerLevel.h; sourceTree = ""; }; - F880F9AA85117E6E28ED36AB9067EACB /* GoogleAppMeasurement-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleAppMeasurement-xcframeworks.sh"; sourceTree = ""; }; - F8B951FF6E5527CC53B9BFE276741666 /* IQTextView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextView-umbrella.h"; sourceTree = ""; }; - F8BD6514F748BCC7B75BA5FB9BE7B16B /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; F8C910DBDF5A6D2D1FD47EEAE69D7867 /* SPGDPRCategoryDetailsViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPGDPRCategoryDetailsViewController.xib; sourceTree = ""; }; F8E495568942DD4F992BA43DDA0C4D7A /* SPGDPRNativePrivacyManagerViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPGDPRNativePrivacyManagerViewController.xib; sourceTree = ""; }; - F93D34EC9BAC65B4503EA2272FDAC97D /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; + F90DDF1898184087BBAD77CEC96A842D /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULApplication.h; sourceTree = ""; }; F9444BEB61B4B9D850FF5A2216A3C8DF /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests"; path = Pods_Tests_FirebaseTests_SourcepointFirebaseDemoUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; F956E149F5B195BB7833F97FC6211AE8 /* IQTextInputViewNotification-IQTextInputViewNotification */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQTextInputViewNotification-IQTextInputViewNotification"; path = IQTextInputViewNotification.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - F962F7B041F7A5DE38CEEFDE23AEAE8F /* FIRFirebaseUserAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirebaseUserAgent.h; path = FirebaseCore/Sources/FIRFirebaseUserAgent.h; sourceTree = ""; }; F9811C119055ADA50A0FB38EFA8F3237 /* SPCampaigns.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPCampaigns.swift; path = ConsentViewController/Classes/SPCampaigns.swift; sourceTree = ""; }; - F98D368CF7C7803BF4E87565AC7897A9 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/GULReachabilityMessageCode.h; sourceTree = ""; }; - F99323A8C236B9F091BF10F94BE6D3EE /* EndWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndWith.swift; path = Sources/Nimble/Matchers/EndWith.swift; sourceTree = ""; }; - F99AF73E7C41B8613AFACAABF9AECCB6 /* Quick-tvOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Quick-tvOS-prefix.pch"; path = "../Quick-tvOS/Quick-tvOS-prefix.pch"; sourceTree = ""; }; + F99A847226F1CB64296C8D40579E77BF /* UITableView+IndexPaths.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITableView+IndexPaths.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UITableView+IndexPaths.swift"; sourceTree = ""; }; + F9DA5DD14F328DC15C1B8894F9EBE99A /* Nimble-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Nimble-tvOS.release.xcconfig"; path = "../Nimble-tvOS/Nimble-tvOS.release.xcconfig"; sourceTree = ""; }; FA727BF5D9541C98C22C9ECC911576E2 /* IQKeyboardToolbarManager */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardToolbarManager; path = IQKeyboardToolbarManager.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - FA8099143512E09070A602FE420D2834 /* ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist"; sourceTree = ""; }; - FA86756693B9DB9926E8FCA51F4C36D9 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkURLSession.h; sourceTree = ""; }; - FA968706B5EEEFFAA325ABA9E1DF31E8 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; FB66F7B9C00367A78FF52612B556CDAC /* CampaignConsent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CampaignConsent.swift; sourceTree = ""; }; - FBAA18AB5D53716CC24AE5AE7479096E /* GoogleAppMeasurement.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.debug.xcconfig; sourceTree = ""; }; FBD0C3FE4BCECF88927C3C5C450B34C6 /* SPCCPANativePrivacyManagerViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPCCPANativePrivacyManagerViewController.xib; sourceTree = ""; }; - FC1ED749A4177BCABC2AE08A9FA57AF4 /* QuickSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpec.h; path = Sources/QuickObjectiveC/QuickSpec.h; sourceTree = ""; }; + FBE547F9D281008A40E7EBF35CB5799A /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; FC6FA136BB9434E8C85E93ED49F4B26A /* Pods-Tests-ObjC-ExampleAppUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-ObjC-ExampleAppUITests-dummy.m"; sourceTree = ""; }; + FC706AD81CC3AB9974F689DF1937213B /* SPMobileCore-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "SPMobileCore-tvOS.debug.xcconfig"; path = "../SPMobileCore-tvOS/SPMobileCore-tvOS.debug.xcconfig"; sourceTree = ""; }; FC7F0CF2EA5DF59C59D9995890DA5C47 /* IQKeyboardCore */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardCore; path = IQKeyboardCore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; FC93A0989C42FA19D96552F13D5FE50C /* Pods-Tests-ConsentViewController_ExampleTests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Tests-ConsentViewController_ExampleTests"; path = Pods_Tests_ConsentViewController_ExampleTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; FCAF9049188EC86589F780B62B42DDE9 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = ConsentViewController/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; + FCC4D7BA5D8ACEC8567D676494521B19 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore/FirebaseCore.h; sourceTree = ""; }; + FCE122F25E5F686A943505B92705B9FE /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/FBLPromises/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + FD17AB599D447FDD7701ECCA77D1AD28 /* DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DSL.h; path = Sources/NimbleObjectiveC/include/DSL.h; sourceTree = ""; }; FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - FD5AA4B45035B9981FF7BD5B20966813 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; - FE1A731941BF55255C950320665A2A0E /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; - FE51EF9BE79DDFCDE77B544F87114596 /* ResourceBundle-nanopb_Privacy-nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; sourceTree = ""; }; + FDA0BEEBE00BD74FC0487862440E6BFC /* BeNil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeNil.swift; path = Sources/Nimble/Matchers/BeNil.swift; sourceTree = ""; }; + FEA8166E0B3BDC5149E48354C4FFF351 /* CwlCatchException.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CwlCatchException.modulemap; sourceTree = ""; }; FEB3469995AD06E9930DFD048DEE190D /* Pods-Examples-AuthExample-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-AuthExample-acknowledgements.plist"; sourceTree = ""; }; FEF9AC89E9C4BD37AC0AB78B535D1CFC /* IQKeyboardNotification */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardNotification; path = IQKeyboardNotification.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - FF3DE28EC023BDBD11F6F6DE55C8339C /* IQKeyboardManagerSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-prefix.pch"; sourceTree = ""; }; - FF60025BD595A9B87DF6E21EC8D4B2AC /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; - FF699755FDEB1A32DC1FB124C03FF4D7 /* JSONCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSONCell.swift; path = Sources/JSONView/JSONCell.swift; sourceTree = ""; }; + FF7F0ED12041FA1C08C401A7D0DD29A1 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; FFA2CE5D89698BA9D6FFE87F26CDA2D1 /* Pods-Examples-AuthExample.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-AuthExample.modulemap"; sourceTree = ""; }; FFA2E0A79C45CF0AD19A3B7E3CAD26C4 /* SPJson.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPJson.swift; path = ConsentViewController/Classes/SPJson.swift; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 03EB9DFE61E0CC054CADFB7618A83968 /* Frameworks */ = { + 000744A22F056D1ACFFF53D76DA66D07 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 0493A780470523316FA37A7DB223699E /* Frameworks */ = { + 009B4E1274DD2C2C4074D7C5529DA4E5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 445E3B02C8A2566281256D9C80A8D29E /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 05E53C506D18CD886DCB4672BE14B281 /* Frameworks */ = { + 08AFBCD69271C9588FA8EA9629E1C52F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A5FD73CEAE371E38C2BD9494529D4D79 /* Foundation.framework in Frameworks */, + 890F2A7EE9B3FB2379ED6C6CBBF29CC7 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 08AFBCD69271C9588FA8EA9629E1C52F /* Frameworks */ = { + 0A5198C27E33B953ED2DF643920BC6FB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 890F2A7EE9B3FB2379ED6C6CBBF29CC7 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2802,18 +3259,18 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 1256C88D936D3F16EDD74DABEFD89068 /* Frameworks */ = { + 0EB3B1D27605CFA64DC1B63D649D3673 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 66C358F15530E6C4D022541E8B2BC0BB /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 12E9F11ED7E7B82EAC92B3A900F7180D /* Frameworks */ = { + 0EFDF9BC594EFFE4C5A7FD2D96EFB6BE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 0B333576C998A22F40A9F863C766600F /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2825,25 +3282,33 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 1EB339C2D27CFCFD2DD373586E3FF17C /* Frameworks */ = { + 237C978329FEC27D73C6ABBA809DBFD2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 710A48C754849C6722436AEA00D0ECD7 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2328BE003AE93D87F33F8F74D7CC5FBA /* Frameworks */ = { + 26376FA8601049B60F39D906C5A257BD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2BCEF89B9923D40943E3E4003F4ABBA6 /* Frameworks */ = { + 2A031A8265B7D227A02918A943A64988 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + B18BEC8BD699176D5D6CAA4AB0BCE05F /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2CB2F22D5291A6AA116633689630D79B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E82DDDA0C50F8A8F71937396713C05C1 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2855,132 +3320,149 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 36013DFA90A65E56FA29B7CE8391D41D /* Frameworks */ = { + 3654099DF15C121851622091E2B4DB65 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 36B67855F36A9537BF6E6D8D02D58DF9 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 434F6983A890594D0B5925D63AE6D800 /* Frameworks */ = { + 3C7CE62AE6796E4FADCD6027F116FFC1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4127F9B1C671DA671F0EA6AE3147A769 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4431423263674A223853BD604A8C0020 /* Frameworks */ = { + 3D02115CC54E7A89E8801BE807F1A499 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4158C6379E483A62403F03EB25858608 /* Foundation.framework in Frameworks */, + AD2B648A78DC5710B819145242E3481D /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 49309C1F1100BF5D1968378897B59F67 /* Frameworks */ = { + 3E0CEC856DA9B52A6E0D5B83A1B9DDF3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4FC6350ACAB5C0E10FBE6A98F3D26303 /* Frameworks */ = { + 40572B615C6B4FBEDB33A62E175DB37D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 0BCC9000571E193669B73A666B8A3D6A /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 53DEF2C0A13A294EE1A6FE101F59AAD5 /* Frameworks */ = { + 4586B31D5DDFC2E92F122F59FE3FFBF2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - BFB085699213B05145CA61FD45F3EA59 /* Foundation.framework in Frameworks */, + 9BC7FF7C000E8F447AF0074D51F6CAB4 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 57A199B53EDFC6FBEC983CF58BBF2C76 /* Frameworks */ = { + 48699882B71F910BD7EC1AC8932B936A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - DF75750A67E1E48AE298C062FD70BC4C /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5F072BBF89939E63D6BF638074C86413 /* Frameworks */ = { + 4873E4A7D76A69126B6587B1291893A6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + B97A46D6C135E70B8BEE5A0713C8E80A /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6373234F020EF54696372FB178A65FE4 /* Frameworks */ = { + 55EEE6BEC89AB4B4E0B4A8F62E92A16A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 10AA1B43CFA96387A9A7C7B95769137F /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 65E7F7EEE4136D94B15B9D8AF9705022 /* Frameworks */ = { + 560FB6E6B173D97F7060F16641CAA89B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 6E17FE74B30432F638275F6CD4B6C1C6 /* Foundation.framework in Frameworks */, + E32A1F3DD67E2E985E18B4FC270BDEE4 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 68BB0039C1D6A620D64E9A92165001BD /* Frameworks */ = { + 5BEFF5E5967A4ED038E752652B2E241B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 937EB7F077EC7D4EF382A23CE99676BE /* Foundation.framework in Frameworks */, + C61B99C3F20DC28772152E16AA7841A7 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5EA1CBB580A88C07A2F9994A2C1A909D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 9319D365F13BBB7D38102A9E6D67D7B4 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6373234F020EF54696372FB178A65FE4 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 10AA1B43CFA96387A9A7C7B95769137F /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6956FA19294717D8CC5759C13C9773BC /* Frameworks */ = { + 6491404F2F73F57F2611028F216781B8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 78D36ECD4B1C245F739FE0DCDD86D62A /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6AE865F7E3B420E7A49DA10C60BA93F3 /* Frameworks */ = { + 65E7F7EEE4136D94B15B9D8AF9705022 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 95FF58EA21190CCEDD53A1B4D3260C05 /* Foundation.framework in Frameworks */, + 6E17FE74B30432F638275F6CD4B6C1C6 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6E2E0ACB33F10107C6933677324E4D72 /* Frameworks */ = { + 68BB0039C1D6A620D64E9A92165001BD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9D6B406DFE5A9167829E4738ECD8EC95 /* Foundation.framework in Frameworks */, + 937EB7F077EC7D4EF382A23CE99676BE /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6E89B01FA1E4FF5EB6F4E6F3C5EF8410 /* Frameworks */ = { + 6AF6D046D1AF251955E922D8260F707E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + BEC0038CE9707B2E08351E97D3E1FDE9 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6FF33B3FCF0E21C5594B2E4429C6C373 /* Frameworks */ = { + 6DB090D3625DF5A0A943B097B684FAFC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 76ED191D770F8422137375EDE2E4CB52 /* Frameworks */ = { + 768DA24AC38B3F4FF4E43462EF2D16D1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 6228B3B995726E67C14441AB35FBC912 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2992,6 +3474,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7AA9CE2D849E71D1CE434FA6A1480EE0 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 2E3795EA821D8EC9119EB36E532D0914 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 7B01AEB533FDA6296E3FFB665435D831 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3000,18 +3490,18 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 8A185835F7E89D308B72119C68C7FFE5 /* Frameworks */ = { + 94D9A52BA054208A73780BC730F35D83 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4B42F51D94C858CBB016EB5BAE9E4DCA /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 98052AB8CC8D11C82ADFC5CD042221FB /* Frameworks */ = { + 97734AF23BAFDD9059940BB984031C26 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 424CC30C0AB08ABF402C23CB194BED7B /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3023,135 +3513,143 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A2F66768AFB52C232404143825B7E34D /* Frameworks */ = { + 9D4048B37AD802E5417BEFEF44078720 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 6BF40CF982E084600A1260FB1015E402 /* Foundation.framework in Frameworks */, + FD6157D85A9A7AB220A711E00E4C108D /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A677777E40AFA2E04F4EB9028544D2DC /* Frameworks */ = { + 9D8BFD9AD424B7A73EAB7915EF1D2573 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 77AB953F19B64A50F29AED23EC5BA19D /* Foundation.framework in Frameworks */, + 8929213E64105C6B992DF474C3C13FED /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A6CA8CD0CA723B6D231520859E24B463 /* Frameworks */ = { + A2CFC93830AA520275FF11AAA28A4594 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 6005F6E17906C91BC51FD0069729DAB9 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A8669C07FE629DA708F2252940375223 /* Frameworks */ = { + A6BF0781AB285F3B56493419780FE0B5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + C50F88DBA526326EFCF1E593A0DF5FF9 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B61FBD13498780C440FD77521B5941EA /* Frameworks */ = { + A9CC4CBF4597D2F8FB86996E644391A1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BD2B5DB25813C353D5401BD691A7742D /* Frameworks */ = { + B1CD884C14F7DB422E3EADA9A825ECDC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 8096E5FBF3ED5E75A63F7C63773023B0 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - BE3DDF9C4932E813F78EF44711868611 /* Frameworks */ = { + B1F9E1F75FA155557411E0F312A3DA1B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F2403D69BDD57FA89AD9FF5AEFE537AF /* Foundation.framework in Frameworks */, + 3B7613669A268FDFC65FB3281E3BDE10 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - CE03BF3C41945475527AC5CA72564B97 /* Frameworks */ = { + B846584335CD0B5FA518D2859435421F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4194CE6A267555C8C4CC9FDA73FC6C30 /* Foundation.framework in Frameworks */, + B097CC2322B6F10D3D7691212853402A /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D4CC4E4DC4CEDDD884A659A4B164B46D /* Frameworks */ = { + BC78784BFBD44F1DCC75EA78D79EEC45 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 9102E9871401005BC3F6C310D5A080F0 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D7D9DA463924C08F3CD524FCB249E185 /* Frameworks */ = { + BFCC274DA07CBF4F3CDB760054C16A5D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - BB8A5796876F7839C3F1E14B719C5BDF /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - DD5391FE13BB5347441B6E9FF1BB8ECD /* Frameworks */ = { + C5765F1338BEAC2F44A2331E1F15FDEC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - DFFB83DC83553570E55D25D598612C86 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - E21B0342B4D6D8B092DFC2DE606CF515 /* Frameworks */ = { + C62A9C83F0EBDACB922F2904AD526C9D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A9A1DE032852CBEDC62C1430220736F3 /* Foundation.framework in Frameworks */, + 7D79E4E25E2D93C44FDE85B2E64DBED1 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - E2CD45C2F52E5AA7B9FF0944DFB3DE28 /* Frameworks */ = { + C72BD6F0A91BCDBBE181B375EC3A1544 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9BFA367FB38DE0E8D21755ABE7D80C37 /* Foundation.framework in Frameworks */, + 482E9B1513D10FBFF50099B87FC1F4CE /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - EB3450189B2F50D6076A83FCBE934B3B /* Frameworks */ = { + C8B71FBCC124EB5CC27A107EF98CF99B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 1EE64A869E61174C340E75D9ADA34D63 /* Foundation.framework in Frameworks */, + BE037C7CBC3562EB603B24BAF53B4932 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F1EEC1E77859553ACF485270880FCEF5 /* Frameworks */ = { + D38852BBF73A5929287F1C9A0CA3FEF3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 12D06C9C16E2AAD1E58609B40375602B /* Foundation.framework in Frameworks */, + 0B732EC53A3809F2EAAB812ED6D69A4A /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F57B6C6D7EE189B5945BEE909F4AD03D /* Frameworks */ = { + D4596A33CC8E7284C36A9A6E4D8C8E41 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0BA117D41AE7DF743E2BD691BD9E85B0 /* Foundation.framework in Frameworks */, + 318844FA1E66E09EEBAA61EF15A4EA9E /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DE76C3657CF9DC6B2F296A1BB6E59358 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 28CD80B0662073826349FD578F593830 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F63B4591ADEF12A5CF6B8C60B69160AC /* Frameworks */ = { + F57B6C6D7EE189B5945BEE909F4AD03D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - ADB4B9194EC1EFD97D1D7BBC693801AA /* Foundation.framework in Frameworks */, + 0BA117D41AE7DF743E2BD691BD9E85B0 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3163,11 +3661,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FB7CE9A96D46C69595DE8FA0F125D29B /* Frameworks */ = { + FCEA13C9055643FE22634A8599C28503 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D8A6246F8C58A876775D7ADD1BB3BF60 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3190,172 +3687,202 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 011B5AAD21FE4240C8DEB1CEBD068D18 /* Placeholderable */ = { + 002B13B8086B166BE23A153BEB5D5CAA /* Resources */ = { isa = PBXGroup; children = ( - E6E65D2E96449D11C0EC3C2A9FD6AF96 /* IQPlaceholderable.swift */, + 1A0C1E8502B39156213F23E163801B61 /* PrivacyInfo.xcprivacy */, ); - name = Placeholderable; + name = Resources; sourceTree = ""; }; - 012A6ED21838C19AB8BF155DBEBFE61B /* IQKeyboardManagerSwift */ = { + 021575100EBA18055CADF4DC909E6662 /* Support Files */ = { isa = PBXGroup; children = ( - DC0A1C1F63F501CE3A1136EC18DAC18C /* Appearance */, - 8055BFE00E34B6E70583E6045C5E4771 /* Core */, - EEB7C792E85E99D4A6E2ED38C0B9FB8E /* IQKeyboardToolbarManager */, - 20B9A61E14C6E3E00699D13BCEFD9D6C /* Resign */, - AB40E16D19E066C2EAAE346C2D1D4344 /* Resources */, - 74D5C72DF3926441113581131EAEB1D7 /* Support Files */, + E8ABD8DA9A1E576B3BF3437149CD387C /* IQKeyboardNotification.modulemap */, + DD2F058EBD88A736E9743D0365C027B9 /* IQKeyboardNotification-dummy.m */, + D18192CB0AEDAA2F8ED65D84ABE9181E /* IQKeyboardNotification-Info.plist */, + 83BDC41EE48D14B7FE0F66177BCDDC49 /* IQKeyboardNotification-prefix.pch */, + 4F3051F39A3AC899C9B540C520ABD5B9 /* IQKeyboardNotification-umbrella.h */, + A89672116452AEA51E63CDD4641DF6AC /* IQKeyboardNotification.debug.xcconfig */, + 16E26D53D76686D672481814AA43BE6D /* IQKeyboardNotification.release.xcconfig */, + 36DEF60663BF3F1C3171A0D8C5246EC2 /* ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist */, ); - name = IQKeyboardManagerSwift; - path = IQKeyboardManagerSwift; + name = "Support Files"; + path = "../Target Support Files/IQKeyboardNotification"; sourceTree = ""; }; - 09F805ABD7A03D563627DCD34E7D6FCF /* Pods-Tests-NativeMessageExampleUITests */ = { + 05E8229C67AF1627CAC71910A66FC3B0 /* Support Files */ = { isa = PBXGroup; children = ( - 2DEBB1FFE8E70FD83CC1E5697E8A7D50 /* Pods-Tests-NativeMessageExampleUITests.modulemap */, - 4343EC7089D74DDC80E6AFD2047A3942 /* Pods-Tests-NativeMessageExampleUITests-acknowledgements.markdown */, - B0FB9D7152307E006BDF6F5C4CE9A9A1 /* Pods-Tests-NativeMessageExampleUITests-acknowledgements.plist */, - 13887FF5AE96C61A75493F453E51A166 /* Pods-Tests-NativeMessageExampleUITests-dummy.m */, - 9526B810DA94A28F937F48E17CC1F5C9 /* Pods-Tests-NativeMessageExampleUITests-Info.plist */, - 379542535146E00C9B0A63990E7B5E0C /* Pods-Tests-NativeMessageExampleUITests-resources.sh */, - 1BE46900BF8CBA13050460771A8DD7DD /* Pods-Tests-NativeMessageExampleUITests-umbrella.h */, - 8F1B2B1E2EA16E8AA8C6A4E3DB461D04 /* Pods-Tests-NativeMessageExampleUITests.debug.xcconfig */, - 994E32106A3E483B71224175EE751364 /* Pods-Tests-NativeMessageExampleUITests.release.xcconfig */, + 94A7D22137E1C496D0F85A3CEB620587 /* nanopb.modulemap */, + 3D63F62472A8C43656BA08C00F303457 /* nanopb-dummy.m */, + D7DD3BF471A00FE478039145CC4CA53A /* nanopb-Info.plist */, + 324EA3CFFCCB06B5329A0DB87CC19A13 /* nanopb-prefix.pch */, + DEDFF0DA9BDA7F9C27F2062C14B8D371 /* nanopb-umbrella.h */, + 4B97AD650825ED664F18595A643EDB28 /* nanopb.debug.xcconfig */, + B7BDFAB7F2C3D6412FF9E6427BF0BF5E /* nanopb.release.xcconfig */, + 76A72D913A71A255191CC97A5B9D6B00 /* ResourceBundle-nanopb_Privacy-nanopb-Info.plist */, ); - name = "Pods-Tests-NativeMessageExampleUITests"; - path = "Target Support Files/Pods-Tests-NativeMessageExampleUITests"; + name = "Support Files"; + path = "../Target Support Files/nanopb"; sourceTree = ""; }; - 0C917E5469234F3315EB1ADF45CE09F3 /* images */ = { + 06F8FDC643D67A98CE8F1A821D6747A3 /* CwlPosixPreconditionTesting */ = { isa = PBXGroup; children = ( - 87295588035B548CD735B7461612EFE9 /* Barcode.png */, - 3AC41A4E33416989A7D8796B73BA4A07 /* SP_Icon.png */, + 33B80CC8EE0ECAB695524973E039F545 /* CwlCatchBadInstructionPosix.swift */, + F76A1FE97B6E83910B12115B6507642E /* Support Files */, ); - name = images; - path = ConsentViewController/Assets/images; + name = CwlPosixPreconditionTesting; + path = CwlPosixPreconditionTesting; sourceTree = ""; }; - 0EB4BEBF532C8B17F00DE331BFDD5659 /* FirebaseCore */ = { - isa = PBXGroup; - children = ( - B791C67B9CB613FFCA78731AAA7A7EB3 /* FIRAnalyticsConfiguration.h */, - A123E38DC02B7A9891537D34EAF2FF2F /* FIRAnalyticsConfiguration.m */, - D0A2539FF4BB3036DDCCBA8C73FE63B8 /* FIRApp.h */, - 34770D9CD9627CB3880DBE85F37B46FF /* FIRApp.m */, - D31B6019D60BE8E6CBB60928E3CA4C69 /* FIRAppInternal.h */, - EF7642BA7C25EE9CE4D0167A9285A7EB /* FIRBundleUtil.h */, - 085476F937B552A0F347FE7F00748A4E /* FIRBundleUtil.m */, - FA968706B5EEEFFAA325ABA9E1DF31E8 /* FIRComponent.h */, - B8340B27E184F8421DC2BDC320B0EC19 /* FIRComponent.m */, - 609504ADB18D0DE57FC0374DBDE7B928 /* FIRComponentContainer.h */, - 0E8F094B97DF26E1067DBDBAADD8C29D /* FIRComponentContainer.m */, - E4AF32FBF02B449775F61102094711AF /* FIRComponentContainerInternal.h */, - E9FE76191909FD3FCB451D593F1C6737 /* FIRComponentType.h */, - 7573518237677C0E6B57D981941036A6 /* FIRComponentType.m */, - 6B3240D98DC2763C0FBE6B506C6FE0D6 /* FIRConfiguration.h */, - 3C43E7E8AE8076F10073A2614223F8CE /* FIRConfiguration.m */, - EC43BF4EE2CB5F1B08821248B0A321D0 /* FIRConfigurationInternal.h */, - F54EF2D634D1BB821FC146E1CB6A5DA4 /* FirebaseCore.h */, - 7BD776E0D688EFE6C5C2D7CA1A9592FA /* FirebaseCoreInternal.h */, - F962F7B041F7A5DE38CEEFDE23AEAE8F /* FIRFirebaseUserAgent.h */, - ABF5610414805D9DAD4B9DFDCCE56C6F /* FIRFirebaseUserAgent.m */, - EE5BE77C3FC31BEBE1959B057B72625C /* FIRHeartbeatLogger.h */, - B6A97FB37359EC78BBE5FC6FB07F29AF /* FIRHeartbeatLogger.m */, - 997D2B0154C946E71B9C8D06F6CFA0F8 /* FIRLibrary.h */, - D29219EDB23C34E00F2E2562696C9D72 /* FIRLogger.h */, - FE1A731941BF55255C950320665A2A0E /* FIRLogger.m */, - 25FF581EB46311D42E2C761725E1EEAA /* FIRLoggerLevel.h */, - B55549E765741E265FC8791EB86F5D41 /* FIROptions.h */, - 600E89064ED7EA878CD1793C8FB49FB7 /* FIROptions.m */, - B461DAEC591BD038A169FB4459420346 /* FIROptionsInternal.h */, - E64A915B64F830EEDD19CD122EBDA01E /* FIRTimestamp.h */, - 16FB1DD23699E89820267A22E344C0AC /* FIRTimestamp.m */, - 57434CC18B0FC331E66F37CD7439689F /* FIRTimestampInternal.h */, - 789D6CE53772597578AFD80063B3F720 /* FIRVersion.h */, - 9C4502AF490D6892982195E8C8A7F53B /* FIRVersion.m */, - D55427E63EF9DEE6E92A645C583EC659 /* Resources */, - 3A639C54FDA014A995FE251AD7132854 /* Support Files */, - ); - name = FirebaseCore; - path = FirebaseCore; - sourceTree = ""; - }; - 0F5D725A0A249611674A232B647F46A4 /* nanopb */ = { + 0709C87B50985F726D3BE2DE95A4CA60 /* IQTextInputViewNotification */ = { isa = PBXGroup; children = ( - 31A42AE160F48E88DA30410AE011A898 /* pb.h */, - 4E1A73CA05BF2ED526F076813B62F2B1 /* pb_common.c */, - 55D2BE0375A9AF892350A380EF538C31 /* pb_common.h */, - 3BEEEBEE99D5EE87F9174D9AEDE948BB /* pb_decode.c */, - 3E6AF75BEF80C8B35D142920BD1597F4 /* pb_decode.h */, - A2C680E8C88B85688EB764C70AE04356 /* pb_encode.c */, - 393BACE0E9330B72FB850A8561E40F6E /* pb_encode.h */, - 64BE3CD927540BEF1DCFB937B299ED78 /* decode */, - 73CA51851AE293E4E84A5BD2D30A2A03 /* encode */, - 7C2E8E974B96574CC2A8EFADAA132B9C /* Resources */, - D38A8F4900A311E433E0736A4EE0693D /* Support Files */, + EDFB09D332CF36721F7A83B65175E88F /* IQTextInputViewInfo.swift */, + B30228F44B1ECB9333C5BB269B12FC50 /* IQTextInputViewNotification.swift */, + 61050816E063812DD7861EDB337FE984 /* Resources */, + A52E5A716833DBEFD72089C4A4300CCE /* Support Files */, ); - name = nanopb; - path = nanopb; + name = IQTextInputViewNotification; + path = IQTextInputViewNotification; sourceTree = ""; }; - 11DAEF2D042C09852C6ABD0D2A16CDCF /* Support Files */ = { + 09A35AF98906B6C1E6707AAA5A1057F7 /* Support Files */ = { isa = PBXGroup; children = ( - 72F7B1A41381D75BB30E177799B242FF /* JSONView.modulemap */, - B6CE89B16F4EDDF0AD4EAFB1726E592B /* JSONView-dummy.m */, - A14F6FA0580DCA2BEDEFE44D728486BD /* JSONView-Info.plist */, - 83A454F910096BAA82CA9DAD4F3EF633 /* JSONView-prefix.pch */, - 26D1F1D6BCDDDB585293AE58BE566864 /* JSONView-umbrella.h */, - 9240B10CFAEBE33B71A1FB4B8CAA5F5F /* JSONView.debug.xcconfig */, - 2982829D6FF01D4B8FBE37474CFAD8F6 /* JSONView.release.xcconfig */, + 685A59C0FA2ECA35D010228012DE7F0B /* IQKeyboardToolbarManager.modulemap */, + A93FA39A9D83693D979D6C87751F4E5B /* IQKeyboardToolbarManager-dummy.m */, + 969DDE8AF1547A69AC2FA725B6F5CDB2 /* IQKeyboardToolbarManager-Info.plist */, + 7D7548FA0CA956034ED94D367E83596F /* IQKeyboardToolbarManager-prefix.pch */, + 9D7DE976823DEE57DFC868F29DF873AF /* IQKeyboardToolbarManager-umbrella.h */, + 91621E1BA3A89BE74D1E7D017C175F49 /* IQKeyboardToolbarManager.debug.xcconfig */, + 25D4F6A49E547E09FEE315D6A39438D8 /* IQKeyboardToolbarManager.release.xcconfig */, + B7142A9107596D3C6205A0EDB8A388DD /* ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/JSONView"; + path = "../Target Support Files/IQKeyboardToolbarManager"; sourceTree = ""; }; - 1799AC48B9DD92C86B5F92BAFB5683FB /* JSONView */ = { + 09F805ABD7A03D563627DCD34E7D6FCF /* Pods-Tests-NativeMessageExampleUITests */ = { isa = PBXGroup; children = ( - FF699755FDEB1A32DC1FB124C03FF4D7 /* JSONCell.swift */, - 53C022398A396DC90A95FABAF12AA647 /* JSONTreeView.swift */, - CD1CDA52379B0E559EF41AFF18873C26 /* JSONView.swift */, - 11DAEF2D042C09852C6ABD0D2A16CDCF /* Support Files */, + 2DEBB1FFE8E70FD83CC1E5697E8A7D50 /* Pods-Tests-NativeMessageExampleUITests.modulemap */, + 4343EC7089D74DDC80E6AFD2047A3942 /* Pods-Tests-NativeMessageExampleUITests-acknowledgements.markdown */, + B0FB9D7152307E006BDF6F5C4CE9A9A1 /* Pods-Tests-NativeMessageExampleUITests-acknowledgements.plist */, + 13887FF5AE96C61A75493F453E51A166 /* Pods-Tests-NativeMessageExampleUITests-dummy.m */, + 9526B810DA94A28F937F48E17CC1F5C9 /* Pods-Tests-NativeMessageExampleUITests-Info.plist */, + 379542535146E00C9B0A63990E7B5E0C /* Pods-Tests-NativeMessageExampleUITests-resources.sh */, + 1BE46900BF8CBA13050460771A8DD7DD /* Pods-Tests-NativeMessageExampleUITests-umbrella.h */, + 8F1B2B1E2EA16E8AA8C6A4E3DB461D04 /* Pods-Tests-NativeMessageExampleUITests.debug.xcconfig */, + 994E32106A3E483B71224175EE751364 /* Pods-Tests-NativeMessageExampleUITests.release.xcconfig */, ); - name = JSONView; - path = JSONView; + name = "Pods-Tests-NativeMessageExampleUITests"; + path = "Target Support Files/Pods-Tests-NativeMessageExampleUITests"; sourceTree = ""; }; - 17F82C37C7E2D83221E39AFC8AC8D1DC /* GoogleUtilities */ = { + 0A3DD4BD794503E0A0CB1988A01BD03C /* Products */ = { isa = PBXGroup; children = ( - B5C105C4D806AD2D4060A4217DF447CD /* AppDelegateSwizzler */, - 9B524EB05475BC4DB8530AED84406EAA /* Environment */, - F28AF4ADBF7299716C9B04001F95E03C /* Logger */, - 1EE9FEB989E2C56D346127E46689E50D /* MethodSwizzler */, - D4D3D9E278B05D2918E1AE69AC3CA0EE /* Network */, - AF2D81707165FC2EA65B8598F643FD79 /* NSData+zlib */, - E0FB5FE3CF3D72A2EAC9D357F28A2D17 /* Privacy */, - B76F0CC59728A4CA5C396419D790864C /* Reachability */, - 536FABCA968D6550542DB8FD02ADD699 /* Support Files */, - BBD6747C24346965ACFF3488F2EE0690 /* UserDefaults */, + 380358C9A223FE55A10AC25127FF1410 /* ConsentViewController-iOS */, + 4BEAC88AF84CC484F55B8A6C048444D9 /* ConsentViewController-iOS-ConsentViewController */, + 5DC2E71595175144336387BD6D2DE6BD /* ConsentViewController-tvOS */, + 20A4710BBD2EE3CFC496E3AF134BD4FD /* ConsentViewController-tvOS-ConsentViewController */, + E0BC8BB0FE4725CF87EB0A9F5D400FD6 /* CwlCatchException */, + 220D1365CED5CB83C4C0CE1E3DABD3B0 /* CwlCatchExceptionSupport */, + E1176A8E7C8F4162FFCA404BE6EEBB1C /* CwlMachBadInstructionHandler */, + D2AD834000B280096FEB80FBEBD9A414 /* CwlPosixPreconditionTesting */, + CC56497384E780278F916D6C57EA4951 /* CwlPreconditionTesting */, + E2B63D462DB7F827C4B11FD51E4F8E2D /* FirebaseCore */, + 8BB937B1C0DFFCF92F41861C2BC54DDA /* FirebaseCore-FirebaseCore_Privacy */, + 148D0F9E8C7373FEAF40D800FC5F1BAA /* FirebaseCoreInternal */, + 4DB03FD262B678178A44272143846563 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */, + 13C8C8B254851998F9289F71229B28A2 /* FirebaseInstallations */, + 47C581450CDB4A6111CB97EEE0711A8C /* FirebaseInstallations-FirebaseInstallations_Privacy */, + B43874C6CBB50E7134FBEC24BABFE14F /* GoogleUtilities */, + 44E291D18340EAC3F761346198515323 /* GoogleUtilities-GoogleUtilities_Privacy */, + FC7F0CF2EA5DF59C59D9995890DA5C47 /* IQKeyboardCore */, + 6E897F35E5E27028AC58B14B552FBC8D /* IQKeyboardCore-IQKeyboardCore */, + A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */, + 8D8069D3964814114ACEC3084C010B59 /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */, + FEF9AC89E9C4BD37AC0AB78B535D1CFC /* IQKeyboardNotification */, + 120BD4C670EF00F4D5A40AA4B863A7AE /* IQKeyboardNotification-IQKeyboardNotification */, + 15848DEC7727A809830E7F6FC1B6CE0F /* IQKeyboardReturnManager */, + 110BD425B6CAD6801539E2C6AB6E0662 /* IQKeyboardReturnManager-IQKeyboardReturnManager */, + B4B1A58096F15199A14069C5D6AA1C99 /* IQKeyboardToolbar */, + A16FD016E18EACCF6B23F219F2E236FE /* IQKeyboardToolbar-IQKeyboardToolbar */, + FA727BF5D9541C98C22C9ECC911576E2 /* IQKeyboardToolbarManager */, + 80A40EDA3AF0499BDBCFF09467BB49AD /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */, + 06E5B413FEA5A600D76636DA132F8FB9 /* IQTextInputViewNotification */, + F956E149F5B195BB7833F97FC6211AE8 /* IQTextInputViewNotification-IQTextInputViewNotification */, + 0DFD4541FF9DAA31A2FC2A7F6D03ED22 /* IQTextView */, + 847044E56CBBCE1235A6F3CEF3F9F607 /* IQTextView-IQTextView */, + 437B791FEDC5C4B595D6D29500E11197 /* JSONView */, + 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */, + 3227F3FC45681D7CEE5D1355A532398A /* nanopb-nanopb_Privacy */, + C2FCA34B3522D944BAA3DC6A57D99686 /* Nimble-iOS */, + 0D68F2DD4656E2DC0F28ED037671461F /* Nimble-tvOS */, + 8009AFA883EF36EED39CC47F36FE7E69 /* Pods-Examples-AuthExample */, + 55908634686A3DF6ECCEE78419BBA7A9 /* Pods-Examples-ConsentViewController_Example */, + C7D0A4151C95D4FBAD32B247F044F933 /* Pods-Examples-NativeMessageExample */, + 197865AE4C919C97C7E5CE23CE9253D9 /* Pods-Examples-ObjC-ExampleApp */, + 28D5EA4BB4CA750310C6328A9F1F15D9 /* Pods-Examples-SourcepointFirebaseDemo */, + 0215672A26243634BDD3066654D7E3D6 /* Pods-Examples-SourcePointMetaApp */, + 3E88639B1919779EA4D947458F865C3F /* Pods-Tests-AuthExampleUITests */, + FC93A0989C42FA19D96552F13D5FE50C /* Pods-Tests-ConsentViewController_ExampleTests */, + 534D623ADD013C7F78FFE22047E69951 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests */, + F9444BEB61B4B9D850FF5A2216A3C8DF /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests */, + 2701FF4C96D98F0B29DFA47632CB59B0 /* Pods-Tests-NativeMessageExampleUITests */, + F04688DB063193CB7C0D050E87ACE1FE /* Pods-Tests-ObjC-ExampleAppUITests */, + 945767455B6DDF8DBEAADC2013CD7C86 /* Pods-Tests-SourcePointMetaAppUITests */, + 4B52B86C338468857F2E798179EBEC53 /* Pods-Tests-SPGDPRExampleAppUITests */, + C3D163ED35F95B184B10CF3222D35768 /* Pods-TVOSExampleApp */, + 8FAD4B2C2A4A9820171E0345B3BFF0D7 /* Pods-TVOSExampleAppUITests */, + 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */, + 3F238BB22C5201CE689CAF2F766AED95 /* PromisesObjC-FBLPromises_Privacy */, + C8E0F49D3F9CF6715FD8D2D98638F20F /* Quick-iOS */, + 73F566CFB5F21F61AC2FA68F08AA0B2D /* Quick-tvOS */, + 2530BC414137FF7A53A0368B476547B9 /* Wormholy */, + AA92ED38E716E03D3FC758C810953B95 /* Wormholy-Wormholy */, ); - name = GoogleUtilities; - path = GoogleUtilities; + name = Products; sourceTree = ""; }; - 186B6577216BF195D54C838DDE9545C4 /* Resources */ = { + 0A9A8E9926E1430185FD7C07279BFA30 /* Resources */ = { isa = PBXGroup; children = ( - 4104BDBB05CFB43939A47DFF3886F9AE /* PrivacyInfo.xcprivacy */, + D0E78647084792E4319064B21AE398EC /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; + 0C917E5469234F3315EB1ADF45CE09F3 /* images */ = { + isa = PBXGroup; + children = ( + 87295588035B548CD735B7461612EFE9 /* Barcode.png */, + 3AC41A4E33416989A7D8796B73BA4A07 /* SP_Icon.png */, + ); + name = images; + path = ConsentViewController/Assets/images; + sourceTree = ""; + }; + 11011FD9F4782D95DDDEE835FF776E18 /* Support Files */ = { + isa = PBXGroup; + children = ( + 35117BB8160F1268BCD6A94B94FDEBCE /* IQKeyboardCore.modulemap */, + 588242DA939C771DAED4F4CAD87ADD5D /* IQKeyboardCore-dummy.m */, + 8DF68AC15D83B3F9C35B8D2D5F9E42DC /* IQKeyboardCore-Info.plist */, + 2BC6953410731876B3416D9A7D347B27 /* IQKeyboardCore-prefix.pch */, + 118D08AA25F5FBD2C0A9F1604960FCA7 /* IQKeyboardCore-umbrella.h */, + 64C1435AAFD0344CE9E34B6CFFB7E446 /* IQKeyboardCore.debug.xcconfig */, + 1B9F50AC0729A3A5253FB09DBB050D14 /* IQKeyboardCore.release.xcconfig */, + 6692BE461FE698493D4679C8B5A06CCD /* ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/IQKeyboardCore"; + sourceTree = ""; + }; 1883F273E9CC9D50D48578E4D3CD140A /* Pods-Examples-AuthExample */ = { isa = PBXGroup; children = ( @@ -3373,6 +3900,22 @@ path = "Target Support Files/Pods-Examples-AuthExample"; sourceTree = ""; }; + 19D80967BF8D60AF17C2DE7AC7F1C1DD /* Support Files */ = { + isa = PBXGroup; + children = ( + 6418E555DA5A4E396C2E2745514B6FAA /* FirebaseCoreInternal.modulemap */, + 44E39F8D18D1E7093CA122B1010CE382 /* FirebaseCoreInternal-dummy.m */, + 8B7EBFADDF04A200048C6D59F2E2C1CE /* FirebaseCoreInternal-Info.plist */, + 34D989935F30D00E606AE11B4B623E01 /* FirebaseCoreInternal-prefix.pch */, + E0A038CAFCE049FCCA2B19001A4C4C96 /* FirebaseCoreInternal-umbrella.h */, + 985E2F8DBB92E8FF07EB736106587CA2 /* FirebaseCoreInternal.debug.xcconfig */, + 57F011CBC15D2E26EA44927B4C29E325 /* FirebaseCoreInternal.release.xcconfig */, + 7F434422B10709D0CAFE05DFAECA3FCD /* ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseCoreInternal"; + sourceTree = ""; + }; 1D16A01DEF40E77973C9D793910ADA83 /* Pods-Examples-NativeMessageExample */ = { isa = PBXGroup; children = ( @@ -3390,51 +3933,50 @@ path = "Target Support Files/Pods-Examples-NativeMessageExample"; sourceTree = ""; }; - 1EE9FEB989E2C56D346127E46689E50D /* MethodSwizzler */ = { + 1D1CF3CC7E8FFF89945456D8E537B80B /* IQKeyboardToolbarManager */ = { isa = PBXGroup; children = ( - ED6203D42429D5E944274588317B782D /* GULOriginalIMPConvenienceMacros.h */, - BF893A9ABCE11078B3438156F1640B3B /* GULSwizzler.h */, - 04CE77A17EF9DBA011C2708BE08947F3 /* GULSwizzler.m */, + AD8A1623E24EBB185642DD871266F75A /* Array+Sort.swift */, + 790698D1907D96D40B94366B158B24F3 /* IQDeepResponderContainerView.swift */, + B1BEC02223C75794AFCD195F68ED8447 /* IQKeyboardToolbarConfiguration.swift */, + A0F162DFF0A4C069334782DC294C71FF /* IQKeyboardToolbarConstants.swift */, + DE7D597697731D9160062FDCF285D382 /* IQKeyboardToolbarManager.swift */, + D91F547B9A243B421B112EBB9E56482A /* IQKeyboardToolbarManager+Action.swift */, + C936250F69BC4E03BF6EFDD20C6E0449 /* IQKeyboardToolbarManager+Debug.swift */, + BED36662D4F72A2E1B9DA8B9823EA686 /* IQKeyboardToolbarManager+Deprecated.swift */, + 32273C3579DDC80A0E04B464513AEC00 /* IQKeyboardToolbarManager+Internal.swift */, + E65AF204BB83B541A6F7685A67A74FE2 /* IQKeyboardToolbarManager+Toolbar.swift */, + 7FEA1A4EC31069946A09F155DF282C30 /* UIView+Responders.swift */, + 9A357AC195864E56D2592C1979BBAF05 /* UIView+RespondersObjc.swift */, + 3D1AD1D3E22F073249D1FE792F6254C9 /* Resources */, + 09A35AF98906B6C1E6707AAA5A1057F7 /* Support Files */, ); - name = MethodSwizzler; + name = IQKeyboardToolbarManager; + path = IQKeyboardToolbarManager; sourceTree = ""; }; - 20B9A61E14C6E3E00699D13BCEFD9D6C /* Resign */ = { + 22BE5F8EFBEFE7051095B9FF6E32F829 /* Resources */ = { isa = PBXGroup; children = ( - 540ADF228732435E9244ACC0B4F6D359 /* IQKeyboardManager+Resign.swift */, - 50998EB5CD8C12282FA3B0E79A0A2451 /* IQKeyboardManager+Resign_Deprecated.swift */, - 3E3D41C45D858EB2DA46CB6B47944F41 /* IQKeyboardResignHandler.swift */, - 3DC4F636E9D26D381B69C0D0A17DFA24 /* IQKeyboardResignHandler+Internal.swift */, - E034FCC9A3D1F65B7CC563D7E8E6294A /* UIView+Resign.swift */, - AA80DA76BC89201F1508D2D28BBCDEB8 /* UIView+ResignObjc.swift */, + 8A82B370762440F79B82E09400A57C80 /* PrivacyInfo.xcprivacy */, ); - name = Resign; + name = Resources; sourceTree = ""; }; - 226D62161A9C994833AC9CBFDBB72887 /* IQTextView */ = { + 22DBA654D4DDD75434776617D876E9FB /* Frameworks */ = { isa = PBXGroup; children = ( - D34A2DCD23DA65175EFE09E23F089D2F /* IQTextView.swift */, - E6D89F418EFAE2A75B94235B50A0DEA4 /* IQTextView+Placeholderable.swift */, - 9072D5057F60A69E8208C5BC0718D69D /* Resources */, - DECCBD078439BFFA6B5A6AF5AA30CE16 /* Support Files */, + 6D63C3BE8B1B77C639E6C8E1329CF3FC /* GoogleAppMeasurement.xcframework */, ); - name = IQTextView; - path = IQTextView; + name = Frameworks; sourceTree = ""; }; - 234629D20FF8201B228BE149FCD5525A /* IQKeyboardToolbar */ = { + 22EEDA251E43AFCE2C52615E980F08CD /* Placeholderable */ = { isa = PBXGroup; children = ( - 65539313D42DAA60534B1EAD5C093349 /* Core */, - 011B5AAD21FE4240C8DEB1CEBD068D18 /* Placeholderable */, - 43EB3C21986F73C895203BAC8C3DBC31 /* Resources */, - 5211D022010195CAFD7A444E49DAAC0F /* Support Files */, + 53F00746A713E8D3E29D36852B7F2A61 /* IQPlaceholderable.swift */, ); - name = IQKeyboardToolbar; - path = IQKeyboardToolbar; + name = Placeholderable; sourceTree = ""; }; 257C1FDD51726E9BFAD26CC2971EDAE6 /* tvOS */ = { @@ -3446,20 +3988,16 @@ path = tvOS; sourceTree = ""; }; - 28605C51378297BC76E1FD77F4138809 /* Support Files */ = { + 269BF36CB13C34482BD73539FEB074D7 /* Resources */ = { isa = PBXGroup; children = ( - 837B53131083EBA0554467C21F9DEE1A /* IQKeyboardToolbarManager.modulemap */, - 7C29ACACD74E8D1E41E969C7B1E1CA02 /* IQKeyboardToolbarManager-dummy.m */, - 3BB9E4DCB2670E2E16FB321D9276A6AE /* IQKeyboardToolbarManager-Info.plist */, - 937C3ACC0DFFCF10D54CC18EF3712285 /* IQKeyboardToolbarManager-prefix.pch */, - 80E40A389B86B65FE5FF320C7A0935C9 /* IQKeyboardToolbarManager-umbrella.h */, - 03D300D43238379ED6079E1774E378A9 /* IQKeyboardToolbarManager.debug.xcconfig */, - B8DC42E314A6A073A8CBEA8D0E051670 /* IQKeyboardToolbarManager.release.xcconfig */, - 963ED2BA244025028B39FAA5FF4685D1 /* ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist */, + BAC9703CCCA66DA53EEA0A439C70ABA9 /* ActionableTableViewCell.xib */, + EA5173EB199F9C06632F1D554BFEA535 /* Flow.storyboard */, + 10F2EEC527F6E7935FFABF0983620715 /* RequestCell.xib */, + 1CF9482DF9831CCB3E533ACFE2AACC24 /* RequestTitleSectionView.xib */, + D594C81A655ECF45EF32CF2373208F47 /* TextTableViewCell.xib */, ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardToolbarManager"; + name = Resources; sourceTree = ""; }; 28843EDE171A71C72B6346EE461BEF2E /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests */ = { @@ -3479,6 +4017,22 @@ path = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests"; sourceTree = ""; }; + 29B2090CCDCCE6569FE67BEF5EA55EB0 /* Support Files */ = { + isa = PBXGroup; + children = ( + F66C852B103CF039C0B2B16B131E3FD5 /* IQKeyboardToolbar.modulemap */, + 4F93C65D23B8F7BDEB501077294DE0F0 /* IQKeyboardToolbar-dummy.m */, + EE841CFFC5421051274500BC8FF6A8DB /* IQKeyboardToolbar-Info.plist */, + 9596493F419E94FDD1890E1D05FB9DE8 /* IQKeyboardToolbar-prefix.pch */, + 0BD568D6A51A5409CB41FA9C1F9A6146 /* IQKeyboardToolbar-umbrella.h */, + 19E8DF962E12F5CD09F0C1D4AE5F54AB /* IQKeyboardToolbar.debug.xcconfig */, + A11B05957DEC3AB840DA74DE56267828 /* IQKeyboardToolbar.release.xcconfig */, + 78BB1E0EE2F9E90FAB93CF0A968AFF8D /* ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/IQKeyboardToolbar"; + sourceTree = ""; + }; 2A053BDCEF8AE93570DE0964F82A79BD /* Views */ = { isa = PBXGroup; children = ( @@ -3490,51 +4044,38 @@ path = ConsentViewController/Classes/Views; sourceTree = ""; }; - 2C3C137A7EEC03C86CC81A9A3F57E28A /* FirebaseCoreInternal */ = { + 369243027836E4EC9DA0DEEC9F6D277B /* AdIdSupport */ = { isa = PBXGroup; children = ( - D2D4E2CA4FAC5D4ADD2C8AE2C401DDE1 /* _ObjC_HeartbeatController.swift */, - CA082F651F11D8C913684BE5E889FEA9 /* _ObjC_HeartbeatsPayload.swift */, - 0C51BE3A7172113ED2D7CB13C5F1DEB1 /* AtomicBox.swift */, - C9A1D9F64D4051E4B289E73937C42FF9 /* Heartbeat.swift */, - 70E324B25E38F94390F9EB0ED4437F07 /* HeartbeatController.swift */, - 7B6514C19FDD5F03CDD4331DD6B07B7F /* HeartbeatLoggingTestUtils.swift */, - BE6DE25CB81DF3A391F8A3241FE0F113 /* HeartbeatsBundle.swift */, - 3F22DC1D88529006BCFD403725F2939F /* HeartbeatsPayload.swift */, - 49E61D955D2E5ABFF9506108E5950F15 /* HeartbeatStorage.swift */, - 92E4F96A08E513B2922ACE89FF98D93A /* RingBuffer.swift */, - 7B7AB33041C6A6989A361F97925C4362 /* Storage.swift */, - 1593F2AFA09C8CB7CB497969362C16F2 /* StorageFactory.swift */, - BD8DBD37BFCC2189451CB076D74EC280 /* WeakContainer.swift */, - 637EA9F0C70CD6E817897094262379E1 /* Resources */, - CC2449F723D6266D79D3DB7D53AA497F /* Support Files */, + 82127B752DF4FC3944F40F4B63242F6C /* Frameworks */, ); - name = FirebaseCoreInternal; - path = FirebaseCoreInternal; + name = AdIdSupport; sourceTree = ""; }; - 2D30901F804568DF6DB63C85BAF26280 /* Resources */ = { + 36A5456068B47948179B9B259C57591C /* Support Files */ = { isa = PBXGroup; children = ( - 689D7E3D33EE1251215987B4F8DDD31C /* ActionableTableViewCell.xib */, - 95C03B989707B41DE52073D2BF149DCA /* Flow.storyboard */, - DCC870B83648F3CA50231F6E01EB1590 /* RequestCell.xib */, - E66A5E9A8C9E7C4627F04B393E25D1DD /* RequestTitleSectionView.xib */, - 1BD547B151F6A31F295082EB0F8E919F /* TextTableViewCell.xib */, + 3C04865CFD01F89FBBABA7275A2A7AFA /* FirebaseAnalytics-xcframeworks.sh */, + 7B173ED8DF89128C483E3884E1F880C4 /* FirebaseAnalytics.debug.xcconfig */, + DEB7328BDFB8614EAD2EAD799824C0FE /* FirebaseAnalytics.release.xcconfig */, ); - name = Resources; + name = "Support Files"; + path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - 36F50AE68D5E94FA51B445C19A28A066 /* IQKeyboardNotification */ = { + 36EDC9C87AA25C00588569FB9643B2A7 /* Support Files */ = { isa = PBXGroup; children = ( - B0223A8872E2DE9040417C22BEE36FF8 /* IQKeyboardInfo.swift */, - C6C8B29729DB86FFCE7221ECCECE44A6 /* IQKeyboardNotification.swift */, - 9A6B7DF49E11F9ECCE59AAFE859278DC /* Resources */, - DA97F4161168BA71B4183A9ED91E7416 /* Support Files */, + 3D1B346805890BCF6AC4E96655693FCC /* JSONView.modulemap */, + 9486C1AFBFBCE9306650338B9FBFB1AD /* JSONView-dummy.m */, + 5336E0A0BE79D766683D1D4907760DD4 /* JSONView-Info.plist */, + 34F831AA769E614261D410BF227A2838 /* JSONView-prefix.pch */, + 4E0C55A5303CFB5640DC3BDA91663E33 /* JSONView-umbrella.h */, + A9F239EB342CD33668E7657BEF9023C2 /* JSONView.debug.xcconfig */, + 8308C54DE95C976F10FACAADA52D2C28 /* JSONView.release.xcconfig */, ); - name = IQKeyboardNotification; - path = IQKeyboardNotification; + name = "Support Files"; + path = "../Target Support Files/JSONView"; sourceTree = ""; }; 381BE5E8A8BBE7C3494A26172BFE4492 /* CCPA */ = { @@ -3556,19 +4097,19 @@ path = CCPA; sourceTree = ""; }; - 3A639C54FDA014A995FE251AD7132854 /* Support Files */ = { + 3A727D29E409E0E3470D214CF4621B78 /* Support Files */ = { isa = PBXGroup; children = ( - A2BB9E7C9020738B762E01D9B27E8B42 /* FirebaseCore.modulemap */, - 301C13BBF88E04E1EC6EEA09F6AE624C /* FirebaseCore-dummy.m */, - F689C5A3ACDD78CF0C9C3F8CA36ACCF9 /* FirebaseCore-Info.plist */, - B996EB791EDA9EF2B054183A905F4391 /* FirebaseCore-umbrella.h */, - E97F8A08BF6E031ECE081242D60B7814 /* FirebaseCore.debug.xcconfig */, - 621330E260760ED099CCF53609EF7C50 /* FirebaseCore.release.xcconfig */, - 644F5501865BFF333DD135D1AF2BB036 /* ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist */, + ADB4F88912D4C5E25D8BE4F0B806CE78 /* CwlMachBadInstructionHandler.modulemap */, + E34D926F7527B1A43827738B3FA8609C /* CwlMachBadInstructionHandler-dummy.m */, + A0D10B995612504994DB04DEEBB0138E /* CwlMachBadInstructionHandler-Info.plist */, + 7074851D2482EE864C5FB2FAEB4F10E7 /* CwlMachBadInstructionHandler-prefix.pch */, + 85DCA40AD37456BE4FA02979143B558D /* CwlMachBadInstructionHandler-umbrella.h */, + 58E0351200843A0258ABD52F8867F39C /* CwlMachBadInstructionHandler.debug.xcconfig */, + C9391B97E8AE9BB43422D8C5BC9536AC /* CwlMachBadInstructionHandler.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/FirebaseCore"; + path = "../Target Support Files/CwlMachBadInstructionHandler"; sourceTree = ""; }; 3AEF6B422FB2024554579B356386595B /* Pods-Examples-SourcePointMetaApp */ = { @@ -3588,14 +4129,6 @@ path = "Target Support Files/Pods-Examples-SourcePointMetaApp"; sourceTree = ""; }; - 3B4BEE244090748513F364434C94AB6F /* WithoutAdIdSupport */ = { - isa = PBXGroup; - children = ( - E83D3553A23C5D78022E08153B93995C /* Frameworks */, - ); - name = WithoutAdIdSupport; - sourceTree = ""; - }; 3BEB57409E4A314C344417D59646691E /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests */ = { isa = PBXGroup; children = ( @@ -3613,51 +4146,123 @@ path = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests"; sourceTree = ""; }; - 432366AEA5AE85AED5630C5600440347 /* FirebaseAnalytics */ = { + 3D1AD1D3E22F073249D1FE792F6254C9 /* Resources */ = { isa = PBXGroup; children = ( - C336DFAD951D446F585FA63C9D9D0606 /* AdIdSupport */, - F4BDADADF87C0430986B6099EAD9A261 /* Support Files */, + F4717DE3C7C32C18CA230DEF9AE3D3FE /* PrivacyInfo.xcprivacy */, ); - name = FirebaseAnalytics; - path = FirebaseAnalytics; + name = Resources; + sourceTree = ""; + }; + 409CB7576D3AB13E8219CC44C76B491B /* Frameworks */ = { + isa = PBXGroup; + children = ( + 5015B13471ACDFF298E6E6397EF432D4 /* GoogleAppMeasurementIdentitySupport.xcframework */, + ); + name = Frameworks; sourceTree = ""; }; - 43EB3C21986F73C895203BAC8C3DBC31 /* Resources */ = { + 40D1E9AA7AF11058D10FD2FDB4D7D1C3 /* Resources */ = { isa = PBXGroup; children = ( - 5523DD25E528AF35556AAC138CD44C29 /* PrivacyInfo.xcprivacy */, + EFFB42EBA6B36A4E257D3F51EF9DC7DC /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - 4A89C6913E81DAB0AC0E385204C6EFDF /* Pods */ = { - isa = PBXGroup; - children = ( - 432366AEA5AE85AED5630C5600440347 /* FirebaseAnalytics */, - 0EB4BEBF532C8B17F00DE331BFDD5659 /* FirebaseCore */, - 2C3C137A7EEC03C86CC81A9A3F57E28A /* FirebaseCoreInternal */, - 9EE3BBD11B97AF2B50BD0FBE43D0F0CE /* FirebaseInstallations */, - 7F1CEB4128823B5B888EFF1EF4D0203F /* GoogleAppMeasurement */, - 17F82C37C7E2D83221E39AFC8AC8D1DC /* GoogleUtilities */, - EC90EAAE84538BFE580C10AD311352D2 /* IQKeyboardCore */, - 012A6ED21838C19AB8BF155DBEBFE61B /* IQKeyboardManagerSwift */, - 36F50AE68D5E94FA51B445C19A28A066 /* IQKeyboardNotification */, - D577D6EC5DF4D5603E7CB672AC3450F8 /* IQKeyboardReturnManager */, - 234629D20FF8201B228BE149FCD5525A /* IQKeyboardToolbar */, - DE9641042C2959F77BA7AD6578AEE56F /* IQKeyboardToolbarManager */, - BF5DA2FC4632C924E1013EFBFD3B6B7B /* IQTextInputViewNotification */, - 226D62161A9C994833AC9CBFDBB72887 /* IQTextView */, - 1799AC48B9DD92C86B5F92BAFB5683FB /* JSONView */, - 0F5D725A0A249611674A232B647F46A4 /* nanopb */, - FB4BDC7699BDB13317BA5E5D3B3408E1 /* Nimble */, - 6047A2BFDC8DF943D8F86A87B826CDC3 /* PromisesObjC */, - 5C17A0A3B6D8F97F1B438EA2DBD4444C /* Quick */, - 7F63ED2C0D631E9F1552FBC76BFD9C64 /* SPMobileCore */, - DB3D883807B7B88DC57E05E37530BBEE /* SwiftLint */, - CA5973803D97A1FAD67FEE7A4C6725E3 /* Wormholy */, + 42E9F38CB980D5547A7912A6A66F17CE /* Core */ = { + isa = PBXGroup; + children = ( + 2187FE9772F1A9A746A83A16204EDB91 /* IQBarButtonItem.swift */, + 9E054BBC07794A97A72D7F5FD34898FF /* IQBarButtonItemConfiguration.swift */, + 7A022E1234424683435C80940388BE00 /* IQInvocation.swift */, + E96E350596132C3A65B58D48E75232FE /* IQKeyboardToolbar.swift */, + 8DE645F2294DF573039679935A89494B /* IQKeyboardToolbarPlaceholderConfiguration.swift */, + 14250D74426E3F8CEAA313072076355C /* IQTitleBarButtonItem.swift */, + 44D7A9D4428EC8819191D61354C9DDD3 /* UIView+IQKeyboardExtension.swift */, + D1EF5C57CF95EEDFB6147F92D19FD6F7 /* UIView+IQKeyboardExtensionDeprecated.swift */, + 79E7601A02651FAC7415EEBCB49C9F6B /* UIView+IQKeyboardExtensionObjc.swift */, ); - name = Pods; + name = Core; + sourceTree = ""; + }; + 44A32A0A4B4603F67AA213DDE71B2430 /* Quick */ = { + isa = PBXGroup; + children = ( + 5FF007DE16FC76B92D2B471ADE891BED /* AsyncBehavior.swift */, + 95F0052081268DFDBE4A0120A806FDDD /* AsyncDSL.swift */, + CDE29F7E2C2B8181BDC86D8BC3C43A2F /* AsyncExample.swift */, + D5B09BA535863D4B01B71BFC5473DBC4 /* AsyncExampleGroup.swift */, + A5CF58C2980FC8C6E33960F8257583AD /* AsyncExampleHooks.swift */, + E97532B3008EAD598A48D9E01B06B2B7 /* AsyncSpec.swift */, + E0A060E5DA1F12147B39CB28131FA6D2 /* AsyncSpec+testMethodSelectors.m */, + 629C5CA2DE65A4802EEBB04934FE67CE /* AsyncWorld.swift */, + B3B7F216AFAC272B8A629EBC12FA2E0A /* AsyncWorld+DSL.swift */, + 259EFEA7087E5468175533431A8057F5 /* Behavior.swift */, + CE61A8CA9758CA1D4AA14AA0909D6F4A /* Callsite.swift */, + 14EE15EE2D21740716E29AC2EE0A6076 /* Closures.swift */, + B1B783765AFDBBC9FF7903D64E5A39B0 /* CurrentSpec.swift */, + 3427A27AC38028C5399CAE2BCF841D6E /* DSL.swift */, + C5A307F97B8D4D230351B1E3803B356C /* ErrorUtility.swift */, + 03A4E26FDAB2812977B49469A6B6B561 /* Example.swift */, + 4839977FE2F318D830B3611AAC7E0B07 /* ExampleGroup.swift */, + F63D0B2446F40712AA7AD3941D1BCB53 /* ExampleHooks.swift */, + 627553C3D560EA9D715BD1548B0CF3D7 /* ExampleMetadata.swift */, + ED6272CCA83508A3A34BA111C6A513BB /* Filter.swift */, + B6CFFBFD33C80AE18D03D79100AF8558 /* HooksPhase.swift */, + BAC7A0B37A8D91FE55F50A479F14B44C /* NSBundle+CurrentTestBundle.swift */, + 6C1F4501D14ACE8C725D24BAED9BA31E /* QCKConfiguration.swift */, + AB8A4A9B4157CDAA3D994D9F0DAA5886 /* QCKDSL.h */, + A633DBE772E554D5D84ED42635A8334C /* QCKDSL.m */, + 547430F6B989F18B64D86FFC4646F10D /* Quick.h */, + 219CC0CD56FC97926EFEFCDCCC9999F7 /* QuickConfiguration.h */, + 754BEF92020F4A1FC09E103BB777106A /* QuickConfiguration.m */, + CBE8437615205B25F5BEF35B3A81EDEE /* QuickConfiguration.swift */, + 39521561A3A1D050295F964A5391C69E /* QuickObjCRuntime.h */, + A65D69CB88594A9705501AF0677C3716 /* QuickSelectedTestSuiteBuilder.swift */, + 97C08F366011ABF5B61B5D428C2A32B0 /* QuickSpec.h */, + 698B6323D03AD253DEAE782E65E107E7 /* QuickSpec.m */, + 80A9DB66AE8726E0CB5FC058EDC77670 /* QuickSpecBase.h */, + 1927DE642808C0399D8EC4D6EEBFFA2C /* QuickSpecBase.m */, + 01A004F916AE721171E411659CD37E18 /* QuickTestObservation.swift */, + 8193AC37D693F05389BC7EE7817E74E2 /* QuickTestSuite.swift */, + 20BCCE3D8FFE4752339823149D7C43EF /* StopTest.swift */, + BF374197388716B739DB5B8C30DAD6A0 /* String+C99ExtendedIdentifier.swift */, + AA0F831F10B5385C15685F1BE6EEC902 /* SubclassDetection.swift */, + F3F02076DF398AB04994F86592D2A03B /* SuiteHooks.swift */, + 26484551773621D3B85EA2980BF9C36E /* TestSelectorNameProvider.swift */, + 054F7CF39326FC823FD090254AC82F87 /* TestState.swift */, + 72C7F44C43C5690DC0B883678B1A6DCB /* URL+FileName.swift */, + 7B08161A2B63C49591A4C21B2AEC49EC /* World.swift */, + 46DC532A2458C8E24116BF023C0C228D /* World+DSL.swift */, + C9A9B7E43BDAD2F718FFD17A863D0A84 /* XCTestSuite+QuickTestSuiteBuilder.m */, + 85704370643F51B0C3B7A03351A362AC /* Support Files */, + ); + name = Quick; + path = Quick; + sourceTree = ""; + }; + 484E1F6477F672CA693D5EAABDA5F284 /* Privacy */ = { + isa = PBXGroup; + children = ( + 0A9A8E9926E1430185FD7C07279BFA30 /* Resources */, + ); + name = Privacy; + sourceTree = ""; + }; + 4E613DC09C39D9B78147F2F30A4CD5F5 /* Support Files */ = { + isa = PBXGroup; + children = ( + 6EDD57EFE9FBA0B26CF75D4E1FDFE042 /* FirebaseInstallations.modulemap */, + 2EFFD7A3CE87229F9775E2437AB22494 /* FirebaseInstallations-dummy.m */, + 3B85D4D2A37FA5B427857CDF7DE0C356 /* FirebaseInstallations-Info.plist */, + 0B248C61C89B02A8A25F332705053C87 /* FirebaseInstallations-umbrella.h */, + 41BAC8F250BD7588F95DD766836F4A64 /* FirebaseInstallations.debug.xcconfig */, + D900D75BBBD137EE15A051E0E5E8234A /* FirebaseInstallations.release.xcconfig */, + A24EBA1A48811A82E9E39B985421398F /* ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseInstallations"; sourceTree = ""; }; 4FB72CF436D00C693AFB64B05CD71461 /* Development Pods */ = { @@ -3668,43 +4273,97 @@ name = "Development Pods"; sourceTree = ""; }; - 5211D022010195CAFD7A444E49DAAC0F /* Support Files */ = { + 5102D610AAA35199D6E1B4C6E16D406D /* IQKeyboardToolbar */ = { isa = PBXGroup; children = ( - BD135035AFDD1E8703C62D6F24A95EF0 /* IQKeyboardToolbar.modulemap */, - 79E9CD313DBBC45BDCEEDDA54A3F96C3 /* IQKeyboardToolbar-dummy.m */, - CF870810804034F6AECC0FBAFE0DC8D4 /* IQKeyboardToolbar-Info.plist */, - BE05912A10F759D64655CF37ADC5987C /* IQKeyboardToolbar-prefix.pch */, - 4F88675335567AA4306DF59F91BBA41B /* IQKeyboardToolbar-umbrella.h */, - 6502BE34EBE67206A8A933EA20AE5C18 /* IQKeyboardToolbar.debug.xcconfig */, - E14229DA1BD3D1A260C2C18D5FDAD459 /* IQKeyboardToolbar.release.xcconfig */, - 32944E617686E2135F48E6DB375C235B /* ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist */, + 42E9F38CB980D5547A7912A6A66F17CE /* Core */, + 22EEDA251E43AFCE2C52615E980F08CD /* Placeholderable */, + 22BE5F8EFBEFE7051095B9FF6E32F829 /* Resources */, + 29B2090CCDCCE6569FE67BEF5EA55EB0 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardToolbar"; + name = IQKeyboardToolbar; + path = IQKeyboardToolbar; sourceTree = ""; }; - 532827A268EE842BAF63BA7884C41963 /* Frameworks */ = { + 5373C20618240CC7759E5C2528A4C84C /* CwlCatchException */ = { isa = PBXGroup; children = ( - 8D46C818C030BFE569445ED1813B2BC6 /* GoogleAppMeasurementIdentitySupport.xcframework */, + BE46FD2C9A2945C44977ED7FFF75B5ED /* CwlCatchException.swift */, + 93EB688CD00F1369BA81DB4071B33B2F /* Support Files */, ); - name = Frameworks; + name = CwlCatchException; + path = CwlCatchException; sourceTree = ""; }; - 536FABCA968D6550542DB8FD02ADD699 /* Support Files */ = { + 57E3C67E8BF67A4809E92DDB74E883A7 /* IQKeyboardCore */ = { isa = PBXGroup; children = ( - EFE625540A6B06B320DEBAAB44730FC9 /* GoogleUtilities.modulemap */, - CC9AE9B277DB33061EF7D070BDA6B44C /* GoogleUtilities-dummy.m */, - 8AE4C7BD118D39AB28E75376F597730A /* GoogleUtilities-Info.plist */, - 7EE8A4725B42B23A5DD16230DC835583 /* GoogleUtilities-umbrella.h */, - 2A35CC9C7D8AA754363439B2D68134BF /* GoogleUtilities.debug.xcconfig */, - 977388C1D2919ECAEA6852A831913198 /* GoogleUtilities.release.xcconfig */, - 5D5034667161921051C4631985D60CA2 /* ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist */, + E62B48AD78A8199016E9CC780B0C438D /* IQKeyboardConstants.swift */, + 5074B22265EA17DA123B92F5460B22F8 /* IQKeyboardExtended.swift */, + EE0739C1018CA17711EA54F49417946B /* IQTextInputView.swift */, + AA8CD736A98F2741BD96AF9CFB0498E4 /* UIView+Hierarchy.swift */, + AF3591EDAF8540C3143276C4ACC5FAC7 /* Resources */, + 11011FD9F4782D95DDDEE835FF776E18 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/GoogleUtilities"; + name = IQKeyboardCore; + path = IQKeyboardCore; + sourceTree = ""; + }; + 580204531A8DBDCDA937D9A87A7D1DA6 /* FirebaseInstallations */ = { + isa = PBXGroup; + children = ( + EF6900942D6C588E3E56535DCCF82EFD /* FIRAppInternal.h */, + D0CF9E05F7A901F3CF7A759DA305AB77 /* FIRComponent.h */, + 2B3054F657B97EEC597FB71FB7EEBA1C /* FIRComponentContainer.h */, + 00760845D8B0C5DA675FA4CC4DE50940 /* FIRComponentType.h */, + 377CC3E93DF4518F2B7A6637C33D243F /* FIRCurrentDateProvider.h */, + AE8A7BA9F0275B149E1D0749B53CDD49 /* FIRCurrentDateProvider.m */, + C92509E734A6C345C96274A3E981A6A6 /* FirebaseCoreInternal.h */, + 6CAEFCC3380710EA276C557B6B0F987F /* FirebaseInstallations.h */, + A9AFE904771B568A4754C58702BBFAA9 /* FirebaseInstallationsInternal.h */, + D292C84B70317E9D64F83924C0B422A0 /* FIRHeartbeatLogger.h */, + D0A20F94BAC0F3868916549EF7807042 /* FIRInstallations.h */, + 80FD0F0830832A49BBFE269D8A0848E1 /* FIRInstallations.m */, + BF4E19260113E31B01ACC4A40F06CC32 /* FIRInstallationsAPIService.h */, + 4E3AF0B8A81D565A7E4CFA7B9C4B5154 /* FIRInstallationsAPIService.m */, + 76CC76A46ED220FD18DEEF5E13F03F04 /* FIRInstallationsAuthTokenResult.h */, + E60E9F9CA7724A87FB2F40B32C5FF349 /* FIRInstallationsAuthTokenResult.m */, + 0C468EBD52C660B829A9EF5CA0D838CD /* FIRInstallationsAuthTokenResultInternal.h */, + C0FDE3CA87B3E93E97F2DB41CA742521 /* FIRInstallationsBackoffController.h */, + 62965629485AC3CF2814EC22328196BD /* FIRInstallationsBackoffController.m */, + 1789C906329962E5457BC43ADCAB742A /* FIRInstallationsErrors.h */, + E2EAA97E201B165642B004876504B27A /* FIRInstallationsErrorUtil.h */, + 9C74BF65952CA34C7E7E7CE246246DDE /* FIRInstallationsErrorUtil.m */, + E750A7087DBD3C4BACD13CFF8ED23007 /* FIRInstallationsHTTPError.h */, + 82C724D20EAC54F77E63A4B052CF0253 /* FIRInstallationsHTTPError.m */, + BE6574F64FA1EA3700CF64D22C778856 /* FIRInstallationsIDController.h */, + DCF101A454E3B6E2A06629217D2236D8 /* FIRInstallationsIDController.m */, + 0D1F27E8DDEE1C92CB890B2A34DA28DF /* FIRInstallationsIIDStore.h */, + 8F9BD032C6101EBB566A7C72079A9F6E /* FIRInstallationsIIDStore.m */, + F7FC3DF3EC50F2594E30DE7CD391DC34 /* FIRInstallationsIIDTokenStore.h */, + 9710C155F41476AE899A9061EAEEA7E2 /* FIRInstallationsIIDTokenStore.m */, + EF9D8ACBD90B202ED7671AED491D5F28 /* FIRInstallationsItem.h */, + 7707BD7F05AEAD109DFAD1DC98CC9229 /* FIRInstallationsItem.m */, + C3BA0948AE51327AA64A49BFFC847D66 /* FIRInstallationsItem+RegisterInstallationAPI.h */, + 8689BBFFCE916282306018B8C16C73A4 /* FIRInstallationsItem+RegisterInstallationAPI.m */, + 62E9A3917CEA0826634BC756095B0CED /* FIRInstallationsLogger.h */, + A29A933877C4A42745B22A0407B169CF /* FIRInstallationsLogger.m */, + 080544185156D8EFB4F8B2735F21B295 /* FIRInstallationsSingleOperationPromiseCache.h */, + B4FC1CAC1404126C258F956D45F9CCC6 /* FIRInstallationsSingleOperationPromiseCache.m */, + BF930FF66C57169A442D8B8AE1758951 /* FIRInstallationsStatus.h */, + 374E98AEF6664423828FD8464896DD0C /* FIRInstallationsStore.h */, + 2311834C46257E5B983935E8AF97B346 /* FIRInstallationsStore.m */, + F12B154BCE2F829B35E14B1572A6A11B /* FIRInstallationsStoredAuthToken.h */, + 41D24BF5A5CF5980FC9E5A5AAB880EA9 /* FIRInstallationsStoredAuthToken.m */, + BE60272E11ADB724C93010B2B4936F82 /* FIRInstallationsStoredItem.h */, + 676E1BBA57754C7536CA90B5739F2021 /* FIRInstallationsStoredItem.m */, + 9B9096FD1A4F1C96E2829FA42428F04D /* FIRLibrary.h */, + FF7F0ED12041FA1C08C401A7D0DD29A1 /* FIRLogger.h */, + 96C7517DF2173BCDB7405055A95FA8E7 /* Resources */, + 4E613DC09C39D9B78147F2F30A4CD5F5 /* Support Files */, + ); + name = FirebaseInstallations; + path = FirebaseInstallations; sourceTree = ""; }; 590599D8E0DB9BEC05AC05031BF54279 /* Pods-Tests-SourcePointMetaAppUITests */ = { @@ -3724,46 +4383,14 @@ path = "Target Support Files/Pods-Tests-SourcePointMetaAppUITests"; sourceTree = ""; }; - 5C17A0A3B6D8F97F1B438EA2DBD4444C /* Quick */ = { - isa = PBXGroup; - children = ( - 914BF96E58D852EE5D60009D93D77EB5 /* Behavior.swift */, - D16C3ABE9FB947B9FE3B6C21F667D025 /* Callsite.swift */, - D249544530276105CB9036CD6A7192A1 /* Closures.swift */, - 1053681B4826692FBA867492E079AFB5 /* DSL.swift */, - ECF1DF610DCD827C87F956BB565C8C42 /* ErrorUtility.swift */, - C05FB56DAEEDCA29BA74D9393362D4A5 /* Example.swift */, - A9A8C3E06D197250F142140842379FE4 /* ExampleGroup.swift */, - 8FC918F341DB9D68F0ACF5F5297B7D0A /* ExampleHooks.swift */, - B3459CF29818A9903902E78A70468F8D /* ExampleMetadata.swift */, - CB8F1E10FDD04E9CE3BE4DB16B3043EF /* Filter.swift */, - D4C600042597B3B8F838711B5AED3258 /* HooksPhase.swift */, - ECDCF0F3A30E9CE7ACD3E327E2BB92D2 /* NSBundle+CurrentTestBundle.swift */, - 5169E05906D5EB1161B9E0FA9119155E /* QCKConfiguration.swift */, - 691147EC323A13E5ADFBE451288ECDF2 /* QCKDSL.h */, - BB4C87A48ABBDAA97592080F85929A90 /* QCKDSL.m */, - 2B63F6C9B92344CE56A5AB925174C4BF /* Quick.h */, - CF9C53FA56236C99A2DD68A546446E60 /* QuickConfiguration.h */, - D7DAD66D2C0B565E62B4669B3823B281 /* QuickConfiguration.m */, - 5A550D199A537903278DAC967EB2606A /* QuickConfiguration.swift */, - 8F50E71508CD580057F9C19374CC8111 /* QuickObjCRuntime.h */, - 859CEF6FAAE11636D81A3943E0FED6DB /* QuickSelectedTestSuiteBuilder.swift */, - FC1ED749A4177BCABC2AE08A9FA57AF4 /* QuickSpec.h */, - D34603469A654EB2572EC096EFA28BF7 /* QuickSpec.m */, - 17C54054A65D6AB7E21A5D6829DC0D93 /* QuickSpecBase.h */, - 5720017BA09B4934FF19D9518B636B7B /* QuickSpecBase.m */, - 0D4A25F124618603C0420916AC3FD9A3 /* QuickTestObservation.swift */, - A7B900E2DC4550F54AB402C1C5020DB3 /* QuickTestSuite.swift */, - D8C8EC15FFBB6E926508B6E365732D16 /* String+C99ExtendedIdentifier.swift */, - 3EFD280852B3A28B8D9AF6B52AA8EADD /* SuiteHooks.swift */, - F7D27B3BC4B43A5259CFA3F41260ED3E /* URL+FileName.swift */, - 313C420FCA09A122830B92CE256AD170 /* World.swift */, - 224D8359F0DFA2F028AF2E9EF23C6730 /* World+DSL.swift */, - 8647BFEF78AB24889CB26C8410420CB6 /* XCTestSuite+QuickTestSuiteBuilder.m */, - D1F3667FF8A13808229E522BF19AC447 /* Support Files */, + 5A57AF3A082A2E95453F373286BA9E95 /* FirebaseAnalytics */ = { + isa = PBXGroup; + children = ( + 369243027836E4EC9DA0DEEC9F6D277B /* AdIdSupport */, + 36A5456068B47948179B9B259C57591C /* Support Files */, ); - name = Quick; - path = Quick; + name = FirebaseAnalytics; + path = FirebaseAnalytics; sourceTree = ""; }; 5C8715D76281D0575A7802E59ECC7A62 /* Consents */ = { @@ -3784,6 +4411,22 @@ path = ConsentViewController/Classes/Consents; sourceTree = ""; }; + 5D00C196FC7E8A6DEA529DA07FD40B84 /* Support Files */ = { + isa = PBXGroup; + children = ( + B54E6D465C609652566C8D907BE245FC /* IQKeyboardManagerSwift.modulemap */, + 2ADBB2CD10893D2F7B56CAC45C2BC96A /* IQKeyboardManagerSwift-dummy.m */, + 979E2831984CEF3CD1981DFB1DAFFB79 /* IQKeyboardManagerSwift-Info.plist */, + 70D58BFE0C7816707CA6F1007755392E /* IQKeyboardManagerSwift-prefix.pch */, + 6FB1C98E910F1E6D0DACA28CF05FA08E /* IQKeyboardManagerSwift-umbrella.h */, + 2BA16E167D6EF79C689CE7ECBC63430C /* IQKeyboardManagerSwift.debug.xcconfig */, + 72C7BE65FE543570C043A81113E9833F /* IQKeyboardManagerSwift.release.xcconfig */, + 554E73FAC9498CC927F625583063183E /* ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/IQKeyboardManagerSwift"; + sourceTree = ""; + }; 5D199CA79328798A9CC193A612BC5CAC /* tvOS */ = { isa = PBXGroup; children = ( @@ -3792,6 +4435,51 @@ name = tvOS; sourceTree = ""; }; + 5D66C6743C9B54D8F6D497CB16FFC607 /* FirebaseCore */ = { + isa = PBXGroup; + children = ( + AAC3007A68D81AA5A7DD2C0D79C5DA30 /* FIRAnalyticsConfiguration.h */, + E0043707CF07D44F9220C7CF087E2D95 /* FIRAnalyticsConfiguration.m */, + 2AB648CCEE84EE032BC3748305CA25FA /* FIRApp.h */, + 9203BA4D6A6B272DBF889E011390B373 /* FIRApp.m */, + 291EEE38749CE6E0C73E407A8D0EB77E /* FIRAppInternal.h */, + 0EDFC6CE0261D0B8565F3190CEE48BC0 /* FIRBundleUtil.h */, + B1C3C5D363C62E3B2674821C53520683 /* FIRBundleUtil.m */, + E5F243977118F9FF7014EFBD618CBCBD /* FIRComponent.h */, + 1EB1E29251A4E8016DF94D588688631D /* FIRComponent.m */, + 32266AE7F761B56C2F69BA2BE77054A0 /* FIRComponentContainer.h */, + E78C616233D5D9825EB073523F0DC62C /* FIRComponentContainer.m */, + A5B85C33CEAEF1D6C35FD328C4D76F4F /* FIRComponentContainerInternal.h */, + 7408933D9B881924358ABEB56C6EB596 /* FIRComponentType.h */, + 8551B96649DC518FEB10BEB47FFC4585 /* FIRComponentType.m */, + A6FFF671D060417A9CF24E8B6B67ADB7 /* FIRConfiguration.h */, + AA4F27E44DABBCD644F5EAFC786B157F /* FIRConfiguration.m */, + 9DC8945AB452F2860FCC5CBB94324624 /* FIRConfigurationInternal.h */, + FCC4D7BA5D8ACEC8567D676494521B19 /* FirebaseCore.h */, + C86E7B7B7BB35A919A914A174E125A7A /* FirebaseCoreInternal.h */, + D03736E44507497FC9B090CBB6B354E3 /* FIRFirebaseUserAgent.h */, + 81333C8E5279606026C2964759B6A72B /* FIRFirebaseUserAgent.m */, + 9A627BAB9445B7F348964DCEC0316670 /* FIRHeartbeatLogger.h */, + 8AB47EF0B0C5748A52E14C8D16EB9DDC /* FIRHeartbeatLogger.m */, + 6715E66DF7F9EDC350EE746E15E38141 /* FIRLibrary.h */, + E18ABD7A97D4F0D64B0819C191C35E84 /* FIRLogger.h */, + 983369F50E07F986B7B75FE69228C2EC /* FIRLogger.m */, + B1BEE24BA36FDA58A106C56809C0610C /* FIRLoggerLevel.h */, + A188CBEBC676609F35A63D53BA78950B /* FIROptions.h */, + E9434B13D13532D911BB386151B42943 /* FIROptions.m */, + D9587A31540199F76B2B124FE2554006 /* FIROptionsInternal.h */, + 50EAF75774A8D0D95B92DB43E3CDD6AE /* FIRTimestamp.h */, + 3E2B729B4FD4E54F4503424700745941 /* FIRTimestamp.m */, + 2745E6AA21573E8CFA72AE7E87509F44 /* FIRTimestampInternal.h */, + 998AE9A12896605E4272EBD27415F0DF /* FIRVersion.h */, + 8E74DCAC75D8463E2BFEEDA549A0D38F /* FIRVersion.m */, + 64815C2A0353F7ACB27C0BFA2F9CF11D /* Resources */, + 60C79D356CFD0695DA43ADB306A92F9D /* Support Files */, + ); + name = FirebaseCore; + path = FirebaseCore; + sourceTree = ""; + }; 5D7EFB261FC634402731AF33A9B39683 /* Common */ = { isa = PBXGroup; children = ( @@ -3823,181 +4511,135 @@ path = Data; sourceTree = ""; }; - 5EBE9D974A32FD488D1C7EE5B7389511 /* Support Files */ = { + 604E1FC04342F8E68EE46D9ACC571770 /* IQKeyboardNotification */ = { isa = PBXGroup; children = ( - 7364CC3ADEFFFB9BA84ADD46F9D5F845 /* Nimble-iOS.modulemap */, - 588B99A79FB7A8ABC897E13AF05011E2 /* Nimble-iOS-dummy.m */, - 238F8A402DE70DF975A8EBF0F62EA48D /* Nimble-iOS-Info.plist */, - 5CB7CE12D1222FBB9C42CB11E3A99D0B /* Nimble-iOS-prefix.pch */, - A8F302D73CDD48B864D4CDC0EF0A721D /* Nimble-iOS-umbrella.h */, - 789D46DB4A82EC56170A8FDABA1B1146 /* Nimble-iOS.debug.xcconfig */, - 1CE3318851B69636B927E30BA8C1E9C0 /* Nimble-iOS.release.xcconfig */, - 60A59C6AE13CE8CC40FA60CF07119384 /* Nimble-tvOS.modulemap */, - 99BE6D7C2ABC9332D2FEDB1DA14CFD80 /* Nimble-tvOS-dummy.m */, - D4059E58B61B45F599225364F1B17FBB /* Nimble-tvOS-Info.plist */, - 344471D8FF863E55F9F3234D7BB1BA12 /* Nimble-tvOS-prefix.pch */, - A4F966A4D01EFDA3F93496FAAEAC58B5 /* Nimble-tvOS-umbrella.h */, - 4B41A0B5A8F6586597B43EDE1F19EEAC /* Nimble-tvOS.debug.xcconfig */, - 5065D717E200F6B2E2112224C745D14D /* Nimble-tvOS.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/Nimble-iOS"; - sourceTree = ""; - }; - 6047A2BFDC8DF943D8F86A87B826CDC3 /* PromisesObjC */ = { - isa = PBXGroup; - children = ( - 8B550482A95BDE817167B35E62795013 /* FBLPromise.h */, - A8E13DD62383524F3373CE2B009F5052 /* FBLPromise.m */, - 41AD1366DE5E6E6352C5EF924A0D9359 /* FBLPromise+All.h */, - 1C52ECDCD905E74708881137ADAE8164 /* FBLPromise+All.m */, - 9AD0D93A856F4F1E09591FE8E9E109DC /* FBLPromise+Always.h */, - 955FFB48FD9B3F9F9A49D8FF08579556 /* FBLPromise+Always.m */, - 7E533FF1F65553BEA49075A45649FAD8 /* FBLPromise+Any.h */, - 2F1F9698E3F0EEC69A920A7239BBD834 /* FBLPromise+Any.m */, - 64B64F867C17E1AA06D73224AAB76E2D /* FBLPromise+Async.h */, - 89A886FC7EB0309BC0B6EF4FD2377D61 /* FBLPromise+Async.m */, - 0C9C701BD78C8BB1E5F84E37DBB698AC /* FBLPromise+Await.h */, - C6C7E888A71A93EEC148A9E95DDF022E /* FBLPromise+Await.m */, - 7E4CB67CE83A4AEF9D33F91EF906307F /* FBLPromise+Catch.h */, - 10D4538FFA8E4CE761C61825CCB47478 /* FBLPromise+Catch.m */, - FD5AA4B45035B9981FF7BD5B20966813 /* FBLPromise+Delay.h */, - 15DDE3CDBCEC2E6BBCBA1A4DE6B412BE /* FBLPromise+Delay.m */, - D6A6DE7640DC5A22D829314963941AE8 /* FBLPromise+Do.h */, - F93D34EC9BAC65B4503EA2272FDAC97D /* FBLPromise+Do.m */, - F1E4924E9DBA14EC60329B779BFEED62 /* FBLPromise+Race.h */, - 6BE64A96010FE14E29FFFDAC660DB001 /* FBLPromise+Race.m */, - 6CD569AC6FE64AB701ED68AA2D98F144 /* FBLPromise+Recover.h */, - D07165294032BC465A489F3B4973CA64 /* FBLPromise+Recover.m */, - CBE191C81958F269F0967C1724EAF1B7 /* FBLPromise+Reduce.h */, - 832B74665654C4B5E99237148F3F448A /* FBLPromise+Reduce.m */, - 7686E23E1C29D554CF19D7C268256313 /* FBLPromise+Retry.h */, - 34242E996D5C8423D51AABA60E432F74 /* FBLPromise+Retry.m */, - 05447D72C230968F297EC8141D5922A2 /* FBLPromise+Testing.h */, - D5182A11E3C599618A7632AF166DB46F /* FBLPromise+Testing.m */, - B5853F140A27DF91481E63FF8B01194E /* FBLPromise+Then.h */, - 0CE1041CE47689609966C114608BBBA2 /* FBLPromise+Then.m */, - DF0AF3A3FEA5052A9E6F4A2EF769DE92 /* FBLPromise+Timeout.h */, - A1D77A57E1F329B435501672C908716B /* FBLPromise+Timeout.m */, - D17C9FC560818F417156435E89D1D08F /* FBLPromise+Validate.h */, - B1B881F92E526A8209413F2ECC36111C /* FBLPromise+Validate.m */, - F0892D257C6CCA0E22BA2F114C72304C /* FBLPromise+Wrap.h */, - B610340313F660971B0A5708C6C8A111 /* FBLPromise+Wrap.m */, - E651D575660BC8B65F75E486C03C6360 /* FBLPromiseError.h */, - 47C23B78AF93D89C878DE99D64F3EA71 /* FBLPromiseError.m */, - 34761E5898D7D8E84B75A74099571E18 /* FBLPromisePrivate.h */, - A31FCF2029AEB431F9B3E6CE4E2162A6 /* FBLPromises.h */, - CEB3B7B0835471A87A22C5A11542CF85 /* Resources */, - C73234531D6A8453FC632A12EE72BD53 /* Support Files */, + C7C2329C3E94A50D0854E8A86D2E0C27 /* IQKeyboardInfo.swift */, + 2CE43E3E5A772279ABD0387A237DCDE0 /* IQKeyboardNotification.swift */, + AFA350F651E3623D475234566E3EA0F7 /* Resources */, + 021575100EBA18055CADF4DC909E6662 /* Support Files */, ); - name = PromisesObjC; - path = PromisesObjC; + name = IQKeyboardNotification; + path = IQKeyboardNotification; sourceTree = ""; }; - 637EA9F0C70CD6E817897094262379E1 /* Resources */ = { + 60C79D356CFD0695DA43ADB306A92F9D /* Support Files */ = { isa = PBXGroup; children = ( - 824147763C330FDDFEAAC82D913F54CA /* PrivacyInfo.xcprivacy */, + D760B0C71322AB916F76ED1A91FFAACB /* FirebaseCore.modulemap */, + F6C453108D1D255C879A6DF690CA1097 /* FirebaseCore-dummy.m */, + 07E0AD456E2983D293E4F77517365BB4 /* FirebaseCore-Info.plist */, + 72D4405C2F944B049C66D49781005AD6 /* FirebaseCore-umbrella.h */, + A0CA2E223EE61D297A117842655ACF18 /* FirebaseCore.debug.xcconfig */, + 0ECA7FAF11E033462E93DA53335F86BB /* FirebaseCore.release.xcconfig */, + B32B6C183B012436F99263A2CAB137F1 /* ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist */, ); - name = Resources; + name = "Support Files"; + path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; - 6396B7580EE84850B2056A7D5142EC06 /* Support Files */ = { + 61050816E063812DD7861EDB337FE984 /* Resources */ = { isa = PBXGroup; children = ( - 6C90E53C95F545A4FA43574D9C510314 /* ResourceBundle-Wormholy-Wormholy-Info.plist */, - 6E4A6DA47772750E5EFEBE629AD86924 /* Wormholy.modulemap */, - 5DBBC8EB45CF6569D76E1334BD431BD0 /* Wormholy-dummy.m */, - C20D5948145CC0039A9DB6E6DB0024E7 /* Wormholy-Info.plist */, - DAD416FB0232AE5BB84D6F2DCAFC49DA /* Wormholy-prefix.pch */, - 92A9405999E5F99B1E1CC157A521928B /* Wormholy-umbrella.h */, - A4D17D3E433925C0D124D3772DA86950 /* Wormholy.debug.xcconfig */, - 795CEEAE5E337F0243E5E46D031A5ABD /* Wormholy.release.xcconfig */, + 8B53BBE2A0D25B5C8D58832F4D0ACE1F /* PrivacyInfo.xcprivacy */, ); - name = "Support Files"; - path = "../Target Support Files/Wormholy"; + name = Resources; sourceTree = ""; }; - 64314610B8AEC01A9CAD36E0A3062B4C /* Frameworks */ = { + 64815C2A0353F7ACB27C0BFA2F9CF11D /* Resources */ = { isa = PBXGroup; children = ( - 6D0D7B0EFDC5D4BB79FFBA738840F9C2 /* SPMobileCore.xcframework */, + 6AF8199B31DC2D2E5AE8824F52F6D311 /* PrivacyInfo.xcprivacy */, ); - name = Frameworks; + name = Resources; sourceTree = ""; }; - 64BE3CD927540BEF1DCFB937B299ED78 /* decode */ = { + 656150E1A379CF55D8AAF482124D1799 /* GoogleConsentMode */ = { isa = PBXGroup; children = ( + 00BA232A188CE8CB8BE0617C8DD20B4C /* SPGCMData.swift */, ); - name = decode; + name = GoogleConsentMode; + path = GoogleConsentMode; sourceTree = ""; }; - 65539313D42DAA60534B1EAD5C093349 /* Core */ = { + 65B0EFF27DF57C4C1A31FBC51044AE01 /* NSData+zlib */ = { isa = PBXGroup; children = ( - 98D6EE0D7EF53CE7E8EA55AFABA9C287 /* IQBarButtonItem.swift */, - DE49826BDCB06935CCB17FFF3CCCF6EA /* IQBarButtonItemConfiguration.swift */, - 88B34E34B95E41D7F55A200BA5BDF0FC /* IQInvocation.swift */, - 4803177A0B10612AD80F82FA591AC858 /* IQKeyboardToolbar.swift */, - ED80881EA361D147468F7A78A220F6BD /* IQKeyboardToolbarPlaceholderConfiguration.swift */, - CB7953BC41FE8D8C62F54D300AD2BFFB /* IQTitleBarButtonItem.swift */, - 389DD0173213399DEC83C97738075EF0 /* UIView+IQKeyboardExtension.swift */, - 57DC3140C36FB7024E08B43ABD2A4DC8 /* UIView+IQKeyboardExtensionDeprecated.swift */, - 520CB1A9CBC9C1C36AD135B5CA65FF69 /* UIView+IQKeyboardExtensionObjc.swift */, + EE54C9146230FA28D06FA1D85664BB37 /* GULNSData+zlib.h */, + 7D9F63656FB06F22F2595187B0848068 /* GULNSData+zlib.m */, ); - name = Core; + name = "NSData+zlib"; sourceTree = ""; }; - 656150E1A379CF55D8AAF482124D1799 /* GoogleConsentMode */ = { + 66797DC6A5554AD8015245801D386EC2 /* FirebaseCoreInternal */ = { isa = PBXGroup; children = ( - 00BA232A188CE8CB8BE0617C8DD20B4C /* SPGCMData.swift */, + CA8395F2E2F83FAF9D50EF21F95C710A /* _ObjC_HeartbeatController.swift */, + 8A5A90AC4FB990424A1D8841F30954D2 /* _ObjC_HeartbeatsPayload.swift */, + 6958407BC993A53D89D27E4AA038B74E /* AtomicBox.swift */, + 6048C9C73410A27C6B4FEACDFD819DF9 /* Heartbeat.swift */, + 54A470A44EDE551DA0AFA256D2C5D4FF /* HeartbeatController.swift */, + E32F4479E29DABAF7BF872B9AAAF4A6C /* HeartbeatLoggingTestUtils.swift */, + 9098FE4D7D58067AE284C8C5FFAC0C68 /* HeartbeatsBundle.swift */, + C8B93BF6FE9F9C181C11A80BA91A4930 /* HeartbeatsPayload.swift */, + 7C776DCB2265A3C66F6F085B02E6B99C /* HeartbeatStorage.swift */, + 135F15712F2E26302AF7A1B3321C1933 /* RingBuffer.swift */, + 56E21CE4558584557CD31CE1F28B1AC1 /* Storage.swift */, + 68D160079C28255B1CFB259E7055E78C /* StorageFactory.swift */, + D3626ADBB3B7D16166250CB83C71FD62 /* WeakContainer.swift */, + 40D1E9AA7AF11058D10FD2FDB4D7D1C3 /* Resources */, + 19D80967BF8D60AF17C2DE7AC7F1C1DD /* Support Files */, ); - name = GoogleConsentMode; - path = GoogleConsentMode; + name = FirebaseCoreInternal; + path = FirebaseCoreInternal; sourceTree = ""; }; - 727531CD0B2FD738EAFAF85958BE9AFA /* Resources */ = { + 6845EC220D12C598485618C2CBF24068 /* Support Files */ = { isa = PBXGroup; children = ( - 9C1CF97D6E2D910E716566E0E6577558 /* PrivacyInfo.xcprivacy */, + EA79E967714FB4D90542038839E9CB94 /* PromisesObjC.modulemap */, + 4C60DC2B63ACF15C0A2D4E186A8D9450 /* PromisesObjC-dummy.m */, + D192A166EAE8C2745ED41DCC1E40295A /* PromisesObjC-Info.plist */, + ADC01D3509458F80B420EA447786BB2C /* PromisesObjC-umbrella.h */, + CEEF2772E3AD8AFE9DAE3F2083371D77 /* PromisesObjC.debug.xcconfig */, + E4269C979DF800C248CEE4EF6E553E03 /* PromisesObjC.release.xcconfig */, + 11B7F14A38E0CD1E7F2BDF3415BA40F3 /* ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist */, ); - name = Resources; + name = "Support Files"; + path = "../Target Support Files/PromisesObjC"; sourceTree = ""; }; - 735603448AB43588FED04B12ACD5DD54 /* Support Files */ = { + 6AF00912D0A719EB985650DBD635E4D2 /* encode */ = { isa = PBXGroup; children = ( - 877CB4CF0203E2819D8718E42FA72530 /* SwiftLint.debug.xcconfig */, - F6074F24366079A141C8F1DBD9CA9423 /* SwiftLint.release.xcconfig */, ); - name = "Support Files"; - path = "../Target Support Files/SwiftLint"; + name = encode; sourceTree = ""; }; - 73CA51851AE293E4E84A5BD2D30A2A03 /* encode */ = { + 6B732B375ED57CEFA5B2F9E083724A68 /* decode */ = { isa = PBXGroup; children = ( ); - name = encode; + name = decode; sourceTree = ""; }; - 74D5C72DF3926441113581131EAEB1D7 /* Support Files */ = { + 7392291FF241C3FAAF7EF065186E4ABB /* GoogleUtilities */ = { isa = PBXGroup; children = ( - 7C09DB1B121D90616EDE2AF921680F72 /* IQKeyboardManagerSwift.modulemap */, - 879733801FA819F19A10A2B0586DE8F7 /* IQKeyboardManagerSwift-dummy.m */, - F041EEB75423280546DFBC551F5404E6 /* IQKeyboardManagerSwift-Info.plist */, - FF3DE28EC023BDBD11F6F6DE55C8339C /* IQKeyboardManagerSwift-prefix.pch */, - 18408DE331F4EA484DADE491FC255046 /* IQKeyboardManagerSwift-umbrella.h */, - 58D79CB8A59DDB3B0C1DF4F79342D9C2 /* IQKeyboardManagerSwift.debug.xcconfig */, - 88D45DC70925BF740F59B93AED3D881C /* IQKeyboardManagerSwift.release.xcconfig */, - D292891B6BD80BF02FD70ACD1FE697A2 /* ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist */, + F618B83A6553A10D06CD6345535C8E3E /* AppDelegateSwizzler */, + DCC0B2F8F8097FEA3466BFC790B59E32 /* Environment */, + CFFDD80D32B8224492FCD6A63AC45193 /* Logger */, + A13428F8354C61C8488326687C89A569 /* MethodSwizzler */, + C63018EC5D7A3DE886A6A3F46A32507A /* Network */, + 65B0EFF27DF57C4C1A31FBC51044AE01 /* NSData+zlib */, + 484E1F6477F672CA693D5EAABDA5F284 /* Privacy */, + 792F07B4E33FCE68E4B51839A339DEBB /* Reachability */, + BC5276800188993D24CF15610537ABDD /* Support Files */, + 8F6E1A5C14799048645B6C600DC64AB6 /* UserDefaults */, ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardManagerSwift"; + name = GoogleUtilities; + path = GoogleUtilities; sourceTree = ""; }; 760EEE4E9E58DDDC58B7FCABA4651753 /* javascript */ = { @@ -4011,7 +4653,18 @@ path = ConsentViewController/Assets/javascript; sourceTree = ""; }; - 79889954ED35204ED773E3F4F90394D9 /* Pods-TVOSExampleAppUITests */ = { + 792F07B4E33FCE68E4B51839A339DEBB /* Reachability */ = { + isa = PBXGroup; + children = ( + 405145A208D170668343E2B587091B94 /* GULReachabilityChecker.h */, + 30F24B2C15D59F40D98C16A0F0F912AE /* GULReachabilityChecker.m */, + CBF89707947635E807790F88B0A8BD10 /* GULReachabilityChecker+Internal.h */, + 20AD96D8D079F854B147064F9599EAC6 /* GULReachabilityMessageCode.h */, + ); + name = Reachability; + sourceTree = ""; + }; + 79889954ED35204ED773E3F4F90394D9 /* Pods-TVOSExampleAppUITests */ = { isa = PBXGroup; children = ( 57F6A38A715E840F139F01FC9CDAA272 /* Pods-TVOSExampleAppUITests.modulemap */, @@ -4028,104 +4681,183 @@ path = "Target Support Files/Pods-TVOSExampleAppUITests"; sourceTree = ""; }; - 7C2E8E974B96574CC2A8EFADAA132B9C /* Resources */ = { + 7BC28D7E71C6754BBEEDD4EEF73DF4CB /* Nimble */ = { isa = PBXGroup; children = ( - 4BBA8D9441D3920DE7B0AAE73B78FC90 /* PrivacyInfo.xcprivacy */, + 26934FCB04DA419CDDC98A0054B0722A /* AdapterProtocols.swift */, + 7006A5366815E0D1A1AC0BC96AF85400 /* AllPass.swift */, + F62081B5872B4B4CA6605D0C45EC6AA5 /* AssertionDispatcher.swift */, + 0C925C17E276718B3B82E1F218B59371 /* AssertionRecorder.swift */, + AA26FA80CF19C1376665161D157B339A /* AssertionRecorder+Async.swift */, + 9FFDDD271BD34C9D86E1125AE8EADE30 /* AsyncAllPass.swift */, + 32BA42082EECC00B012859960BF28406 /* AsyncAwait.swift */, + 0874D5D0DB5A4E30D92632B7FA3AB3CE /* AsyncExpression.swift */, + 0D7754507C4F4A1D871BB0E2791C1968 /* AsyncMatcher.swift */, + 475D9F18CAAD368552304C5852F05426 /* AsyncTimerSequence.swift */, + C3DE70D4B74186544DE35040F08B1F68 /* BeAKindOf.swift */, + DEC7E2308BBA2F7476024112C8965575 /* BeAnInstanceOf.swift */, + BE7F6B22DDE3192E0442A82C559D5836 /* BeCloseTo.swift */, + 73B841F3C3994F9FB5964CFADC739D15 /* BeEmpty.swift */, + AF2760999E9505C542C43463DA33C683 /* BeginWith.swift */, + DB2C05762A801FB522FBCB138FF1441E /* BeginWithPrefix.swift */, + CE4C5BB8F7EA63BD8D6D7AA25EF08757 /* BeGreaterThan.swift */, + 2C7F93F7CFF13C43FCDDF68AC3D6522C /* BeGreaterThanOrEqualTo.swift */, + 957ECFCEB95A78EED2F84236B2271846 /* BeIdenticalTo.swift */, + AA1ADE3868CD5346F4F2BAA26B8668B3 /* BeLessThan.swift */, + 58C9FAAE4EC65C106EE35B0F9CB1D07F /* BeLessThanOrEqual.swift */, + F5E901D6799A4080D3DA5DE97F41AB72 /* BeLogical.swift */, + FDA0BEEBE00BD74FC0487862440E6BFC /* BeNil.swift */, + CCE82D92BB4A30E93E343AE451E79C32 /* BeResult.swift */, + 18C8FD65ACC0A1178BF37AB4EC3186DB /* BeVoid.swift */, + B0E65EFCCCF70977E03B71E52395AD11 /* BeWithin.swift */, + B07C103C97EA779BB2E3F8418929E9EF /* Contain.swift */, + 5C6E0A6079652131BBD0DBAEEAC0EFAA /* ContainElementSatisfying.swift */, + FD17AB599D447FDD7701ECCA77D1AD28 /* DSL.h */, + A26BBC7E4321F39E52EB7D529A6C5E94 /* DSL.m */, + 51933828D8851062D12D91760880D827 /* DSL.swift */, + E1E7F1F0F821C28473F4A86C41B25AB7 /* DSL+AsyncAwait.swift */, + 4C1D1AC22D8A04C1B881C008DB0F7CC7 /* DSL+Require.swift */, + F1491DC45BF249A59AD8CC59BC57813D /* DSL+Wait.swift */, + 1B143EBC1966C88F868E06AAC74D1677 /* ElementsEqual.swift */, + 7D4924F4ABCA937EF78C6D630F046064 /* EndWith.swift */, + 0D542779C488CF8ED5AD479BF0B8FB1A /* Equal.swift */, + F440B4F75146FD828851926CEEE43163 /* Equal+Tuple.swift */, + 18F6047FB83FFEC12D6F0FE6CE4703E5 /* Equal+TupleArray.swift */, + 5E0FDE098C322191908278E338777DB8 /* Errors.swift */, + 9F6BB2423C69F99EEAC09C7C9E7B6E66 /* Expectation.swift */, + DF194C25B34AEA58DDC39968922E81AC /* ExpectationMessage.swift */, + AEED0B0D8119723149D7E468C5282C0B /* Expression.swift */, + 2B12C2B2013EFCA0F1FEB1D5379405A8 /* FailureMessage.swift */, + 18FC2954F1FB2A2E4820D10D9B873A50 /* HaveCount.swift */, + ED4C44088D195E59E09E786F41DAD355 /* Map.swift */, + 833828B6DA0C15775334C4481526CC58 /* Match.swift */, + 3A27B524BCCE68381BE0D1E3D5FEA7A6 /* Matcher.swift */, + 36F2B7CBA2ADF7578C1336DE88F9EDCA /* MatcherProtocols.swift */, + 7BFD36A5C928AC017F56C1D85904E4BA /* MatchError.swift */, + 77C1460EBE5ED2EA5DA2743DF370336D /* Negation.swift */, + E04746FC82CB76AC1DA809F7843EAF6C /* Nimble.h */, + EA5D8EF50A7F32B84EBC90AF394CB7C8 /* NimbleEnvironment.swift */, + E72C75729C5B0D555147F8E096CDF979 /* NimbleSwiftTestingHandler.swift */, + 54D129B0FF00E96ADA5E985D90AEB12D /* NimbleTimeInterval.swift */, + 29978296061A1207DEE8CAB87764F0DA /* NimbleXCTestHandler.swift */, + 72A3F91679C52A3A821136E6505DD539 /* NMBExceptionCapture.h */, + 87D5ABE9F3D08E0E9D3B6E428A17FA0B /* NMBExceptionCapture.m */, + 8DE8448FA1AE310E2375710837E256E9 /* NMBExpectation.swift */, + 29EAF25F21EE50C142118D7F65D0141E /* NMBStringify.h */, + 050F9B9E655D48CD28778AA2297DA7BB /* NMBStringify.m */, + 3EC6888F5775C185C1CDDABBBDBBA30D /* PollAwait.swift */, + 0227A01D4F0BD28AF391B3A9DB204D03 /* Polling.swift */, + 43244700C4FEBF5415C1C05108E62092 /* Polling+AsyncAwait.swift */, + E93B05AB7F2D74755F556BEFA27ABDB6 /* Polling+Require.swift */, + 46DECD16C4B5D1902DD9C67D4E8B0D99 /* PostNotification.swift */, + 4E616169FBC8240945FC48D592274B4A /* RaisesException.swift */, + 288EEEA8AEE2176ED91869E38426DC17 /* Requirement.swift */, + E28183BA96EE0DB449E61EDB2A843AFE /* SatisfyAllOf.swift */, + 5632689C6FB84E1275F7312AAC7B9057 /* SatisfyAnyOf.swift */, + 6D48730791EE2DDBFAF504114702BBC1 /* SourceLocation.swift */, + 67957B9E77D349FDBA49CD741DA313D2 /* Stringers.swift */, + 9EFDF09D136087E961C24BA4E9EE1CD8 /* ThrowAssertion.swift */, + A1AE3F717FE3E0E66C2B39495FB5A811 /* ThrowError.swift */, + 81DFF5B09AFDDA41E61A9BC5AEDDC6FD /* ToSucceed.swift */, + 83D9F90000E5510FE177292A21D0DB03 /* utils.swift */, + 1131771154A5D4CFBC4918DB50DAFEB2 /* XCTestObservationCenter+Register.m */, + A4B2231032C52860B1DFA3F8CB4F3F67 /* Support Files */, ); - name = Resources; + name = Nimble; + path = Nimble; sourceTree = ""; }; - 7EB1DEC6F355E572AE0EEAEF733FED64 /* Resources */ = { + 82127B752DF4FC3944F40F4B63242F6C /* Frameworks */ = { isa = PBXGroup; children = ( - 5A93CD8BA97E5CA384BA7A292A321F61 /* PrivacyInfo.xcprivacy */, + AA30F8B79734070F28F2685338C219C8 /* FirebaseAnalytics.xcframework */, ); - name = Resources; + name = Frameworks; sourceTree = ""; }; - 7F1CEB4128823B5B888EFF1EF4D0203F /* GoogleAppMeasurement */ = { + 82EED63E21C43BDE686776AB90EBABD7 /* iOS */ = { isa = PBXGroup; children = ( - CA12F7D189BE520211D1486CEE7113D4 /* AdIdSupport */, - 81D56115E8D4BB46A64A807F8235310D /* Support Files */, - 3B4BEE244090748513F364434C94AB6F /* WithoutAdIdSupport */, + 0ED1B8267B071DB6AB0389823D4B50E9 /* SPWebMessageViewController.swift */, + 617D70F6D92E44183B59218BA5F565AB /* SPWebViewExtensions.swift */, ); - name = GoogleAppMeasurement; - path = GoogleAppMeasurement; + name = iOS; + path = iOS; sourceTree = ""; }; - 7F63ED2C0D631E9F1552FBC76BFD9C64 /* SPMobileCore */ = { + 84E7A678BE6FDED3A06303ABE8B034E6 /* Resources */ = { isa = PBXGroup; children = ( - 64314610B8AEC01A9CAD36E0A3062B4C /* Frameworks */, - C48263063929E885FA868D47309DDBC0 /* Support Files */, + B5139508753F2B17003FEED9C0AF3641 /* PrivacyInfo.xcprivacy */, ); - name = SPMobileCore; - path = SPMobileCore; + name = Resources; sourceTree = ""; }; - 8055BFE00E34B6E70583E6045C5E4771 /* Core */ = { - isa = PBXGroup; - children = ( - A6CDFD442F6A27283F045D4440B11C01 /* IQActiveConfiguration.swift */, - B14AE276C2279D801C19BC2519D636C6 /* IQKeyboardManager.swift */, - 484F5E697B7673FCBC7DB9958AA5877E /* IQKeyboardManager+ActiveConfiguration.swift */, - 7F54E77D2923C355006C920F1E69265E /* IQKeyboardManager+Debug.swift */, - 86E3D9F4D548E348E5B82B9F6210815C /* IQKeyboardManager+Deprecated.swift */, - 9C3E3CB761383A5F33EA2941AC616F6F /* IQKeyboardManager+Internal.swift */, - E38AD2DA734E1D224F8BF3ADBD01DA22 /* IQKeyboardManager+Position.swift */, - B40BB952D7B8E74D6B9697915507E79F /* IQRootControllerConfiguration.swift */, - A4A607350DE79A37FDB354A47F15B41F /* IQScrollViewConfiguration.swift */, - A339F3B7EAC3BD75E89053047073DEF2 /* UICollectionView+IndexPaths.swift */, - 104B227DA60E6B70F39A942CBB1E0D05 /* UIScrollView+IQKeyboardManagerExtension.swift */, - 4463D53FFAE7FC5181B6344DE4693AA5 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */, - 5CD376FA9A92CB6FBB60F76160395E7A /* UITableView+IndexPaths.swift */, - 7E914A02A61226BF6A57CACD1F5CBC1F /* UIView+IQKeyboardManagerExtension.swift */, - 9F04AA8BC68E9A84F7AA20A5546BE998 /* UIView+IQKeyboardManagerExtensionObjc.swift */, - 83B391AF7ECED0ECDC24C47FC3894AE3 /* UIView+Parent.swift */, - 3773D6E23F79E376BE24670850083A07 /* UIView+ParentObjc.swift */, - 3D7DB26A9E5C503DCCD3FFEA39056562 /* UIViewController+ParentContainer.swift */, + 85704370643F51B0C3B7A03351A362AC /* Support Files */ = { + isa = PBXGroup; + children = ( + 2CFE12B6F3C7C740E68CAE4F9245E695 /* Quick-iOS.modulemap */, + A85E92CAEEEDC4C630593857225DA065 /* Quick-iOS-dummy.m */, + ABABF808BCAB1D58E18BC75EC35A5A1F /* Quick-iOS-Info.plist */, + E0918FFEBF892D4F27789FC8F1E3DA1D /* Quick-iOS-prefix.pch */, + C27FE6E8099EFAE616C0117F0A94461C /* Quick-iOS-umbrella.h */, + A94D32980FE8EEFD4BF3C5D8AB171AFC /* Quick-iOS.debug.xcconfig */, + B3A3D24201B2F1A39E6787ECA7D65505 /* Quick-iOS.release.xcconfig */, + 2266B6960BA5D00602AED11707DDCE85 /* Quick-tvOS.modulemap */, + A109023FCA68FDE015141DD67DC29755 /* Quick-tvOS-dummy.m */, + 521BC1A6E8948B3E5D58D3B8625D825E /* Quick-tvOS-Info.plist */, + F22C32C8E37A2E81C19E81D115A7CD82 /* Quick-tvOS-prefix.pch */, + 969FE37988516D4F7FCD8175873C3FD7 /* Quick-tvOS-umbrella.h */, + C61F8B32B14E4029D7A1CA2DE208A5A5 /* Quick-tvOS.debug.xcconfig */, + A70A5FFB77406837B331831AFA067EA9 /* Quick-tvOS.release.xcconfig */, ); - name = Core; + name = "Support Files"; + path = "../Target Support Files/Quick-iOS"; sourceTree = ""; }; - 81D56115E8D4BB46A64A807F8235310D /* Support Files */ = { + 85AC22B4433B3CE027E3E08658904B56 /* IQKeyboardToolbarManager */ = { isa = PBXGroup; children = ( - F880F9AA85117E6E28ED36AB9067EACB /* GoogleAppMeasurement-xcframeworks.sh */, - FBAA18AB5D53716CC24AE5AE7479096E /* GoogleAppMeasurement.debug.xcconfig */, - 929615183E968B3F423B820ECED8845C /* GoogleAppMeasurement.release.xcconfig */, + F5C59B4ED524ABF6D2C2622A2C3CF9CE /* IQKeyboardManager+ToolbarManager.swift */, + C9293F38470C63C2962F16E019C59547 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */, ); - name = "Support Files"; - path = "../Target Support Files/GoogleAppMeasurement"; + name = IQKeyboardToolbarManager; sourceTree = ""; }; - 82EED63E21C43BDE686776AB90EBABD7 /* iOS */ = { + 8910DE18F4068EE7F2F8E36E5101A369 /* Frameworks */ = { isa = PBXGroup; children = ( - 0ED1B8267B071DB6AB0389823D4B50E9 /* SPWebMessageViewController.swift */, - 617D70F6D92E44183B59218BA5F565AB /* SPWebViewExtensions.swift */, + F3C0D8EB072AFFB00F91A3ED1B7CCA53 /* iOS */, + 5D199CA79328798A9CC193A612BC5CAC /* tvOS */, ); - name = iOS; - path = iOS; + name = Frameworks; sourceTree = ""; }; - 84BB2196DC1C95A1A63BCB06A9F4EC2F /* Resources */ = { + 8C0CC5D75F0C94D2B7BE7E0FD0A11336 /* Appearance */ = { isa = PBXGroup; children = ( - BDB5D46E51C798C1E3F7D433589F7BA8 /* PrivacyInfo.xcprivacy */, + 35C4A9F0DF15C70F4B42FA46D3195906 /* IQKeyboardAppearanceConfiguration.swift */, + B2B165934E9839F38ACCAC3155B9E1AD /* IQKeyboardAppearanceManager.swift */, + 284792F06F89CA62D3E6123581FBA927 /* IQKeyboardAppearanceManager+Internal.swift */, + 6B9ACFD5AA593AE2F9E646FAD249CCAA /* IQKeyboardManager+Appearance.swift */, + 1A76BD3D2B474131A34604EF2865963E /* IQKeyboardManager+Appearance_Deprecated.swift */, ); - name = Resources; + name = Appearance; sourceTree = ""; }; - 8910DE18F4068EE7F2F8E36E5101A369 /* Frameworks */ = { + 8C1D547DF185348D67B214235FE76FE5 /* Support Files */ = { isa = PBXGroup; children = ( - F3C0D8EB072AFFB00F91A3ED1B7CCA53 /* iOS */, - 5D199CA79328798A9CC193A612BC5CAC /* tvOS */, + B6A755999186782F65061F41046B284E /* CwlCatchExceptionSupport.modulemap */, + AE99FBCE8B8C83A93A6C33D9D5723514 /* CwlCatchExceptionSupport-dummy.m */, + CFAC1713790B2F45ED9DFC538B41EAF1 /* CwlCatchExceptionSupport-Info.plist */, + 565B305791378E3B5B9A4BC25591AFD5 /* CwlCatchExceptionSupport-prefix.pch */, + 11296EDFC129EA0521F51D9161E5136D /* CwlCatchExceptionSupport-umbrella.h */, + CF03731063A8BCF7639F74A1880DBAEF /* CwlCatchExceptionSupport.debug.xcconfig */, + D40DAEECEA07B34CD1EA6C66DCEB2C6C /* CwlCatchExceptionSupport.release.xcconfig */, ); - name = Frameworks; + name = "Support Files"; + path = "../Target Support Files/CwlCatchExceptionSupport"; sourceTree = ""; }; 8E72C09569BCEFDC73BEB7C218395BC6 /* Pods-Examples-SourcepointFirebaseDemo */ = { @@ -4145,14 +4877,23 @@ path = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo"; sourceTree = ""; }; - 9072D5057F60A69E8208C5BC0718D69D /* Resources */ = { + 8F326894FBE38FCFA26890F77F11C789 /* Resources */ = { isa = PBXGroup; children = ( - F7707F3F0889C0C9C59F2BB31C131DFE /* PrivacyInfo.xcprivacy */, + 09760B2CDB70F77EDBE597061083AB98 /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; + 8F6E1A5C14799048645B6C600DC64AB6 /* UserDefaults */ = { + isa = PBXGroup; + children = ( + 06CDCF1DEF066100C9A8DA515BF0F69F /* GULUserDefaults.h */, + AD32F2285581C5240F786F49CA8C33E4 /* GULUserDefaults.m */, + ); + name = UserDefaults; + sourceTree = ""; + }; 93A1093EC8CEFC9B685566A71CE5FF2E /* Support Files */ = { isa = PBXGroup; children = ( @@ -4177,6 +4918,21 @@ path = "Example/Pods/Target Support Files/ConsentViewController-iOS"; sourceTree = ""; }; + 93EB688CD00F1369BA81DB4071B33B2F /* Support Files */ = { + isa = PBXGroup; + children = ( + FEA8166E0B3BDC5149E48354C4FFF351 /* CwlCatchException.modulemap */, + EBB21CCD209327E78352F268FE5D05DD /* CwlCatchException-dummy.m */, + 69A957A19A6ADF826C4DD252DA689504 /* CwlCatchException-Info.plist */, + 07A8CFAAC606B196E05540BE99D4F78B /* CwlCatchException-prefix.pch */, + E1B76FB29EA8F4A3A6137D51D23FADEF /* CwlCatchException-umbrella.h */, + A25E299620E4156A2638D0F3DE5EC583 /* CwlCatchException.debug.xcconfig */, + 88E5A68E490D25730B9530B224AC6B05 /* CwlCatchException.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/CwlCatchException"; + sourceTree = ""; + }; 9591BEDAE4413FBBE53CB1FEC8BFA6B4 /* Extensions */ = { isa = PBXGroup; children = ( @@ -4191,43 +4947,21 @@ path = ConsentViewController/Classes/Extensions; sourceTree = ""; }; - 95AD60951285D369183A401DA4524AB7 /* Support Files */ = { - isa = PBXGroup; - children = ( - BCD8B6305B55006EA5910F11709B01AB /* FirebaseInstallations.modulemap */, - 7CC5D8F2943EB6445527FDCD29A3B03E /* FirebaseInstallations-dummy.m */, - 7D20A86F9923F3B4F4EF7F65A37EE188 /* FirebaseInstallations-Info.plist */, - 20F77F98B9EC6D3423626236B5EE1A91 /* FirebaseInstallations-umbrella.h */, - A381E7922866ACD62FE83FD3C2342456 /* FirebaseInstallations.debug.xcconfig */, - 942981443809EDD401F81BC6B79B05F5 /* FirebaseInstallations.release.xcconfig */, - 2F796E90AEBE724205944949DD0F4593 /* ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseInstallations"; - sourceTree = ""; - }; - 99BC29215B074A9E278BDB15C169AB6E /* Support Files */ = { + 96C7517DF2173BCDB7405055A95FA8E7 /* Resources */ = { isa = PBXGroup; children = ( - CE31A63E42D84DB9BFB057CD01A26F7B /* IQKeyboardCore.modulemap */, - CDDDB1E71C30352FDEF7C83C02CF7745 /* IQKeyboardCore-dummy.m */, - 2809E2FB0B0999E9E6C0294EB446B864 /* IQKeyboardCore-Info.plist */, - 3C17742D257D507754D61F1204093BDF /* IQKeyboardCore-prefix.pch */, - 30112CF86B7799B80FC4630793CC9B61 /* IQKeyboardCore-umbrella.h */, - 46D3E46D67E13B0FBD8CED0A0D68BF35 /* IQKeyboardCore.debug.xcconfig */, - F3C7E3E02E322F52CD58F40E74EF7F61 /* IQKeyboardCore.release.xcconfig */, - 85E12153EE52F152E3D862AA4FD5751B /* ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist */, + 48083DE72EF8FFB2C009AEF98D922690 /* PrivacyInfo.xcprivacy */, ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardCore"; + name = Resources; sourceTree = ""; }; - 9A6B7DF49E11F9ECCE59AAFE859278DC /* Resources */ = { + 96DFD57D39A8539CB5EB6381899F689D /* SwiftLint */ = { isa = PBXGroup; children = ( - 78355AD7C1277E5D6D83E643D66A66A2 /* PrivacyInfo.xcprivacy */, + C2D31F9B8526D321FFA688C37BFAEE5D /* Support Files */, ); - name = Resources; + name = SwiftLint; + path = SwiftLint; sourceTree = ""; }; 9B4CB2CFEBCCB812A34692DEAC323D51 /* Pods-Tests-AuthExampleUITests */ = { @@ -4247,78 +4981,102 @@ path = "Target Support Files/Pods-Tests-AuthExampleUITests"; sourceTree = ""; }; - 9B524EB05475BC4DB8530AED84406EAA /* Environment */ = { + 9D7B1B269AE981E9DC976866D803A67B /* Core */ = { isa = PBXGroup; children = ( - 114EB343440B05856B1F4C37CD3BB335 /* GULAppEnvironmentUtil.h */, - 4A9305FF39B7901376A007AD1B77B75B /* GULAppEnvironmentUtil.m */, - 4D5199EFE37C11CE3BB20702683D693F /* GULKeychainStorage.h */, - 5F4AF39D463478F827761CD328A3818D /* GULKeychainStorage.m */, - 562D0CACFCF25598BC00151E0F8B8E94 /* GULKeychainUtils.h */, - 16FAB175E40DFD84285E6D4D2DA5042C /* GULKeychainUtils.m */, - BCFA56426C8CA914EB49D1171DEB1BB7 /* GULNetworkInfo.h */, - A8C32FE882E21AA05370CA7229768EDB /* GULNetworkInfo.m */, - 2E8488943FE22D17A3F4605A7CB55677 /* IsAppEncrypted.h */, - DC713AD012A9EBC46DA1EFA1EFB4489E /* IsAppEncrypted.m */, + 76384906EF776A77A37571DC6C520E41 /* IQActiveConfiguration.swift */, + 11F290A7274F920B01D24B662A5E5E88 /* IQKeyboardManager.swift */, + B7DA271879C5545FA95AC3A9F8807B2B /* IQKeyboardManager+ActiveConfiguration.swift */, + 3C720A34C11B645F17B554825FB8C54C /* IQKeyboardManager+Debug.swift */, + 5E08F59C00ADC343B643B1AE5B682C34 /* IQKeyboardManager+Deprecated.swift */, + 5A89F671C269C20114AD5CEEF81E691E /* IQKeyboardManager+Internal.swift */, + AFAFBCA4CA46B7789F68E77AD06F489E /* IQKeyboardManager+Position.swift */, + 9AE3C37AC143AA6187DAA70513DB82D2 /* IQRootControllerConfiguration.swift */, + F43C191D5EFD4AA4564971E2F3E68FCF /* IQScrollViewConfiguration.swift */, + 26EA509F93874431C5DA3886A8BF2C86 /* UICollectionView+IndexPaths.swift */, + E58DF34CA22A58EAA384996DA0161FAB /* UIScrollView+IQKeyboardManagerExtension.swift */, + 105CE05DE7CD3B0A74D93C6AD4B5EA00 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */, + F99A847226F1CB64296C8D40579E77BF /* UITableView+IndexPaths.swift */, + BB6932AE55EA481CF1AAF28D724E19F9 /* UIView+IQKeyboardManagerExtension.swift */, + B29E4356D1D410280B2A1E1567FCD00D /* UIView+IQKeyboardManagerExtensionObjc.swift */, + B4D63D4847FC55FF58BB4A31235A0BF9 /* UIView+Parent.swift */, + 237601B38F13A3670A4070C1CAC6862D /* UIView+ParentObjc.swift */, + D1C32D73EB2B645FC9BF38D9365ECCEA /* UIViewController+ParentContainer.swift */, ); - name = Environment; + name = Core; sourceTree = ""; }; - 9EE3BBD11B97AF2B50BD0FBE43D0F0CE /* FirebaseInstallations */ = { - isa = PBXGroup; - children = ( - 6026BBFDA885D05E41752F0F5903AECF /* FIRAppInternal.h */, - 5F5989A6C63822773F0A0766286C3B16 /* FIRComponent.h */, - 10341697CC5CFCDB719DFFF47C023BDA /* FIRComponentContainer.h */, - 0034872F1B60FB5FED00F412D9D7A439 /* FIRComponentType.h */, - CB3663379ECD63B20466EF5967266590 /* FIRCurrentDateProvider.h */, - 3A1435CDF83533A2FFCA0414C6DE85F2 /* FIRCurrentDateProvider.m */, - 58B65CEF73ABE0FE8DD6B942CC4B50D6 /* FirebaseCoreInternal.h */, - E206D039662A29E2E130B8FABA1AD6FD /* FirebaseInstallations.h */, - 8C299B4D455A7FA34EA7FB05606CCF53 /* FirebaseInstallationsInternal.h */, - 02D18E271BEFA1C0F5AFAF410A2ADA1D /* FIRHeartbeatLogger.h */, - 65C452608D9849630DCDB7A7D31C4ADD /* FIRInstallations.h */, - 1ED22AD25DF356DD678C967A6A6C5CF4 /* FIRInstallations.m */, - C163FB5D653618A204E3FEA3AD4DC82D /* FIRInstallationsAPIService.h */, - E8D8EFE36A8C64F7BC1D214068840043 /* FIRInstallationsAPIService.m */, - 2F40700C93C0813BF56C34CAA2569E4F /* FIRInstallationsAuthTokenResult.h */, - 7645796C13F9EDC0C400E92890E1303E /* FIRInstallationsAuthTokenResult.m */, - 20BB3FDE57EBA1431465FE6121E9632B /* FIRInstallationsAuthTokenResultInternal.h */, - AC77D88FD4D2CC86CC688ED924B45089 /* FIRInstallationsBackoffController.h */, - F24C628165B8DB74332AD3E82D3C33B9 /* FIRInstallationsBackoffController.m */, - 28D4C48FDBEBBB97BC27045B848FF1A0 /* FIRInstallationsErrors.h */, - 92786E34D85D7C471450C99E8222A6B4 /* FIRInstallationsErrorUtil.h */, - 040E03CB321E63CE5EFB5F9F97CFD55C /* FIRInstallationsErrorUtil.m */, - 33E288796077779AB76E10F54206074F /* FIRInstallationsHTTPError.h */, - DB2B7DC94D8855BFFC13168F43F0437E /* FIRInstallationsHTTPError.m */, - 32C48D347EAB6A81050959B1F63D527F /* FIRInstallationsIDController.h */, - 76F97034C54D02EE77BF2B63FF319CF5 /* FIRInstallationsIDController.m */, - 9E3240CCE746F0BF677592D3F6CF5B1C /* FIRInstallationsIIDStore.h */, - FF60025BD595A9B87DF6E21EC8D4B2AC /* FIRInstallationsIIDStore.m */, - C78DA2558B864B9702B2369FBCF01E5A /* FIRInstallationsIIDTokenStore.h */, - 83B67AB87D972834A26CDEF7FEA9769D /* FIRInstallationsIIDTokenStore.m */, - 052CD9042C4C35EA5916B2AA570C2EEE /* FIRInstallationsItem.h */, - C3727AAE81DC2BDC43156A2F1B88527B /* FIRInstallationsItem.m */, - 3460BF7473AA715C31E0ABAE13FCC42B /* FIRInstallationsItem+RegisterInstallationAPI.h */, - 07CE5597A5FF1D3D125158E39F082A22 /* FIRInstallationsItem+RegisterInstallationAPI.m */, - EC949CD0164BF153DCE350A7138FEEA2 /* FIRInstallationsLogger.h */, - 110771DFD30130391179BD7F3A0A9EC9 /* FIRInstallationsLogger.m */, - C128E232D8CB1629474DCDDD789A295D /* FIRInstallationsSingleOperationPromiseCache.h */, - E645797C9F8763A16C47B162A02D0FF8 /* FIRInstallationsSingleOperationPromiseCache.m */, - CC3FED565A6CA2CA259AF2EEC3466425 /* FIRInstallationsStatus.h */, - 3FD71E83EF45F68DE3E4C88FD59CE157 /* FIRInstallationsStore.h */, - 716F890AC934E8B8A9807B8279BB24EB /* FIRInstallationsStore.m */, - A0643F70B7B47E01C9A928D1EF6DEAD2 /* FIRInstallationsStoredAuthToken.h */, - 56C00C5AFA9653E3DB0ED0C4B458F869 /* FIRInstallationsStoredAuthToken.m */, - 31E52989936EFB64E1A591731B94982A /* FIRInstallationsStoredItem.h */, - A596D3A4A9D566D71BC803D06552773E /* FIRInstallationsStoredItem.m */, - 61ED9016651F94994CC2AEA9AEFF876E /* FIRLibrary.h */, - F8BD6514F748BCC7B75BA5FB9BE7B16B /* FIRLogger.h */, - 84BB2196DC1C95A1A63BCB06A9F4EC2F /* Resources */, - 95AD60951285D369183A401DA4524AB7 /* Support Files */, + 9E451D85DC6C0F5FC084083BD939E89E /* Support Files */ = { + isa = PBXGroup; + children = ( + 4AFBE8FB5A27028CAA743C0E5513B480 /* SPMobileCore-iOS-xcframeworks.sh */, + 2BE18B625D19EDDBF19C786FA9C4CD23 /* SPMobileCore-iOS.debug.xcconfig */, + 15984851E2434A1A83C71AEAED338F2E /* SPMobileCore-iOS.release.xcconfig */, + 0A615B8FEA4BB77F6D10C31025414773 /* SPMobileCore-tvOS-xcframeworks.sh */, + FC706AD81CC3AB9974F689DF1937213B /* SPMobileCore-tvOS.debug.xcconfig */, + B2E8B7E8BA00F2628706C0AA85E4F5BB /* SPMobileCore-tvOS.release.xcconfig */, ); - name = FirebaseInstallations; - path = FirebaseInstallations; + name = "Support Files"; + path = "../Target Support Files/SPMobileCore-iOS"; + sourceTree = ""; + }; + A13428F8354C61C8488326687C89A569 /* MethodSwizzler */ = { + isa = PBXGroup; + children = ( + 48A552628325A8E063430D78445EB2F1 /* GULOriginalIMPConvenienceMacros.h */, + B9B245DECDD24C9AC0F75E7898CAEF76 /* GULSwizzler.h */, + D81FFB2F47CA4FE79FA032EFB71FA53C /* GULSwizzler.m */, + ); + name = MethodSwizzler; + sourceTree = ""; + }; + A4B2231032C52860B1DFA3F8CB4F3F67 /* Support Files */ = { + isa = PBXGroup; + children = ( + 45B6A9569AD616EB3333C41F956D0139 /* Nimble-iOS.modulemap */, + 68AD33968E37713F30DBAD66C6AD3933 /* Nimble-iOS-dummy.m */, + 31153087896082D206A4FB09F2A31C65 /* Nimble-iOS-Info.plist */, + 5A317EFAAAB1C79D69C0D7B97455B293 /* Nimble-iOS-prefix.pch */, + 4CF88DAEFC6154DED003F3A02E3B6AF3 /* Nimble-iOS-umbrella.h */, + 0EDDE07DCB417401246AED370804DA0C /* Nimble-iOS.debug.xcconfig */, + 477405BF4D1FBDEDBF1A82AD3DE52801 /* Nimble-iOS.release.xcconfig */, + 0E798ACA8739273EF6705B2F619E7748 /* Nimble-tvOS.modulemap */, + 8F94E40F9C47186B9C90B58C1FDA12EC /* Nimble-tvOS-dummy.m */, + B2020A4EA56E58DF9051225B6ED4D89B /* Nimble-tvOS-Info.plist */, + C5F0138D0FEA2195D7B1FCB1DF1496C8 /* Nimble-tvOS-prefix.pch */, + 271B9303BE698648CA3470649FD280CD /* Nimble-tvOS-umbrella.h */, + 5393C11706FE1D32CACED7EBDE82926B /* Nimble-tvOS.debug.xcconfig */, + F9DA5DD14F328DC15C1B8894F9EBE99A /* Nimble-tvOS.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/Nimble-iOS"; + sourceTree = ""; + }; + A52E5A716833DBEFD72089C4A4300CCE /* Support Files */ = { + isa = PBXGroup; + children = ( + D8DECABB4D3F288EE625E49E0AFF6EC0 /* IQTextInputViewNotification.modulemap */, + F00A310658C463AD2E3C33FB171EC9F8 /* IQTextInputViewNotification-dummy.m */, + 393EA51584D351873633CE98B99B94F5 /* IQTextInputViewNotification-Info.plist */, + D8540E8DFF7E9730C196553A9FDCC15B /* IQTextInputViewNotification-prefix.pch */, + 01B7A0F12119250D0C87E0712F834199 /* IQTextInputViewNotification-umbrella.h */, + CC14A8A1A0D472EF58D5491F0B14547E /* IQTextInputViewNotification.debug.xcconfig */, + 312BF46E4E318C049EFD24288B49F860 /* IQTextInputViewNotification.release.xcconfig */, + 61660CEC35D64BE67CB8E7393659FE56 /* ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/IQTextInputViewNotification"; + sourceTree = ""; + }; + A53746BAE8FD81EF35886154C4190E15 /* GoogleAppMeasurement */ = { + isa = PBXGroup; + children = ( + C40C0E558BD2429F02635BF238D08F3B /* AdIdSupport */, + AF295A37AC9BD033F540F7F2CD2999CE /* Support Files */, + C9E0AF00EFE4DF089E6554FD21B13FE1 /* WithoutAdIdSupport */, + ); + name = GoogleAppMeasurement; + path = GoogleAppMeasurement; sourceTree = ""; }; A5C85DEC71D0A8549FD03EC499B23E6C /* GDPR */ = { @@ -4340,12 +5098,65 @@ path = GDPR; sourceTree = ""; }; - AB40E16D19E066C2EAAE346C2D1D4344 /* Resources */ = { + A6D4BAEAF12AFE719A388999C8970A09 /* CwlCatchExceptionSupport */ = { isa = PBXGroup; children = ( - 93FFB2E36AC453C2DA82459E83652350 /* PrivacyInfo.xcprivacy */, + 1D1EF07B4074C5D3B21D293539E811B4 /* CwlCatchException.h */, + CA51FBC8E872CD7ACAD950A44AB5F027 /* CwlCatchException.m */, + 8C1D547DF185348D67B214235FE76FE5 /* Support Files */, ); - name = Resources; + name = CwlCatchExceptionSupport; + path = CwlCatchExceptionSupport; + sourceTree = ""; + }; + AC48372B1A9FEE0FE5FAB353A93B28ED /* PromisesObjC */ = { + isa = PBXGroup; + children = ( + A8539471500A9065B1DF8CED74E86479 /* FBLPromise.h */, + 9854D1AA61EDBCC8C7F3C964FA9AC3FD /* FBLPromise.m */, + 1AF548F201A5ECBD867F8B7FE2F0B358 /* FBLPromise+All.h */, + 8F6021C9C3B57896D77C989E22147F4F /* FBLPromise+All.m */, + BDC87B2DDE2EA8F037A768043509C7DC /* FBLPromise+Always.h */, + CE860B2EA5C79C372454DCB7851C091C /* FBLPromise+Always.m */, + 18F9E19CA9D917CB5655F5450578C723 /* FBLPromise+Any.h */, + E2129BA7BCD8B648B9FB349C176DA621 /* FBLPromise+Any.m */, + 2EAF80D436E8A7F00E434A770B74AD91 /* FBLPromise+Async.h */, + 3F9C078C5139CC0543A765E2FF230C90 /* FBLPromise+Async.m */, + 0FDD93343FCF19CFFE387161EBDBA43B /* FBLPromise+Await.h */, + 99E2520C737AC3324E6D8537F4FE3F34 /* FBLPromise+Await.m */, + 6950705DDFFFB2F3B1FE714BEF549C3C /* FBLPromise+Catch.h */, + 37BFCC7EAC8AA0681464CFDE2CF66640 /* FBLPromise+Catch.m */, + 11B372D0279EAB990E3BD615FFDBB958 /* FBLPromise+Delay.h */, + 784E78149BB92433D5D2BB064AEB14AF /* FBLPromise+Delay.m */, + 69211393A493FE597E264D3C509449FE /* FBLPromise+Do.h */, + FBE547F9D281008A40E7EBF35CB5799A /* FBLPromise+Do.m */, + 2AA1E8B56C1C4BB8239C7A2E5838E478 /* FBLPromise+Race.h */, + B38761F6B536F6512B2550EEFADD6366 /* FBLPromise+Race.m */, + F3AA96C6D3CC2339D41DFCCA064AE221 /* FBLPromise+Recover.h */, + 008E3704D3829052945409F16538B160 /* FBLPromise+Recover.m */, + AABE37F8C23C6D9E87B16B75F451798C /* FBLPromise+Reduce.h */, + 341749C73A9DDC03BBFCB8BF4C77838B /* FBLPromise+Reduce.m */, + 29AE751FC0F120611D3A1462E52CDDCC /* FBLPromise+Retry.h */, + 81B2DCD6F80D84C042CB7FA5F1C8FBCE /* FBLPromise+Retry.m */, + 7ADDC9DE53F9B7E1A134155B9342EECE /* FBLPromise+Testing.h */, + AEFE0B8AB65CAA06ADCEC1AC92FB08CF /* FBLPromise+Testing.m */, + B5DE92BBC442B76678390B2150C0ED58 /* FBLPromise+Then.h */, + 90C4D664CCFC0EC8EB09816FA8633A75 /* FBLPromise+Then.m */, + 59C79470037DDC297119D5F6E19B71ED /* FBLPromise+Timeout.h */, + 79B5DEFDD954FFD119B8D63652978BD1 /* FBLPromise+Timeout.m */, + 166CE685B045446FB8D256E1CCB7BB31 /* FBLPromise+Validate.h */, + 3125E0AEF4C07B3C967DB0A1D09ED6E0 /* FBLPromise+Validate.m */, + E302764BB6FE971DF646B352FF0DE874 /* FBLPromise+Wrap.h */, + 08F357DF6D86BCE1B955CCA6588B08ED /* FBLPromise+Wrap.m */, + 4B2F037708CF295D855EFDAD564C8EB8 /* FBLPromiseError.h */, + 9576D8FB03AEE9AC0CBDD7F29B35CAA8 /* FBLPromiseError.m */, + 24C58E8D9EEFDCDCAA11A3C5873FCF26 /* FBLPromisePrivate.h */, + 2ECFAAFC62A2DFE367B301D75F04E4EE /* FBLPromises.h */, + DF6AB525C283093E9829340DDFBCE086 /* Resources */, + 6845EC220D12C598485618C2CBF24068 /* Support Files */, + ); + name = PromisesObjC; + path = PromisesObjC; sourceTree = ""; }; AE85A89DCB62C2FEEF4BF005021B41BB /* Pods-Examples-ObjC-ExampleApp */ = { @@ -4365,13 +5176,31 @@ path = "Target Support Files/Pods-Examples-ObjC-ExampleApp"; sourceTree = ""; }; - AF2D81707165FC2EA65B8598F643FD79 /* NSData+zlib */ = { + AF295A37AC9BD033F540F7F2CD2999CE /* Support Files */ = { isa = PBXGroup; children = ( - 755B7B0C36656BD783592B3D323840D7 /* GULNSData+zlib.h */, - D65ACDC02BA4514660F679FCD9A0756F /* GULNSData+zlib.m */, + 91F1F5EFD9F5B257BA971B8237B0B65E /* GoogleAppMeasurement-xcframeworks.sh */, + 546A5C96B214B4119CD401BBE32E8356 /* GoogleAppMeasurement.debug.xcconfig */, + B87338A60396DC7C8B9E9C14E50D1517 /* GoogleAppMeasurement.release.xcconfig */, ); - name = "NSData+zlib"; + name = "Support Files"; + path = "../Target Support Files/GoogleAppMeasurement"; + sourceTree = ""; + }; + AF3591EDAF8540C3143276C4ACC5FAC7 /* Resources */ = { + isa = PBXGroup; + children = ( + 96BEBF5B770103D49A6779BB3F23B618 /* PrivacyInfo.xcprivacy */, + ); + name = Resources; + sourceTree = ""; + }; + AFA350F651E3623D475234566E3EA0F7 /* Resources */ = { + isa = PBXGroup; + children = ( + A8B5754E3D9CF0928319A37F8D4D281A /* PrivacyInfo.xcprivacy */, + ); + name = Resources; sourceTree = ""; }; B028CBCDB60A882751B903CA8487923B /* Pods-TVOSExampleApp */ = { @@ -4391,6 +5220,20 @@ path = "Target Support Files/Pods-TVOSExampleApp"; sourceTree = ""; }; + B1657F6FA04E159BDE42700B4881E88A /* IQKeyboardReturnManager */ = { + isa = PBXGroup; + children = ( + 4847673071B546336221625AD9A94683 /* IQKeyboardReturnManager.swift */, + CA61691E97C846F19ADB7C40FD2B4ADB /* IQKeyboardReturnManager+UITextFieldDelegate.swift */, + E5DBC71098660DE5B08E3F9DDD5A97F8 /* IQKeyboardReturnManager+UITextViewDelegate.swift */, + F63F06A3984BCA7D29B059A0408A9A12 /* IQTextInputViewInfoModel.swift */, + 84E7A678BE6FDED3A06303ABE8B034E6 /* Resources */, + F0462B38B1FF62E33276E34FE89082B3 /* Support Files */, + ); + name = IQKeyboardReturnManager; + path = IQKeyboardReturnManager; + sourceTree = ""; + }; B2BA0B6513ED1D81F809F2BAFFB64848 /* LocalStorage */ = { isa = PBXGroup; children = ( @@ -4401,19 +5244,38 @@ path = ConsentViewController/Classes/LocalStorage; sourceTree = ""; }; - B5C105C4D806AD2D4060A4217DF447CD /* AppDelegateSwizzler */ = { + B55E9F57510998789047B8CECFA3EDCC /* Pods */ = { isa = PBXGroup; children = ( - D25A947E6669C5DD957CE3956C908ED1 /* GULAppDelegateSwizzler.h */, - DB9B5CAC7BC1F418C4E3474C13399DE3 /* GULAppDelegateSwizzler.m */, - 0A41324431E70A8A5D156D556509325E /* GULAppDelegateSwizzler_Private.h */, - 90DD458E406FD58AA5EB15548DFB31B2 /* GULApplication.h */, - 9EF1E91AEEA40055B4C9EBB4F98DF1FF /* GULLoggerCodes.h */, - 4B8AB662BAB1AB709CD6C850132123EC /* GULSceneDelegateSwizzler.h */, - 45F8A2CA4DE0BBA8A73E91C061AB73B2 /* GULSceneDelegateSwizzler.m */, - 57F483D85BBE4233312771F58F5D4644 /* GULSceneDelegateSwizzler_Private.h */, + 5373C20618240CC7759E5C2528A4C84C /* CwlCatchException */, + A6D4BAEAF12AFE719A388999C8970A09 /* CwlCatchExceptionSupport */, + BB373674298C34B41EFE451C773B9028 /* CwlMachBadInstructionHandler */, + 06F8FDC643D67A98CE8F1A821D6747A3 /* CwlPosixPreconditionTesting */, + F16DDB092264A61A89EF183DF210FE37 /* CwlPreconditionTesting */, + 5A57AF3A082A2E95453F373286BA9E95 /* FirebaseAnalytics */, + 5D66C6743C9B54D8F6D497CB16FFC607 /* FirebaseCore */, + 66797DC6A5554AD8015245801D386EC2 /* FirebaseCoreInternal */, + 580204531A8DBDCDA937D9A87A7D1DA6 /* FirebaseInstallations */, + A53746BAE8FD81EF35886154C4190E15 /* GoogleAppMeasurement */, + 7392291FF241C3FAAF7EF065186E4ABB /* GoogleUtilities */, + 57E3C67E8BF67A4809E92DDB74E883A7 /* IQKeyboardCore */, + E809236B600B842E22E7791A58C95DC8 /* IQKeyboardManagerSwift */, + 604E1FC04342F8E68EE46D9ACC571770 /* IQKeyboardNotification */, + B1657F6FA04E159BDE42700B4881E88A /* IQKeyboardReturnManager */, + 5102D610AAA35199D6E1B4C6E16D406D /* IQKeyboardToolbar */, + 1D1CF3CC7E8FFF89945456D8E537B80B /* IQKeyboardToolbarManager */, + 0709C87B50985F726D3BE2DE95A4CA60 /* IQTextInputViewNotification */, + CB6FA79F05DDAD1F97B78B8A5706D3EB /* IQTextView */, + FC4D71F9EF8B319BF8CD7E33A8085E8A /* JSONView */, + D2F72BC93BF065CACCA270E08EED1F73 /* nanopb */, + 7BC28D7E71C6754BBEEDD4EEF73DF4CB /* Nimble */, + AC48372B1A9FEE0FE5FAB353A93B28ED /* PromisesObjC */, + 44A32A0A4B4603F67AA213DDE71B2430 /* Quick */, + FC7047C29B9BD46EF9BD02EE171A09BB /* SPMobileCore */, + 96DFD57D39A8539CB5EB6381899F689D /* SwiftLint */, + B9CF9DEA4BD544E0847DA750F876C239 /* Wormholy */, ); - name = AppDelegateSwizzler; + name = Pods; sourceTree = ""; }; B63DBD40AB978D17B1FD97634A682619 /* Pods-Tests-SPGDPRExampleAppUITests */ = { @@ -4433,24 +5295,87 @@ path = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests"; sourceTree = ""; }; - B76F0CC59728A4CA5C396419D790864C /* Reachability */ = { + B9CF9DEA4BD544E0847DA750F876C239 /* Wormholy */ = { isa = PBXGroup; children = ( - 1AD827B0E0F1216CE3BA04D9A8CE4F55 /* GULReachabilityChecker.h */, - F64A2FDC5B0349D02BF540D6DF4DF988 /* GULReachabilityChecker.m */, - 15D6C67FDC071D6EBE3063BD5AFA8121 /* GULReachabilityChecker+Internal.h */, - F98D368CF7C7803BF4E87565AC7897A9 /* GULReachabilityMessageCode.h */, + 1AF44F0431C5517FC97624B819A93234 /* ActionableTableViewCell.swift */, + 43EAE0D413F9625D75E608495B1CD93E /* BodyDetailViewController.swift */, + A36B888EBDB6ED11E7C0692FE5AAC0E7 /* Colors.swift */, + 1AEFF9CB21CFE2C6E9CABE1E8FC2049E /* Config.swift */, + 7DB9104337224F469F02FE1CFA054D8E /* CustomActivity.swift */, + D648943AD1475644A64F5CB20717192A /* CustomHTTPProtocol.swift */, + 39AB7954D02DC29058E83B73A6DD1E61 /* FileHandler.swift */, + 30FA3D98286D1A49ADE17B7E8C9C5E77 /* InputStream+Utils.swift */, + 236DE9F22C6527027547CC5C4DD8596D /* NSURLSessionConfiguration+Wormholy.h */, + 426F5B92361AD6E50C2720924378BBBD /* NSURLSessionConfiguration+Wormholy.m */, + 611A4150162221DA6ED1C214A3384D0B /* Postman.swift */, + 1B2A085592270AF5DD5E13A64ED858F7 /* RequestCell.swift */, + 8900858EF8CA1647169B147D2791DF67 /* RequestDetailViewController.swift */, + 1EB98EC760A9900E08B973CADE03FE11 /* RequestModel.swift */, + CA8B0499887AFBE40464AD6F5DDA6C5F /* RequestModelBeautifier.swift */, + 27037CC61C19580FDD56C28682478E85 /* RequestResponseExportOption.swift */, + EE38E7D54FBC5FA87D165B5A4FA59EC9 /* RequestsViewController.swift */, + C5D7A3F73EF1C63F9610263E2A3C4EBA /* RequestTitleSectionView.swift */, + E6B6055780BBF42CF95D5E9937FA4B31 /* Section.swift */, + 8FA4E06192FBBD2D464EEB4AB46FCC50 /* ShareUtils.swift */, + C3F0A86AF2E75FC5D43E56354F932455 /* Storage.swift */, + 63A5CD371E3230565E30896165B49380 /* TextTableViewCell.swift */, + A153645F2DDB19458FE1A4346444F6FE /* WHBaseViewController.swift */, + 3DC4E9EF6EB31ED585E5F26358A9AB74 /* WHBundle.swift */, + B789CF2E82183FA849B2EE1AE3EEB80A /* WHCollectionView.swift */, + F536C8567BCC74900C15620A5D873D25 /* WHDate.swift */, + C5E73C9325537856D0BFC3E891FCC1C0 /* WHLabel.swift */, + 9DC76871304CCDFD3A1D21BF050D3177 /* WHNavigationController.swift */, + 4E02A55905C0BF2681E14D8456919ADA /* WHString.swift */, + 7A031FC6E352E7051CA493D7D23896D3 /* WHTableView.swift */, + 2EBA88DFA4CE4EECE2EB0957F3BC9427 /* WHTextView.swift */, + 4751DD6B17333E933F4633D6E698BA65 /* WHView.swift */, + 6BEE253B425B0AFC6BE08AEB7A374D86 /* Wormholy.h */, + ED1FC96C6EDA99EF67C2DA3C4A33582A /* Wormholy.swift */, + A2413C25A1E9B1773F4BB7C4A9918225 /* WormholyConstructor.m */, + B050097AE422BC05C6098DCF057DB272 /* WormholyMethodSwizzling.h */, + 1A1D82294C81ACF02E022ECA02DFE5FF /* WormholyMethodSwizzling.m */, + 269BF36CB13C34482BD73539FEB074D7 /* Resources */, + E7D4A8FBE19E8672A3E41AEBF6391AF5 /* Support Files */, ); - name = Reachability; + name = Wormholy; + path = Wormholy; + sourceTree = ""; + }; + BB373674298C34B41EFE451C773B9028 /* CwlMachBadInstructionHandler */ = { + isa = PBXGroup; + children = ( + BB96A1C01235D2DB104ABB1DC2A63E21 /* CwlMachBadInstructionHandler.h */, + 79613E4C842C69EAE38E095B7F90BD86 /* CwlMachBadInstructionHandler.m */, + 018C7D6DA1414FA7FD58A494AA74FAF0 /* mach_excServer.c */, + 0C82904C58AECE94225849CD3382BF5E /* mach_excServer.h */, + 3A727D29E409E0E3470D214CF4621B78 /* Support Files */, + ); + name = CwlMachBadInstructionHandler; + path = CwlMachBadInstructionHandler; sourceTree = ""; }; - BBD6747C24346965ACFF3488F2EE0690 /* UserDefaults */ = { + BC5276800188993D24CF15610537ABDD /* Support Files */ = { isa = PBXGroup; children = ( - 356C7DA26091C0E7AA09180D9EBBEF19 /* GULUserDefaults.h */, - 68909044419BDFB4B2869748A4C422AC /* GULUserDefaults.m */, + 68FEF837542AF3581D997EC32A409228 /* GoogleUtilities.modulemap */, + 369624BF24186412CC06088709AEE3CF /* GoogleUtilities-dummy.m */, + 4204D4D8DE29AC6CFE2054942CA4F4F7 /* GoogleUtilities-Info.plist */, + E8B44AA61F315BDAD17181D9386F5FB4 /* GoogleUtilities-umbrella.h */, + DC2639B1E829A5F90E03607464AF4414 /* GoogleUtilities.debug.xcconfig */, + 119BF7600B4B48D0FAF2C547AC752308 /* GoogleUtilities.release.xcconfig */, + 4D134D185F0A1280D1156DE4DE30993C /* ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist */, ); - name = UserDefaults; + name = "Support Files"; + path = "../Target Support Files/GoogleUtilities"; + sourceTree = ""; + }; + BE799588116A2146D06229578EBA6F13 /* Frameworks */ = { + isa = PBXGroup; + children = ( + A4610644C7B0109D328649CBEC1527DC /* SPMobileCore.xcframework */, + ); + name = Frameworks; sourceTree = ""; }; BF4BB0F324DD2223F68D21A3EDB34248 /* Pods-Tests-ObjC-ExampleAppUITests */ = { @@ -4470,38 +5395,38 @@ path = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests"; sourceTree = ""; }; - BF5DA2FC4632C924E1013EFBFD3B6B7B /* IQTextInputViewNotification */ = { + C2D31F9B8526D321FFA688C37BFAEE5D /* Support Files */ = { isa = PBXGroup; children = ( - 3F4D889F499A01F669282D6F42B9ED88 /* IQTextInputViewInfo.swift */, - A95932A805643F9F77750936A4A03862 /* IQTextInputViewNotification.swift */, - FD97B8A027AB0DE251C454034A0756FA /* Resources */, - F955047AF1237023DCEFD6CD37744284 /* Support Files */, + 9AB91992ADD70EED081100015CB5338E /* SwiftLint.debug.xcconfig */, + 285FA291E715D679D7FE0BA7CA91DB12 /* SwiftLint.release.xcconfig */, ); - name = IQTextInputViewNotification; - path = IQTextInputViewNotification; + name = "Support Files"; + path = "../Target Support Files/SwiftLint"; sourceTree = ""; }; - C336DFAD951D446F585FA63C9D9D0606 /* AdIdSupport */ = { + C314C7F33AC551D9A446104E17B8810B /* Support Files */ = { isa = PBXGroup; children = ( - E3670B2C8B760BDF921D796188C562E2 /* Frameworks */, + C46CFB8EF3CEB56EDF6712289A27A9C7 /* IQTextView.modulemap */, + 9F96E4D2386F493BE82DED195E2CF689 /* IQTextView-dummy.m */, + EADB2648A8FBA0C2EDBA5849395F04A1 /* IQTextView-Info.plist */, + 2B6C95C84D480808889C697012B352A4 /* IQTextView-prefix.pch */, + 7442995C363F851C85FE64B3A4B00C1B /* IQTextView-umbrella.h */, + C206E48C5FD72701093625C9FEDD1C14 /* IQTextView.debug.xcconfig */, + 1502E63A37330EBB5C1A73A5190D09F5 /* IQTextView.release.xcconfig */, + 739151E711190C1BE5B2133E10E9289C /* ResourceBundle-IQTextView-IQTextView-Info.plist */, ); - name = AdIdSupport; + name = "Support Files"; + path = "../Target Support Files/IQTextView"; sourceTree = ""; }; - C48263063929E885FA868D47309DDBC0 /* Support Files */ = { + C40C0E558BD2429F02635BF238D08F3B /* AdIdSupport */ = { isa = PBXGroup; children = ( - 110F08638AACB32953FB3395518F13EF /* SPMobileCore-iOS-xcframeworks.sh */, - EFF908F59C1FE27798A96D99142EA4F1 /* SPMobileCore-iOS.debug.xcconfig */, - 7ED00E3C96B3FAD3DC6932CC3099A5F8 /* SPMobileCore-iOS.release.xcconfig */, - F4B90CB65E8E18EDBB82A5DFF8B7C18B /* SPMobileCore-tvOS-xcframeworks.sh */, - 8782270ED9BF84A059FC3D44E70B6806 /* SPMobileCore-tvOS.debug.xcconfig */, - 979094166C07B4928759772A0019F6B8 /* SPMobileCore-tvOS.release.xcconfig */, + 409CB7576D3AB13E8219CC44C76B491B /* Frameworks */, ); - name = "Support Files"; - path = "../Target Support Files/SPMobileCore-iOS"; + name = AdIdSupport; sourceTree = ""; }; C5475206DB01997D3420C2A46A0228B1 /* NativePrivacyManager */ = { @@ -4516,19 +5441,22 @@ path = NativePrivacyManager; sourceTree = ""; }; - C73234531D6A8453FC632A12EE72BD53 /* Support Files */ = { + C63018EC5D7A3DE886A6A3F46A32507A /* Network */ = { isa = PBXGroup; children = ( - C1A7D9F99FA34F4FBE45C210D3765C55 /* PromisesObjC.modulemap */, - EBEB0A041DA976F6476AA0359B5185C7 /* PromisesObjC-dummy.m */, - 2A0DCA107BBCC4B6214227F9D69B60B5 /* PromisesObjC-Info.plist */, - 09D2345FF6CA8B1BC3F630B9E2E5F51E /* PromisesObjC-umbrella.h */, - F5DDB6CE9B4FD98DB1C0D219C54244D2 /* PromisesObjC.debug.xcconfig */, - 6353A96B06297E1695D5C0F25332E082 /* PromisesObjC.release.xcconfig */, - D55FFC30E365D28FDCD0832530ACB9AD /* ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist */, + A9E567C3801F77C6845784BC161E6AF0 /* GULMutableDictionary.h */, + CF5214681ADBB06F82221BD6E6C63ECF /* GULMutableDictionary.m */, + BBBB1C27BF4880E7D44DA1EA3A17A658 /* GULNetwork.h */, + D82C3C1195B47C222E0B307D98FBBBEA /* GULNetwork.m */, + 0E0FF0EB4ABF09B6C32D854A470072E8 /* GULNetworkConstants.h */, + 06AFB2FB1357339F642D525DD139645C /* GULNetworkConstants.m */, + AC6C453CD050FB5817AA3897D415B52C /* GULNetworkInternal.h */, + 3D861833DDD7FD6648C4077FAB6A45AD /* GULNetworkLoggerProtocol.h */, + 6F964FBA416ED6D27F11DAAA6C0D730B /* GULNetworkMessageCode.h */, + B51861A159CB213A49F54058AD763015 /* GULNetworkURLSession.h */, + 935EEF5E16FC6B7B0B0977DB05AE930A /* GULNetworkURLSession.m */, ); - name = "Support Files"; - path = "../Target Support Files/PromisesObjC"; + name = Network; sourceTree = ""; }; C98BB556806D9CD1B0D1DA8AFC6E1C9F /* ConsentViewController */ = { @@ -4575,83 +5503,39 @@ path = ../..; sourceTree = ""; }; - CA12F7D189BE520211D1486CEE7113D4 /* AdIdSupport */ = { + C9E0AF00EFE4DF089E6554FD21B13FE1 /* WithoutAdIdSupport */ = { isa = PBXGroup; children = ( - 532827A268EE842BAF63BA7884C41963 /* Frameworks */, - ); - name = AdIdSupport; - sourceTree = ""; - }; - CA5973803D97A1FAD67FEE7A4C6725E3 /* Wormholy */ = { - isa = PBXGroup; - children = ( - 63F91F45369096A820F02644183B5D6B /* ActionableTableViewCell.swift */, - B8ACBDD2D08FBECE60B571501F156A9C /* BodyDetailViewController.swift */, - E5D142EA412F121AF15706C0EA03E524 /* Colors.swift */, - B4B16CD22C1AD2CCE2DC7CB454AF688C /* Config.swift */, - B2E1278DEF469D3EA83B6DDCC6458F39 /* CustomActivity.swift */, - A562257A7EE6A3602A66E6582DD95EAB /* CustomHTTPProtocol.swift */, - 81BFFA641B95BE38C19318F8E183047F /* FileHandler.swift */, - 7E2C304FDF4D67400566CBBA2B787D8F /* InputStream+Utils.swift */, - 3A665D3B04CA1B83D89AB874F4041163 /* NSURLSessionConfiguration+Wormholy.h */, - E3C8475127BA34A26F98446F349AB89C /* NSURLSessionConfiguration+Wormholy.m */, - EDCCE99C011988A7788B57327E840618 /* Postman.swift */, - 7DD5BF03A856CEE8C17F065C890D40DB /* RequestCell.swift */, - AEF183E42EC848C5FD513A7BEC3AB0E7 /* RequestDetailViewController.swift */, - 669C36C9D006E74794BD40EFDCA193C2 /* RequestModel.swift */, - F6A2A3D44995EA5C38D0F4AF00A81DBB /* RequestModelBeautifier.swift */, - 4FBC8B667DE1EB3009EBDEB193977149 /* RequestResponseExportOption.swift */, - DE0A807B5EB10912A9D61E4B221D2FFC /* RequestsViewController.swift */, - E3B980FCE4E284EFB5392F27CE383026 /* RequestTitleSectionView.swift */, - D374C38A488A93BD2F7C740BC5E16715 /* Section.swift */, - F545BBA9094C526C1501712CDDA78D9A /* ShareUtils.swift */, - C8314830A14A113FF5CF64B7B0549946 /* Storage.swift */, - 3A63A86F6FDAF21DD55F64ABC11A3765 /* TextTableViewCell.swift */, - 36B938F832302BB306D0CD8E2194C1B0 /* WHBaseViewController.swift */, - 752EF78D58BDF725929F2BA05E41072A /* WHBundle.swift */, - 70DB089D17A3FB29EF97D79E2DD93541 /* WHCollectionView.swift */, - 7A818A7F3E976711317763E3478D2E8F /* WHDate.swift */, - B4DE8FA000CDDE465527A551708B2742 /* WHLabel.swift */, - 7E74712D68110A81C9A9DD9E3724485E /* WHNavigationController.swift */, - D929F351C4ABDF90B788BA719A5E73A8 /* WHString.swift */, - 119C22191F2A18E911EB69EABC7A05A4 /* WHTableView.swift */, - AF5A4886C0DA3C0905EC20EC9E16EEEC /* WHTextView.swift */, - 8706834DA071DFC86595867D0981238E /* WHView.swift */, - 249FFAAA24EC0831F3C320D83DB031AC /* Wormholy.h */, - F5C5D437971F6D991D20A6E5F5D3B8A0 /* Wormholy.swift */, - E9A1E6E9364855F70D75F15A754E6259 /* WormholyConstructor.m */, - C869FF6A4E0AFD704A0FA11F50448CEF /* WormholyMethodSwizzling.h */, - 6911B7591ECB29F3A6A88E53A135920C /* WormholyMethodSwizzling.m */, - 2D30901F804568DF6DB63C85BAF26280 /* Resources */, - 6396B7580EE84850B2056A7D5142EC06 /* Support Files */, + 22DBA654D4DDD75434776617D876E9FB /* Frameworks */, ); - name = Wormholy; - path = Wormholy; + name = WithoutAdIdSupport; sourceTree = ""; }; - CC2449F723D6266D79D3DB7D53AA497F /* Support Files */ = { + CB6FA79F05DDAD1F97B78B8A5706D3EB /* IQTextView */ = { isa = PBXGroup; children = ( - CD49D5CCB9DFA5474E6C9B8A872F61E7 /* FirebaseCoreInternal.modulemap */, - 02D8F619D99F378ED3916CF8E13AD109 /* FirebaseCoreInternal-dummy.m */, - A2CFFAAA0D1E6D27096A5A29E166619B /* FirebaseCoreInternal-Info.plist */, - 7960E0467DEC0FCFC299333FD6EFA93D /* FirebaseCoreInternal-prefix.pch */, - AA23DF396AC9400B3F309177A7B9A5F1 /* FirebaseCoreInternal-umbrella.h */, - 0D94C00CD889D62A4E627E23098A7E11 /* FirebaseCoreInternal.debug.xcconfig */, - D7E1722F5F469B205A5C3074B48B377E /* FirebaseCoreInternal.release.xcconfig */, - F6F31AFA538CB2FB65E615BE7F520EDE /* ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist */, + 7161B5DCDFE49231562B55DAA6066E11 /* IQTextView.swift */, + 2B2C452C547F5C72A91AD191072AB706 /* IQTextView+Placeholderable.swift */, + 8F326894FBE38FCFA26890F77F11C789 /* Resources */, + C314C7F33AC551D9A446104E17B8810B /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/FirebaseCoreInternal"; + name = IQTextView; + path = IQTextView; sourceTree = ""; }; - CEB3B7B0835471A87A22C5A11542CF85 /* Resources */ = { + CF1140903D9BC2409B3D009493A73743 /* Support Files */ = { isa = PBXGroup; children = ( - 880BC78F4E9E665E279300D955AB03E0 /* PrivacyInfo.xcprivacy */, + AD8AA25743B7DB5360A40AC1336ABBB0 /* CwlPreconditionTesting.modulemap */, + E3863FD1C556D54C3E982C50EA82E084 /* CwlPreconditionTesting-dummy.m */, + 78C9F0EE3838CBA627CC3583703B9766 /* CwlPreconditionTesting-Info.plist */, + D5A667FE13700AECFF9987CEE895483B /* CwlPreconditionTesting-prefix.pch */, + A361202B2E3C64A15E73F68BEB6EC838 /* CwlPreconditionTesting-umbrella.h */, + 75C4888BF100C27C1D9364F923E8C519 /* CwlPreconditionTesting.debug.xcconfig */, + 32F6B838E42284ACF0782FC442FFA5D9 /* CwlPreconditionTesting.release.xcconfig */, ); - name = Resources; + name = "Support Files"; + path = "../Target Support Files/CwlPreconditionTesting"; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { @@ -4660,40 +5544,39 @@ 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 4FB72CF436D00C693AFB64B05CD71461 /* Development Pods */, 8910DE18F4068EE7F2F8E36E5101A369 /* Frameworks */, - 4A89C6913E81DAB0AC0E385204C6EFDF /* Pods */, - E50936C9C11B7821C85B379A9CD05889 /* Products */, + B55E9F57510998789047B8CECFA3EDCC /* Pods */, + 0A3DD4BD794503E0A0CB1988A01BD03C /* Products */, DF91BF01731AAEF909E4C1B98FFE48F5 /* Targets Support Files */, ); sourceTree = ""; }; - D1F3667FF8A13808229E522BF19AC447 /* Support Files */ = { + CFFDD80D32B8224492FCD6A63AC45193 /* Logger */ = { isa = PBXGroup; children = ( - A33D7A3F8A6C2631D0608B6829E99E2D /* Quick-iOS.modulemap */, - 824D785E2FCB028E721F59A8235D6248 /* Quick-iOS-dummy.m */, - B749A0F534AA28020498E4C00093F5C1 /* Quick-iOS-Info.plist */, - 7BB570BDC710C985A4C05D43737FAD91 /* Quick-iOS-prefix.pch */, - 2FCAFB5CE831103247AF530B4A66E903 /* Quick-iOS-umbrella.h */, - 34476D62FD2522230ECF89058BD6AF67 /* Quick-iOS.debug.xcconfig */, - C97674DE28752F26BE12E99A268EA4F2 /* Quick-iOS.release.xcconfig */, - A6118A229CB131B6546F8E2C35A8B04E /* Quick-tvOS.modulemap */, - 5EF994FE247663F4A82F3ED97A8181E6 /* Quick-tvOS-dummy.m */, - B6C1EE9EE98C6F1DFF63C1549FE110F4 /* Quick-tvOS-Info.plist */, - F99AF73E7C41B8613AFACAABF9AECCB6 /* Quick-tvOS-prefix.pch */, - 815EB9734D8C27D82374EA956EDBDFE3 /* Quick-tvOS-umbrella.h */, - 2CC2F9E2668781BED5E119E88E4351CE /* Quick-tvOS.debug.xcconfig */, - 966EA30EE46F7616473774CAC3C25E7B /* Quick-tvOS.release.xcconfig */, + 6CDEEE3D45A46E2F48CEEAC14CC08D22 /* GULLogger.h */, + 84B95C43D7B6F56248AD75135BE05088 /* GULLogger.m */, + 6AF12426E4EBBD9E1FDCCCB1D791C2B2 /* GULLoggerLevel.h */, ); - name = "Support Files"; - path = "../Target Support Files/Quick-iOS"; + name = Logger; sourceTree = ""; }; - D2C0D3017CC25DDDF1C15C0B37AB7FAF /* Resources */ = { + D2F72BC93BF065CACCA270E08EED1F73 /* nanopb */ = { isa = PBXGroup; children = ( - 355A7C4B00B0F65ABA6D838880650D5A /* PrivacyInfo.xcprivacy */, + CEB05A5C3231DDF5CB5C7608FDAAED1A /* pb.h */, + A46E3B649881FB5DBD58A006029D4A9C /* pb_common.c */, + CE83326423A35E77F8489B85BACF722B /* pb_common.h */, + F6B816906F8A377175AF29FD385267AF /* pb_decode.c */, + 740097A017371498ADAAA1D0AB5B7F1C /* pb_decode.h */, + D1F15C0CB1373E0CDEC3585B63805043 /* pb_encode.c */, + A4CC809ED8B5AE51F38848C0F72698E0 /* pb_encode.h */, + 6B732B375ED57CEFA5B2F9E083724A68 /* decode */, + 6AF00912D0A719EB985650DBD635E4D2 /* encode */, + DB57A72A55E9D044ED5F8D3EBCC351DA /* Resources */, + 05E8229C67AF1627CAC71910A66FC3B0 /* Support Files */, ); - name = Resources; + name = nanopb; + path = nanopb; sourceTree = ""; }; D3279952C8CFF67294EB25A0742A522D /* SourcePointClient */ = { @@ -4716,151 +5599,50 @@ path = ConsentViewController/Classes/SourcePointClient; sourceTree = ""; }; - D38A8F4900A311E433E0736A4EE0693D /* Support Files */ = { - isa = PBXGroup; - children = ( - 01C8B197422021FDE6E7B61B0358FBBC /* nanopb.modulemap */, - 0BDEAD00213E25F42A5BF0875D78AB20 /* nanopb-dummy.m */, - EA4BF567D923787989FE060507848120 /* nanopb-Info.plist */, - 6C4E2DD9FDFAC41D1A54798902B278E3 /* nanopb-prefix.pch */, - 186D36C1418B9DD6EA37D57A548EF049 /* nanopb-umbrella.h */, - C566F234AC40385CD0C09D53D3AC7480 /* nanopb.debug.xcconfig */, - D89E5C002D5CCC712E8E9B86A46E4EA8 /* nanopb.release.xcconfig */, - FE51EF9BE79DDFCDE77B544F87114596 /* ResourceBundle-nanopb_Privacy-nanopb-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/nanopb"; - sourceTree = ""; - }; - D3EF2C078164926ED7B3AC3896C6AFF3 /* Support Files */ = { - isa = PBXGroup; - children = ( - CE708006F79C98E799811B91F9FA402C /* IQKeyboardReturnManager.modulemap */, - 4FCC51096042EC71BAB17FF0EBF73527 /* IQKeyboardReturnManager-dummy.m */, - C8D8B82C01EBFA91F935A177F4D9C1D7 /* IQKeyboardReturnManager-Info.plist */, - 7D9D4FA8841747C3BBEB9C372D353A2F /* IQKeyboardReturnManager-prefix.pch */, - 3198E138D98A322C2A1BDA3E2FC9CC49 /* IQKeyboardReturnManager-umbrella.h */, - 141322BAF43813C755A9837A10B8B295 /* IQKeyboardReturnManager.debug.xcconfig */, - 2BB705775345ED936727B2B3FEB91464 /* IQKeyboardReturnManager.release.xcconfig */, - FA8099143512E09070A602FE420D2834 /* ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardReturnManager"; - sourceTree = ""; - }; - D4D3D9E278B05D2918E1AE69AC3CA0EE /* Network */ = { + D946A136E9AFD3B95B56D33A427B0141 /* Resign */ = { isa = PBXGroup; children = ( - A90B7853B42A31D21CE9F7379DC5A251 /* GULMutableDictionary.h */, - 7941E29EA7E328B36CAFF35CE9737F57 /* GULMutableDictionary.m */, - 15E0AC071C5650C90B87CA9037EB65A4 /* GULNetwork.h */, - D3876108CB5C02CDEF3FBBCF054D49DE /* GULNetwork.m */, - DAAEE94E181881930B3A616D1E8C8189 /* GULNetworkConstants.h */, - 7FB250AAAF8B838B4EF4268BC3F8F27D /* GULNetworkConstants.m */, - 32D9817633E5D7D337458349AEFCAC9B /* GULNetworkInternal.h */, - 9B6595610EBED427CA9A17FD63904EF6 /* GULNetworkLoggerProtocol.h */, - D0EE0EF7B41939A08E077B538D1C574F /* GULNetworkMessageCode.h */, - FA86756693B9DB9926E8FCA51F4C36D9 /* GULNetworkURLSession.h */, - 5204E4DD30CEF75C3A2F42A5154182C7 /* GULNetworkURLSession.m */, + 70098D87239066D9714D0F0671BF1C98 /* IQKeyboardManager+Resign.swift */, + 4B2ED71044E7761E480E636165D8EFC6 /* IQKeyboardManager+Resign_Deprecated.swift */, + E79685EF80A61FB64E0432F6162A1238 /* IQKeyboardResignHandler.swift */, + CA715F2887DD043810B1AFE30E508AC1 /* IQKeyboardResignHandler+Internal.swift */, + 135682E6BB9D8F99E34FEC9D5D0E744A /* UIView+Resign.swift */, + 684D5E952D1884720316846DA0045368 /* UIView+ResignObjc.swift */, ); - name = Network; + name = Resign; sourceTree = ""; }; - D55427E63EF9DEE6E92A645C583EC659 /* Resources */ = { + DB57A72A55E9D044ED5F8D3EBCC351DA /* Resources */ = { isa = PBXGroup; children = ( - D18DC336E57A1818C8206883DADAEE9D /* PrivacyInfo.xcprivacy */, + E41CA8AA74470D540AF0516CAAB225AD /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - D577D6EC5DF4D5603E7CB672AC3450F8 /* IQKeyboardReturnManager */ = { - isa = PBXGroup; - children = ( - 877511B4B35606AC2C50B9852F202BB3 /* IQKeyboardReturnManager.swift */, - 7CDDBDDF4BA670964E102E1B5D01DFAC /* IQKeyboardReturnManager+UITextFieldDelegate.swift */, - D746E7C5CDD1B63CAB246CFC106852CD /* IQKeyboardReturnManager+UITextViewDelegate.swift */, - 88DA477CC472B6C4297FD3E3512B8C55 /* IQTextInputViewInfoModel.swift */, - 186B6577216BF195D54C838DDE9545C4 /* Resources */, - D3EF2C078164926ED7B3AC3896C6AFF3 /* Support Files */, - ); - name = IQKeyboardReturnManager; - path = IQKeyboardReturnManager; - sourceTree = ""; - }; - DA97F4161168BA71B4183A9ED91E7416 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3326F533A2B0D82FB1BDD473717DBB45 /* IQKeyboardNotification.modulemap */, - BFD24D10A0A011170A605A0CE77C505B /* IQKeyboardNotification-dummy.m */, - 53C5B10DE1D4174FC72E52E901116F54 /* IQKeyboardNotification-Info.plist */, - CB6DE7F50A35034ACED6E318472E9B95 /* IQKeyboardNotification-prefix.pch */, - C2F3A36BA266CB175E33BD2B29F2414B /* IQKeyboardNotification-umbrella.h */, - 43495BDE101EC35941087F1BF79C5FE1 /* IQKeyboardNotification.debug.xcconfig */, - D28280D3333BCEB4A4F9664245E627BE /* IQKeyboardNotification.release.xcconfig */, - B7F57581209C561D05A7527AD7A21A8C /* ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardNotification"; - sourceTree = ""; - }; - DB3D883807B7B88DC57E05E37530BBEE /* SwiftLint */ = { - isa = PBXGroup; - children = ( - 735603448AB43588FED04B12ACD5DD54 /* Support Files */, - ); - name = SwiftLint; - path = SwiftLint; - sourceTree = ""; - }; - DC0A1C1F63F501CE3A1136EC18DAC18C /* Appearance */ = { - isa = PBXGroup; - children = ( - DD61C6CDAD99EE348E865C3B680976B1 /* IQKeyboardAppearanceConfiguration.swift */, - 017E4B6465E0C7525381577057A7B2C1 /* IQKeyboardAppearanceManager.swift */, - 9D0092EBA17005E4C5E8DFB84F9C8151 /* IQKeyboardAppearanceManager+Internal.swift */, - 3F002CCEFD50B47751B8C051FF7E20A1 /* IQKeyboardManager+Appearance.swift */, - 44F950EA234EFAFBC506B3707D58AA60 /* IQKeyboardManager+Appearance_Deprecated.swift */, - ); - name = Appearance; - sourceTree = ""; - }; - DE9641042C2959F77BA7AD6578AEE56F /* IQKeyboardToolbarManager */ = { + DCC0B2F8F8097FEA3466BFC790B59E32 /* Environment */ = { isa = PBXGroup; children = ( - C6921E3C54DE4DC87A71456A218F2DB3 /* Array+Sort.swift */, - 5F050048877FAA2DB8B643B9D31809C8 /* IQDeepResponderContainerView.swift */, - EAC367538AF3A91F50F8236BC0EE96FD /* IQKeyboardToolbarConfiguration.swift */, - 2FF00E06150B4FB87D874AE4FBD8C1DA /* IQKeyboardToolbarConstants.swift */, - EE443A8F6053E38AD6572F7DEAC8ADA9 /* IQKeyboardToolbarManager.swift */, - 0B8194CC6DC632FC65E25C080D541DE0 /* IQKeyboardToolbarManager+Action.swift */, - 6438E403454D93A16C68CE2EEAAB43C8 /* IQKeyboardToolbarManager+Debug.swift */, - CA6FA77DAB27AAA6EB48FC6BC66D0F0D /* IQKeyboardToolbarManager+Deprecated.swift */, - D8797AB7EE07B93744B4C6EA2CA2DE2F /* IQKeyboardToolbarManager+Internal.swift */, - 9FBB5CE945BF34010FC34066F5B55095 /* IQKeyboardToolbarManager+Toolbar.swift */, - 4A243B552A2DA6F9430F4F778E742D48 /* UIView+Responders.swift */, - E310792516BBF6E37FF1D14CA2366DD1 /* UIView+RespondersObjc.swift */, - D2C0D3017CC25DDDF1C15C0B37AB7FAF /* Resources */, - 28605C51378297BC76E1FD77F4138809 /* Support Files */, + C407A54E017467BD3403FC613AFB7F1B /* GULAppEnvironmentUtil.h */, + 4C8B3DAC5F77F196D806BEFA672A46F3 /* GULAppEnvironmentUtil.m */, + 76CDC09AC51552BBFCCE41349F1AB612 /* GULKeychainStorage.h */, + 7AD5CBFF2CC535A21DC6948EDCDBE89C /* GULKeychainStorage.m */, + 480A6F751D5CC62587A6E70F578A7252 /* GULKeychainUtils.h */, + 250CCF39F870AE6F993E71E9CAC93BDD /* GULKeychainUtils.m */, + 07F7FDB058328900287FB0E998FBFE99 /* GULNetworkInfo.h */, + C0CA07D267FBD8C4220DECC3B0848D17 /* GULNetworkInfo.m */, + 05BA369063AB9F88199C725055C5F112 /* IsAppEncrypted.h */, + 98F6695DEAC1D13CB0C1ADEFC4FBCE58 /* IsAppEncrypted.m */, ); - name = IQKeyboardToolbarManager; - path = IQKeyboardToolbarManager; + name = Environment; sourceTree = ""; }; - DECCBD078439BFFA6B5A6AF5AA30CE16 /* Support Files */ = { + DF6AB525C283093E9829340DDFBCE086 /* Resources */ = { isa = PBXGroup; children = ( - 85792222AF4C55C9A1B6FD66910B247F /* IQTextView.modulemap */, - CFDDCD05F125493153660F528D3F0D50 /* IQTextView-dummy.m */, - 3F62DFC81C7CDCD81738806E305F2141 /* IQTextView-Info.plist */, - B6AC2312918DA678C7FB67249A5CEFFF /* IQTextView-prefix.pch */, - F8B951FF6E5527CC53B9BFE276741666 /* IQTextView-umbrella.h */, - 5B05A0A41C358E0B8CC0104BD173FC5D /* IQTextView.debug.xcconfig */, - 967CAFFF493C6FEC1965C15C0DB132C5 /* IQTextView.release.xcconfig */, - 3D67110306C259553B2030463A722129 /* ResourceBundle-IQTextView-IQTextView-Info.plist */, + FCE122F25E5F686A943505B92705B9FE /* PrivacyInfo.xcprivacy */, ); - name = "Support Files"; - path = "../Target Support Files/IQTextView"; + name = Resources; sourceTree = ""; }; DF91BF01731AAEF909E4C1B98FFE48F5 /* Targets Support Files */ = { @@ -4886,100 +5668,44 @@ name = "Targets Support Files"; sourceTree = ""; }; - E0FB5FE3CF3D72A2EAC9D357F28A2D17 /* Privacy */ = { + E701B0A8EC8F7B434AE8AF25FDF19EDF /* Pod */ = { isa = PBXGroup; children = ( - 727531CD0B2FD738EAFAF85958BE9AFA /* Resources */, + 535E06755C3CD0BAF29EC6CCC440D468 /* ConsentViewController.podspec */, + 522F23E47E472ADB4AE7F2B949926F49 /* LICENSE */, + 77A72569939F05DD3E89F62FC4D9A0B5 /* README.md */, ); - name = Privacy; + name = Pod; sourceTree = ""; }; - E3670B2C8B760BDF921D796188C562E2 /* Frameworks */ = { + E7D4A8FBE19E8672A3E41AEBF6391AF5 /* Support Files */ = { isa = PBXGroup; children = ( - A1FA8633E90C10244140E2579810C6AA /* FirebaseAnalytics.xcframework */, + 50141C4DB9D565A094540C8C0AB11EFA /* ResourceBundle-Wormholy-Wormholy-Info.plist */, + CEDE01BAA77F62D91DCA1484E7720CB7 /* Wormholy.modulemap */, + CFEF89211FE63A0A4B6ADD195A259172 /* Wormholy-dummy.m */, + 1F17A815B4C39DFD2BE71E8C85B46A1C /* Wormholy-Info.plist */, + A52ECA6E35D137500EB0D742A5100B58 /* Wormholy-prefix.pch */, + E75AE00E671306E9A58B2E5A5815D48F /* Wormholy-umbrella.h */, + 090867511CD2BA024093F61173297740 /* Wormholy.debug.xcconfig */, + C71513E560B1CB1D8E9A60A2D72233D9 /* Wormholy.release.xcconfig */, ); - name = Frameworks; + name = "Support Files"; + path = "../Target Support Files/Wormholy"; sourceTree = ""; }; - E50936C9C11B7821C85B379A9CD05889 /* Products */ = { + E809236B600B842E22E7791A58C95DC8 /* IQKeyboardManagerSwift */ = { isa = PBXGroup; children = ( - 380358C9A223FE55A10AC25127FF1410 /* ConsentViewController-iOS */, - 4BEAC88AF84CC484F55B8A6C048444D9 /* ConsentViewController-iOS-ConsentViewController */, - 5DC2E71595175144336387BD6D2DE6BD /* ConsentViewController-tvOS */, - 20A4710BBD2EE3CFC496E3AF134BD4FD /* ConsentViewController-tvOS-ConsentViewController */, - E2B63D462DB7F827C4B11FD51E4F8E2D /* FirebaseCore */, - 8BB937B1C0DFFCF92F41861C2BC54DDA /* FirebaseCore-FirebaseCore_Privacy */, - 148D0F9E8C7373FEAF40D800FC5F1BAA /* FirebaseCoreInternal */, - 4DB03FD262B678178A44272143846563 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */, - 13C8C8B254851998F9289F71229B28A2 /* FirebaseInstallations */, - 47C581450CDB4A6111CB97EEE0711A8C /* FirebaseInstallations-FirebaseInstallations_Privacy */, - B43874C6CBB50E7134FBEC24BABFE14F /* GoogleUtilities */, - 44E291D18340EAC3F761346198515323 /* GoogleUtilities-GoogleUtilities_Privacy */, - FC7F0CF2EA5DF59C59D9995890DA5C47 /* IQKeyboardCore */, - 6E897F35E5E27028AC58B14B552FBC8D /* IQKeyboardCore-IQKeyboardCore */, - A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */, - 8D8069D3964814114ACEC3084C010B59 /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */, - FEF9AC89E9C4BD37AC0AB78B535D1CFC /* IQKeyboardNotification */, - 120BD4C670EF00F4D5A40AA4B863A7AE /* IQKeyboardNotification-IQKeyboardNotification */, - 15848DEC7727A809830E7F6FC1B6CE0F /* IQKeyboardReturnManager */, - 110BD425B6CAD6801539E2C6AB6E0662 /* IQKeyboardReturnManager-IQKeyboardReturnManager */, - B4B1A58096F15199A14069C5D6AA1C99 /* IQKeyboardToolbar */, - A16FD016E18EACCF6B23F219F2E236FE /* IQKeyboardToolbar-IQKeyboardToolbar */, - FA727BF5D9541C98C22C9ECC911576E2 /* IQKeyboardToolbarManager */, - 80A40EDA3AF0499BDBCFF09467BB49AD /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */, - 06E5B413FEA5A600D76636DA132F8FB9 /* IQTextInputViewNotification */, - F956E149F5B195BB7833F97FC6211AE8 /* IQTextInputViewNotification-IQTextInputViewNotification */, - 0DFD4541FF9DAA31A2FC2A7F6D03ED22 /* IQTextView */, - 847044E56CBBCE1235A6F3CEF3F9F607 /* IQTextView-IQTextView */, - 437B791FEDC5C4B595D6D29500E11197 /* JSONView */, - 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */, - 3227F3FC45681D7CEE5D1355A532398A /* nanopb-nanopb_Privacy */, - C2FCA34B3522D944BAA3DC6A57D99686 /* Nimble-iOS */, - 0D68F2DD4656E2DC0F28ED037671461F /* Nimble-tvOS */, - 8009AFA883EF36EED39CC47F36FE7E69 /* Pods-Examples-AuthExample */, - 55908634686A3DF6ECCEE78419BBA7A9 /* Pods-Examples-ConsentViewController_Example */, - C7D0A4151C95D4FBAD32B247F044F933 /* Pods-Examples-NativeMessageExample */, - 197865AE4C919C97C7E5CE23CE9253D9 /* Pods-Examples-ObjC-ExampleApp */, - 28D5EA4BB4CA750310C6328A9F1F15D9 /* Pods-Examples-SourcepointFirebaseDemo */, - 0215672A26243634BDD3066654D7E3D6 /* Pods-Examples-SourcePointMetaApp */, - 3E88639B1919779EA4D947458F865C3F /* Pods-Tests-AuthExampleUITests */, - FC93A0989C42FA19D96552F13D5FE50C /* Pods-Tests-ConsentViewController_ExampleTests */, - 534D623ADD013C7F78FFE22047E69951 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests */, - F9444BEB61B4B9D850FF5A2216A3C8DF /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests */, - 2701FF4C96D98F0B29DFA47632CB59B0 /* Pods-Tests-NativeMessageExampleUITests */, - F04688DB063193CB7C0D050E87ACE1FE /* Pods-Tests-ObjC-ExampleAppUITests */, - 945767455B6DDF8DBEAADC2013CD7C86 /* Pods-Tests-SourcePointMetaAppUITests */, - 4B52B86C338468857F2E798179EBEC53 /* Pods-Tests-SPGDPRExampleAppUITests */, - C3D163ED35F95B184B10CF3222D35768 /* Pods-TVOSExampleApp */, - 8FAD4B2C2A4A9820171E0345B3BFF0D7 /* Pods-TVOSExampleAppUITests */, - 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */, - 3F238BB22C5201CE689CAF2F766AED95 /* PromisesObjC-FBLPromises_Privacy */, - C8E0F49D3F9CF6715FD8D2D98638F20F /* Quick-iOS */, - 73F566CFB5F21F61AC2FA68F08AA0B2D /* Quick-tvOS */, - 2530BC414137FF7A53A0368B476547B9 /* Wormholy */, - AA92ED38E716E03D3FC758C810953B95 /* Wormholy-Wormholy */, - ); - name = Products; - sourceTree = ""; - }; - E701B0A8EC8F7B434AE8AF25FDF19EDF /* Pod */ = { - isa = PBXGroup; - children = ( - 535E06755C3CD0BAF29EC6CCC440D468 /* ConsentViewController.podspec */, - 522F23E47E472ADB4AE7F2B949926F49 /* LICENSE */, - 77A72569939F05DD3E89F62FC4D9A0B5 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - E83D3553A23C5D78022E08153B93995C /* Frameworks */ = { - isa = PBXGroup; - children = ( - EF6ACC04C0CF3B52A8A4D2AE80C72C21 /* GoogleAppMeasurement.xcframework */, + 8C0CC5D75F0C94D2B7BE7E0FD0A11336 /* Appearance */, + 9D7B1B269AE981E9DC976866D803A67B /* Core */, + 85AC22B4433B3CE027E3E08658904B56 /* IQKeyboardToolbarManager */, + D946A136E9AFD3B95B56D33A427B0141 /* Resign */, + 002B13B8086B166BE23A153BEB5D5CAA /* Resources */, + 5D00C196FC7E8A6DEA529DA07FD40B84 /* Support Files */, ); - name = Frameworks; + name = IQKeyboardManagerSwift; + path = IQKeyboardManagerSwift; sourceTree = ""; }; E8C006480E1336C99E83F7F93D9E9E43 /* Pods-Tests-ConsentViewController_ExampleTests */ = { @@ -4999,20 +5725,6 @@ path = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests"; sourceTree = ""; }; - EC90EAAE84538BFE580C10AD311352D2 /* IQKeyboardCore */ = { - isa = PBXGroup; - children = ( - 934913155FE9FC08620A127174CFC884 /* IQKeyboardConstants.swift */, - EE7644B44C737CD8744A0546FDEF85C4 /* IQKeyboardExtended.swift */, - CEB98F11904104FA5986274E5E3AD1BF /* IQTextInputView.swift */, - 7CAA96145FA19BE9F9B58715D0DDEF2A /* UIView+Hierarchy.swift */, - 7EB1DEC6F355E572AE0EEAEF733FED64 /* Resources */, - 99BC29215B074A9E278BDB15C169AB6E /* Support Files */, - ); - name = IQKeyboardCore; - path = IQKeyboardCore; - sourceTree = ""; - }; EE282562A2A14EBF14774FFA73C09FFB /* Adapters */ = { isa = PBXGroup; children = ( @@ -5025,13 +5737,32 @@ path = Adapters; sourceTree = ""; }; - EEB7C792E85E99D4A6E2ED38C0B9FB8E /* IQKeyboardToolbarManager */ = { + F0462B38B1FF62E33276E34FE89082B3 /* Support Files */ = { isa = PBXGroup; children = ( - 48539D0F1FC7D86B6DD5FAC140F12492 /* IQKeyboardManager+ToolbarManager.swift */, - 59061C73E42331C834ECD764DEB9F965 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */, + 27B51A7BAC47E4A5BFF438AAB27E4C81 /* IQKeyboardReturnManager.modulemap */, + BE80F7781B3D638A7E69BC47FCE44F37 /* IQKeyboardReturnManager-dummy.m */, + B429F14EB4A5E9DA1D17227E6D90E17D /* IQKeyboardReturnManager-Info.plist */, + E3FA1A4311E27E13B867AB056D3F2625 /* IQKeyboardReturnManager-prefix.pch */, + BDE3ACC9919EBFCC1AB3449F164F1C80 /* IQKeyboardReturnManager-umbrella.h */, + 6F603B49005B06B768E07C75B6EA395B /* IQKeyboardReturnManager.debug.xcconfig */, + E9EAAA300C2D6362912AE15C9D01E4CF /* IQKeyboardReturnManager.release.xcconfig */, + 23FBDAA5FD0B0723D595A12D65251D68 /* ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist */, ); - name = IQKeyboardToolbarManager; + name = "Support Files"; + path = "../Target Support Files/IQKeyboardReturnManager"; + sourceTree = ""; + }; + F16DDB092264A61A89EF183DF210FE37 /* CwlPreconditionTesting */ = { + isa = PBXGroup; + children = ( + 33C6E68936062BDC159B49D3849FB9A0 /* CwlBadInstructionException.swift */, + 50FB40779EF49E222850B94FF5E486A9 /* CwlCatchBadInstruction.swift */, + 0040387F9E3E25AF324907F247E4BF80 /* CwlDarwinDefinitions.swift */, + CF1140903D9BC2409B3D009493A73743 /* Support Files */, + ); + name = CwlPreconditionTesting; + path = CwlPreconditionTesting; sourceTree = ""; }; F277BA9BCD1382C98D792A85B9FB7C58 /* Pods-Examples-ConsentViewController_Example */ = { @@ -5051,16 +5782,6 @@ path = "Target Support Files/Pods-Examples-ConsentViewController_Example"; sourceTree = ""; }; - F28AF4ADBF7299716C9B04001F95E03C /* Logger */ = { - isa = PBXGroup; - children = ( - 9CCFFA270204C150B82CA14265C8B8A1 /* GULLogger.h */, - DFBC83D9A9995191A977A068539989C3 /* GULLogger.m */, - F877C4036FE50FB670F75F5EAD9FFA58 /* GULLoggerLevel.h */, - ); - name = Logger; - sourceTree = ""; - }; F3C0D8EB072AFFB00F91A3ED1B7CCA53 /* iOS */ = { isa = PBXGroup; children = ( @@ -5069,325 +5790,252 @@ name = iOS; sourceTree = ""; }; - F4BDADADF87C0430986B6099EAD9A261 /* Support Files */ = { + F618B83A6553A10D06CD6345535C8E3E /* AppDelegateSwizzler */ = { isa = PBXGroup; children = ( - 5CCBCF03C26FC39270899F1AF1C0E84A /* FirebaseAnalytics-xcframeworks.sh */, - F4037A93A2FFC8C9D236D1187E49BE34 /* FirebaseAnalytics.debug.xcconfig */, - 4CC772F0B36821A5DE2CFDFC5433124B /* FirebaseAnalytics.release.xcconfig */, + 9CF9B3750AC996B188363CC4B0C54DD7 /* GULAppDelegateSwizzler.h */, + 4A6F4473374AD88703DDD7B603DCD0CF /* GULAppDelegateSwizzler.m */, + CAD3B3265A52A20F40CA87019535A969 /* GULAppDelegateSwizzler_Private.h */, + F90DDF1898184087BBAD77CEC96A842D /* GULApplication.h */, + D7D9476A97FCF2A9624775C73C84BCE3 /* GULLoggerCodes.h */, + 1B73E46A10649788206CF69187F13906 /* GULSceneDelegateSwizzler.h */, + D2B8222ABD79FEDFA24A209D578BAC54 /* GULSceneDelegateSwizzler.m */, + E5CB5ECF48DAC0B2C0B6B7AD94DD9AE5 /* GULSceneDelegateSwizzler_Private.h */, ); - name = "Support Files"; - path = "../Target Support Files/FirebaseAnalytics"; + name = AppDelegateSwizzler; sourceTree = ""; }; - F955047AF1237023DCEFD6CD37744284 /* Support Files */ = { + F76A1FE97B6E83910B12115B6507642E /* Support Files */ = { isa = PBXGroup; children = ( - 783226561A7F87FA30356BBFDA0B9DD5 /* IQTextInputViewNotification.modulemap */, - D34F48F0156F59F5CC1403BACC7B28BF /* IQTextInputViewNotification-dummy.m */, - 0EDDD218CEDF3D6464040A617677A3A9 /* IQTextInputViewNotification-Info.plist */, - F3741CD9BC1027E29254EA670253678E /* IQTextInputViewNotification-prefix.pch */, - 7198B01CB9F09112A66C8A74CB059832 /* IQTextInputViewNotification-umbrella.h */, - A636064211D47B85F3EB7BCDE55DB714 /* IQTextInputViewNotification.debug.xcconfig */, - 480BCA1B0DA65FE06926FA811C94717A /* IQTextInputViewNotification.release.xcconfig */, - C46A72451BEA061D4A42B6CA7C7B4237 /* ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist */, + AC91C44A59AABC5FF63CF75D8B6F86C5 /* CwlPosixPreconditionTesting.modulemap */, + 561022AEBBB35FACDF6EF8E49CE29A97 /* CwlPosixPreconditionTesting-dummy.m */, + 472271800CA69830B18B7832F8BF110D /* CwlPosixPreconditionTesting-Info.plist */, + 9F4E194548CB8DA88C035DC8C7D2EF86 /* CwlPosixPreconditionTesting-prefix.pch */, + 5EC13EE03CEE8CE6A374E6B796A5FC24 /* CwlPosixPreconditionTesting-umbrella.h */, + 2CBDA5A98EA670762ABFC2E1D265F305 /* CwlPosixPreconditionTesting.debug.xcconfig */, + 60A70F335EE93EADD5D96E8BA805610B /* CwlPosixPreconditionTesting.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/IQTextInputViewNotification"; + path = "../Target Support Files/CwlPosixPreconditionTesting"; sourceTree = ""; }; - FB4BDC7699BDB13317BA5E5D3B3408E1 /* Nimble */ = { - isa = PBXGroup; - children = ( - F74222BB8873866100AAA6C02D20B19C /* AdapterProtocols.swift */, - 596C241CA6CD5617D4F89E445D7009A0 /* AllPass.swift */, - AD620E8827ABB7E19850213C1965F3C2 /* AssertionDispatcher.swift */, - 9884E32738BA4639A674388FB13803E7 /* AssertionRecorder.swift */, - E9C973AA0FBD247656B58ACB72D0EFD9 /* Async.swift */, - D6DAFF4C34A4E5072E581581BD3C7320 /* Await.swift */, - 27B0BCF2353094B4FD14CEF688580407 /* BeAKindOf.swift */, - C30025A4F64B593C3085A683F7D1C262 /* BeAnInstanceOf.swift */, - E6F5B8E77427FACDFD1FCB9B112E01B4 /* BeCloseTo.swift */, - 907E846CE0F2573B140312B3DF059B67 /* BeEmpty.swift */, - 68C785ED323E67BF289970E122380EEC /* BeginWith.swift */, - 868CC676B3D618DEDB916F87996644E3 /* BeginWithPrefix.swift */, - 2FF30CD13696FD7A58825344738F12F1 /* BeGreaterThan.swift */, - B41FE3E86B3EAF6DB3508ADFBF9B331B /* BeGreaterThanOrEqualTo.swift */, - 67DE25D188109BC94B5A2EF8C20CA070 /* BeIdenticalTo.swift */, - 28664522455C5D2FEA5E3F6CFAC78884 /* BeLessThan.swift */, - E040BACA9612D744000329AA00281651 /* BeLessThanOrEqual.swift */, - 5EA81568F79ADF433E8D60D5FAB28B30 /* BeLogical.swift */, - 2F41EAD0462930E28057D0AB75280CB4 /* BeNil.swift */, - 5D4B1A9F978F3F86AC794C5AA19FACF8 /* BeResult.swift */, - C2747E5052238442DF33536DDD1F2A33 /* BeVoid.swift */, - 3C71C50FC2190EF102A817A4FFE9E3B3 /* BeWithin.swift */, - 8D9FE6BE7D01AFF37E1F76BF3302ED01 /* Contain.swift */, - 1977D158C8E9B436CD6D3027B9A13F76 /* ContainElementSatisfying.swift */, - E70DF14428EB0C35012D69FFCB808172 /* CwlBadInstructionException.swift */, - 7C85826F64D9EEF4F42854F06E733277 /* CwlCatchBadInstruction.swift */, - 284623473428AE00AAA189382025D8CE /* CwlCatchBadInstructionPosix.swift */, - 4ACA26817716D3366E53B78915534E69 /* CwlCatchException.h */, - BDCB91B4EBA43D6A752144A35F5C39B1 /* CwlCatchException.m */, - 8AD3A4D450A2888AED931AF0FCDD38BA /* CwlCatchException.swift */, - 69F83A4309A08B5CE4FE64D97C59A7F8 /* CwlDarwinDefinitions.swift */, - 5BEF956C5CBABFCC690419ECC0D09D4C /* CwlMachBadInstructionHandler.h */, - 52ACDE1EC0344F289043D4436F43BB63 /* CwlMachBadInstructionHandler.m */, - 810EC0A6205889C5FBA7F83237740652 /* DispatchTimeInterval.swift */, - EDFF452AC6C1DF3F38720636E6C7779C /* DSL.h */, - 7223E42D6E884EE0870AE6C92B365C07 /* DSL.m */, - 0F46ABC219787CB09845CCE85B3B87FB /* DSL.swift */, - 71849E329BE263D85B52CB004AD51AB5 /* DSL+Wait.swift */, - A19DBDACF73DF8A661FABAF35E57ADE1 /* ElementsEqual.swift */, - F99323A8C236B9F091BF10F94BE6D3EE /* EndWith.swift */, - 8C5A44B76A3D4D82D166B3640F49C77A /* Equal.swift */, - 7D755C57BF1B04B906F74F106928665C /* Equal+Tuple.swift */, - 514CEEC875BFF0788879C7CDA9CC6141 /* Errors.swift */, - 44C01843EB2DBD02D63167074C601F6A /* Expectation.swift */, - 9C81DD2F22C774AC3D4CE877C34EFD02 /* ExpectationMessage.swift */, - B6BCF353F54D6803B0577E9013F8AFCF /* Expression.swift */, - 03C47438F7D8F2BE336C275B53DB6C77 /* FailureMessage.swift */, - 5FB8FC6C10C2A9A093B9917308EBDFA5 /* HaveCount.swift */, - BF05B2B122EE3F0CCF5B34243A45E7C3 /* mach_excServer.c */, - 3EA718FEBF563149B47AABD80345B5A8 /* mach_excServer.h */, - B1531A61005719146F0AC17BCAF28D30 /* Match.swift */, - 2DE2DDC056DD3CF8CA9F8E3DE9DADF0C /* MatcherProtocols.swift */, - 3055702285B0D06F231C983A71921A46 /* MatchError.swift */, - 85B42C336123B93CE8962DC3EF0235F1 /* Nimble.h */, - 787A4178773C15B48FEB129B04DC6C05 /* NimbleEnvironment.swift */, - A9301DBF0942EABDDAF8A2D6E9FE6054 /* NimbleXCTestHandler.swift */, - B02F30958F58C9BB4C92F25710B7BE2B /* NMBExceptionCapture.h */, - 2EF9D66E18EBC3763F5A3BC63F88DD22 /* NMBExceptionCapture.m */, - 901A3A8C529AD64155E3B230DC8D2744 /* NMBExpectation.swift */, - 0EA61A939CCD7358A691FDF7396A81F2 /* NMBStringify.h */, - 5773DC71CA4EB2DAC5CB4BDEBD23ED11 /* NMBStringify.m */, - 7D9EC2C8F5E9B4BB7A7B1FE5BA59C862 /* PostNotification.swift */, - 73C4FD7131B5B3F930C9A406DD9EE984 /* Predicate.swift */, - D18A08E958F91835B67DA617DC313A92 /* RaisesException.swift */, - B07B30B332CCCEFC8961E2C442315EF8 /* SatisfyAllOf.swift */, - EED09E4AF92B56AE1B2C7DE6D9DA2A17 /* SatisfyAnyOf.swift */, - CB6B3D895D685ED1C8498161122E6D56 /* SourceLocation.swift */, - 5867E5094DC63DF9536C0CD4F951F7D3 /* Stringers.swift */, - CE68FDF75CC5AB27C334D196C063E5F4 /* ThrowAssertion.swift */, - 61EBA6411B378215A7B76D04C5DD598E /* ThrowError.swift */, - C36F5EFB0BC6BFE4499C4B8EB6AF10EE /* ToSucceed.swift */, - 02EE6C687792F6C27F1D79E927D2D8EE /* XCTestObservationCenter+Register.m */, - 5EBE9D974A32FD488D1C7EE5B7389511 /* Support Files */, + FC4D71F9EF8B319BF8CD7E33A8085E8A /* JSONView */ = { + isa = PBXGroup; + children = ( + 42309A7D3A62F66FC79D91D12F041257 /* JSONCell.swift */, + 4265AA8465B4B7BE72ED42FB5ECE3E61 /* JSONTreeView.swift */, + 70C802EB30B4D174902F64BFEDF4B881 /* JSONView.swift */, + 36EDC9C87AA25C00588569FB9643B2A7 /* Support Files */, ); - name = Nimble; - path = Nimble; + name = JSONView; + path = JSONView; sourceTree = ""; }; - FD97B8A027AB0DE251C454034A0756FA /* Resources */ = { + FC7047C29B9BD46EF9BD02EE171A09BB /* SPMobileCore */ = { isa = PBXGroup; children = ( - 6AAFE2F05B99D2226D91C97507CA47B9 /* PrivacyInfo.xcprivacy */, + BE799588116A2146D06229578EBA6F13 /* Frameworks */, + 9E451D85DC6C0F5FC084083BD939E89E /* Support Files */, ); - name = Resources; + name = SPMobileCore; + path = SPMobileCore; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 00CDD42B7634FA5C6218A132D0DBF803 /* Headers */ = { + 01C512089410C6EFB3BBA9A31780CE7D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 8E57C787B2848ACF71FCFFCAECD980A0 /* IQKeyboardToolbar-umbrella.h in Headers */, + 6ADB6DB35E5E73BACB1AE79E30DA67E1 /* FIRAppInternal.h in Headers */, + FDEF461D17CE7383420279D95B62A3EB /* FIRComponent.h in Headers */, + E94A827DEB23341A36B556433591350B /* FIRComponentContainer.h in Headers */, + 09C209A2FAC47F3BE1E49B1C6D90AAC8 /* FIRComponentType.h in Headers */, + 311E961331F50AEB4A4D232CBE5FF389 /* FIRCurrentDateProvider.h in Headers */, + 4224C3CD50F0706909A6707CC95A362C /* FirebaseCoreInternal.h in Headers */, + C0E25E0B9F46117560D056163C948F2E /* FirebaseInstallations.h in Headers */, + E8789C876A23C86DE2A179941962D675 /* FirebaseInstallations-umbrella.h in Headers */, + DFB932C28ED84FF47827C25D4913AFCD /* FirebaseInstallationsInternal.h in Headers */, + AE5B5C917E549156352118A6C3B54636 /* FIRHeartbeatLogger.h in Headers */, + 67E998107712685316435BEAEBD69DBA /* FIRInstallations.h in Headers */, + 760B5F227A6234520658AE2331625379 /* FIRInstallationsAPIService.h in Headers */, + AF02029E1F98BC6EB7A15B53D91E8A24 /* FIRInstallationsAuthTokenResult.h in Headers */, + 28FAD079E457F696C78EC667A68BECC9 /* FIRInstallationsAuthTokenResultInternal.h in Headers */, + F4496011CFAF8A504EBB79F8057AC156 /* FIRInstallationsBackoffController.h in Headers */, + 069E8C5D6394E382702451CCF591A765 /* FIRInstallationsErrors.h in Headers */, + 9680B3A0639DF7526CEA82E68C3B2459 /* FIRInstallationsErrorUtil.h in Headers */, + A0B4330F6FFCE05D877083804BBA3476 /* FIRInstallationsHTTPError.h in Headers */, + 422FAF61381DBB442AF04CA133D9EFFD /* FIRInstallationsIDController.h in Headers */, + F7242A1E4AE35B5F70E9BE38F6AF7E80 /* FIRInstallationsIIDStore.h in Headers */, + 62098C923A3CCFA2AB66EB8D158E984B /* FIRInstallationsIIDTokenStore.h in Headers */, + 7E40A8DC22BF42BE8A7D1601EBB1473F /* FIRInstallationsItem.h in Headers */, + E5367AD004CF53D8D393013DC108D795 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */, + 33CFC3693A0F9032B74A14A4DCD9188B /* FIRInstallationsLogger.h in Headers */, + 989B7B0D1925ED300862083FFD08535A /* FIRInstallationsSingleOperationPromiseCache.h in Headers */, + 9E2726BEEA22F505119A3E5FA6C10692 /* FIRInstallationsStatus.h in Headers */, + 86B851708932AE4EF4FAD37947BC387D /* FIRInstallationsStore.h in Headers */, + 20FE1FC4EABBDB36F4AD00B851123A87 /* FIRInstallationsStoredAuthToken.h in Headers */, + E17430514C3537451662FD780BCD51E6 /* FIRInstallationsStoredItem.h in Headers */, + 0C54B693C4A8C43E728438EAF9E2096A /* FIRLibrary.h in Headers */, + EF5437B0AE9D8DF464F3D9C66DFABD9B /* FIRLogger.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0370C706CFAB8A2DE2A2E1AE1EBBF551 /* Headers */ = { + 040CCE3E5932A5339E850B71BFC3B5C3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - B9152FA84110DF700ACB5C12212830F6 /* Pods-Tests-SourcePointMetaAppUITests-umbrella.h in Headers */, + 45AEC3888A32D59FED868B188F68952F /* ConsentViewController-tvOS-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 040CCE3E5932A5339E850B71BFC3B5C3 /* Headers */ = { + 10B58F96439EA1C2759C682E3F15B529 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 45AEC3888A32D59FED868B188F68952F /* ConsentViewController-tvOS-umbrella.h in Headers */, + 96E869BE6BE558E42A7B1F0D8CB55B66 /* ConsentViewController-iOS-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 087C3D082F3F5DCB46B35BE201752CE7 /* Headers */ = { + 1A4687A154BE23C9E4B4C3AEF733815B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 807D2E423EA2EF3BFC0649A900513658 /* QCKDSL.h in Headers */, - B7C074DE14728CAA4A614418F3A7794F /* Quick.h in Headers */, - 042332EA4C925731CF5D532F83EBE9C9 /* Quick-tvOS-umbrella.h in Headers */, - 6BED0FA85021F5CECE79D6BB6D9E315F /* QuickConfiguration.h in Headers */, - 02CFC4E21EAF18B42E54076497D39991 /* QuickObjCRuntime.h in Headers */, - 3744222D732FF91F8CA2572BE0A44AFC /* QuickSpec.h in Headers */, - F398C475F11F2895BBBA97CE888F51D3 /* QuickSpecBase.h in Headers */, + 1DF9387949CFB08A4EE564C6EE1B0D0D /* Pods-Examples-SourcePointMetaApp-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 08A26DA1E91428ED683BBD52772BEE4A /* Headers */ = { + 22208EAF320311D959CCFFC1F5E576F5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - C47CD8D10034688D47428F47088CFAD0 /* GoogleUtilities-umbrella.h in Headers */, - 925E70F8D174E69BD097BE93CFB963D4 /* GULAppDelegateSwizzler.h in Headers */, - 0ECBF4523F22B3D4EA522A64F611D325 /* GULAppDelegateSwizzler_Private.h in Headers */, - 88457669403905BD1FE37BDBD3F796EC /* GULAppEnvironmentUtil.h in Headers */, - B95448EF2916F7368377FF3E27D6D4F6 /* GULApplication.h in Headers */, - 418C83FC713C3877C66ABAAED133605C /* GULKeychainStorage.h in Headers */, - F7D8EBC84943479AD40404F2A09E258C /* GULKeychainUtils.h in Headers */, - 32D317A394EB0A5DC75B7F93AA8CAB40 /* GULLogger.h in Headers */, - 1EC424D0B35B56268A4DDD544BC3598A /* GULLoggerCodes.h in Headers */, - A89916F69B323F38D8092D4B1C365410 /* GULLoggerLevel.h in Headers */, - B01C23F062F0880D3653B5775B959B21 /* GULMutableDictionary.h in Headers */, - F0A8ED16D5FFC1475F77470FF946FE51 /* GULNetwork.h in Headers */, - 0661E9525E86F6A4BE065C4865DEDE6D /* GULNetworkConstants.h in Headers */, - 75CFF68F44C474CA28AE5133FAD90731 /* GULNetworkInfo.h in Headers */, - F218AE2776201A4D96CF67888139A87C /* GULNetworkInternal.h in Headers */, - 89100D489AC8EC43E70F6CE4B967AB9F /* GULNetworkLoggerProtocol.h in Headers */, - 55AA5ADAFC7C81A9D3641C6B339A146B /* GULNetworkMessageCode.h in Headers */, - 0B48833C1CCE472EF7535058CF3BDF6E /* GULNetworkURLSession.h in Headers */, - 103BDF12D041DAEF170E7D55C51DA3B9 /* GULNSData+zlib.h in Headers */, - 6FFB8A1E5D014E640BAE543F7D1D0212 /* GULOriginalIMPConvenienceMacros.h in Headers */, - 09EFF04EA54C003882DD98713A76743A /* GULReachabilityChecker.h in Headers */, - 1486A90D9BC9A30A3B37EA50467FDEAE /* GULReachabilityChecker+Internal.h in Headers */, - 4BE32EF4C040065E69431F91A8F35754 /* GULReachabilityMessageCode.h in Headers */, - 42113B4B25D64D650438406FB18C50B9 /* GULSceneDelegateSwizzler.h in Headers */, - A293D1B2A374A978F5DB59CD334F7F0C /* GULSceneDelegateSwizzler_Private.h in Headers */, - 838ECFEEFFEAF6C0048E063FAC968E81 /* GULSwizzler.h in Headers */, - 5E82F9DAEC1EDCE5CC619E0909C432C1 /* GULUserDefaults.h in Headers */, - 904901E31A4661BCDD7733BF4812C3A2 /* IsAppEncrypted.h in Headers */, + CE042ECB32DFB995C0F38CB37DF8574A /* IQKeyboardNotification-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 10B58F96439EA1C2759C682E3F15B529 /* Headers */ = { + 2231DEABFAA9DFF0395E37D0439C847A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 96E869BE6BE558E42A7B1F0D8CB55B66 /* ConsentViewController-iOS-umbrella.h in Headers */, + 5EF6D9E6A32DD18D070F9197B77E621A /* IQKeyboardToolbarManager-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 18499C00597E22D2902DB2E3C448AF66 /* Headers */ = { + 28D3F297996E2D31D6BACF92F952EC9C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - BEE0E5781CE51D0667309A7BBC33FE55 /* IQTextInputViewNotification-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1A4687A154BE23C9E4B4C3AEF733815B /* Headers */ = { + 903D9DFC1F4BD71907599D69F1452209 /* FIRAnalyticsConfiguration.h in Headers */, + 15B9EB4CD4324D010E4798EC18AC7662 /* FIRApp.h in Headers */, + C91B37F1C8EAE26A79B9BF0CEA01D094 /* FIRAppInternal.h in Headers */, + AF5AADCBACB9109C6BFD4F0BE616751E /* FIRBundleUtil.h in Headers */, + E8AA4A15431A050F3EA95A3F8D0910C8 /* FIRComponent.h in Headers */, + 5301834732AA4B5A3B024F809C1F4DF5 /* FIRComponentContainer.h in Headers */, + 05B22043CF9AAD54DF8530179AC5B74B /* FIRComponentContainerInternal.h in Headers */, + E49C1415051F51B24AB3C2DECDEAFB90 /* FIRComponentType.h in Headers */, + EDCA05DF8E30361DA6B503C8CA767B6C /* FIRConfiguration.h in Headers */, + 3B9AEA58A68761A13A9A1608EC111438 /* FIRConfigurationInternal.h in Headers */, + 357A7658034DDF01E8BD546F0F757FE4 /* FirebaseCore.h in Headers */, + B15F355EFC46899A8C16073527E0CBEC /* FirebaseCore-umbrella.h in Headers */, + 2BCFE5F1E33F30397EABF79C911E78E8 /* FirebaseCoreInternal.h in Headers */, + EE152A71C2D54BE49D91A205F0150357 /* FIRFirebaseUserAgent.h in Headers */, + CEA1D39C2BF8555C07EEB9B70110EC2B /* FIRHeartbeatLogger.h in Headers */, + A72BC21CAF6BE6BC5C215EF6D312DF8B /* FIRLibrary.h in Headers */, + CB1C12468B6EA38F8DD32D460546F6C5 /* FIRLogger.h in Headers */, + 1054F8E57CB5D3E24A56017601184463 /* FIRLoggerLevel.h in Headers */, + 3D0731D9EF07C1F4C9C6BF6A07BD0E03 /* FIROptions.h in Headers */, + FA82BD1CF8B95F4070FBFFCEF8E60F03 /* FIROptionsInternal.h in Headers */, + 57D620DC2F6FA4BD1251180934A8CA51 /* FIRTimestamp.h in Headers */, + EBB47ABB1DA7B625932157D03EC12293 /* FIRTimestampInternal.h in Headers */, + C110D0EDB720B2BFB7321A966A6530C7 /* FIRVersion.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 404D0C63A37E0DF0485AED1CD183F2D5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 1DF9387949CFB08A4EE564C6EE1B0D0D /* Pods-Examples-SourcePointMetaApp-umbrella.h in Headers */, + F9E2812AAB407B73AB59A302AB7EB84E /* Pods-Tests-NativeMessageExampleUITests-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2032FCBF059F31DDF749B7CF886F2086 /* Headers */ = { + 4CB019A04B4FC006B19B994C3C21B1FA /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - E6295C46938338F49615EAEB54E6F30B /* Pods-Tests-NativeMessageExampleUITests-umbrella.h in Headers */, + E3F772B0C47359965F25AB174EC12A9C /* Pods-TVOSExampleAppUITests-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4156E346D167AB5E8DB3A656291C96C0 /* Headers */ = { + 5324B42C4067ACE6FC425246829D2B36 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - CEBC62AA111B92267319666FBD035808 /* IQKeyboardNotification-umbrella.h in Headers */, + 722CFE49C5289FFB97B9662AD7208381 /* FirebaseCoreInternal-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4CB019A04B4FC006B19B994C3C21B1FA /* Headers */ = { + 55501579E486BF2CF2A5C3F9DF7B9072 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - E3F772B0C47359965F25AB174EC12A9C /* Pods-TVOSExampleAppUITests-umbrella.h in Headers */, + 93605FCACEF04BF42F32654E0388E99B /* QCKDSL.h in Headers */, + 5932AC8235F4D68D5D1C8119DD03ACB7 /* Quick.h in Headers */, + 9287C158B322063134F05EEC4776293D /* Quick-tvOS-umbrella.h in Headers */, + F1AC49BE6949796D43824CCE5776834D /* QuickConfiguration.h in Headers */, + 662B978B41014979E5FF2C6F72BCE893 /* QuickObjCRuntime.h in Headers */, + 1BAF203C3626D3820631D4635FC175C7 /* QuickSpec.h in Headers */, + DC40FBFF09CE3C36B8316F6DF0F266B8 /* QuickSpecBase.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5C0A59B172A60C023E5AD681F7F4357F /* Headers */ = { + 5854AD3BF689451ED8DF1750366C1534 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - C82EB9C5D426665C0097F1597F49E2BA /* Pods-Examples-SourcepointFirebaseDemo-umbrella.h in Headers */, + 3B6B4253770D7DD8238C8490E45C25DB /* Pods-Tests-ObjC-ExampleAppUITests-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5E96A15CC9160D319B66D44DC8FEA247 /* Headers */ = { + 5AA4D3725DD67DDD55F9366EFEFD3692 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 3DBE6B57FF79A8E22D7CB676066F574F /* Pods-Examples-ConsentViewController_Example-umbrella.h in Headers */, + 3824E1CB9FB67C985E91FEE580743C73 /* Pods-Tests-ConsentViewController_ExampleTests-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 60910FB3907F7ACFB4351505336D8F91 /* Headers */ = { + 5C0A59B172A60C023E5AD681F7F4357F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 8DDD3267EC8486CEAC8E246C309AB53E /* IQKeyboardReturnManager-umbrella.h in Headers */, + C82EB9C5D426665C0097F1597F49E2BA /* Pods-Examples-SourcepointFirebaseDemo-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 612DF0BACC44E169018120F56174FE17 /* Headers */ = { + 5E96A15CC9160D319B66D44DC8FEA247 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 5677346C84E9019FE1D2DC080DB61108 /* Pods-Tests-SPGDPRExampleAppUITests-umbrella.h in Headers */, + 3DBE6B57FF79A8E22D7CB676066F574F /* Pods-Examples-ConsentViewController_Example-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 66D8A2242CE93A509FB40A90FC733088 /* Headers */ = { + 62418A3DD2CD98A31D804AEED228B995 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 6C39B1BAC4EDCAAD86D19D4F2715FDD6 /* nanopb-umbrella.h in Headers */, - AD946E78DA216E6B46A1682D657B3F85 /* pb.h in Headers */, - 2E53ED3ED2B65DA70ACAC25C9E801CE1 /* pb_common.h in Headers */, - FA05D370DEC884852DF8F1A306D50EFE /* pb_decode.h in Headers */, - 608591708094D81FB8C000845AD3AAFF /* pb_encode.h in Headers */, + 31FAE8A64E6BE3ED94D713953D2B5914 /* Pods-Tests-SourcePointMetaAppUITests-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 840C9F154A4AEE321A9E0531AEDE915C /* Headers */ = { + 6B5E850D0377D6D2433321A2979F43C5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - E9AAA305A073B95D08BD8429B6601578 /* FIRAppInternal.h in Headers */, - FFA4E7CC673CC4A9DD5BC574D1A3F0AD /* FIRComponent.h in Headers */, - F6831D7BEC6BA35E2C470C4A654F49C0 /* FIRComponentContainer.h in Headers */, - 914FB74629A77885611153AE7B53F20D /* FIRComponentType.h in Headers */, - 00E5C4D6775D3CC020A8F60968814A0B /* FIRCurrentDateProvider.h in Headers */, - 61755BDEB2A4095BDAF30D44FFF625CA /* FirebaseCoreInternal.h in Headers */, - 2D2766BA5DFAEEB7012F447B13774CF6 /* FirebaseInstallations.h in Headers */, - 3BBC8D66B0A8F435D0BEC4FA056CAF67 /* FirebaseInstallations-umbrella.h in Headers */, - 60885B4F65D6100D247635A2EED05BC7 /* FirebaseInstallationsInternal.h in Headers */, - F97076474A758641C2F309902948D296 /* FIRHeartbeatLogger.h in Headers */, - 3D1C9D584A1BED1CBB8DF70E6AB18FA1 /* FIRInstallations.h in Headers */, - FD075E1FB743E5F3A9D234A74132AECC /* FIRInstallationsAPIService.h in Headers */, - E14C44F35D0A2FB56785E8D151B38DFD /* FIRInstallationsAuthTokenResult.h in Headers */, - EE12F272371B3D1932411FB51EF0E6ED /* FIRInstallationsAuthTokenResultInternal.h in Headers */, - 6B574ED67A1E6431916110215187846C /* FIRInstallationsBackoffController.h in Headers */, - 02B3BE229350BE25AC8DC14AAE1A13D3 /* FIRInstallationsErrors.h in Headers */, - 9F110E10D8244220C5935C2866BE6000 /* FIRInstallationsErrorUtil.h in Headers */, - 1515D28BDA45B07AA3AFD1EC8CCF0A4D /* FIRInstallationsHTTPError.h in Headers */, - 25E72B5EAB3CFAFED265F12121CE3E15 /* FIRInstallationsIDController.h in Headers */, - 3BC3AE83D0689640B689D51CA50D96E5 /* FIRInstallationsIIDStore.h in Headers */, - D24DA8779ADCAF2E22A8F0FE7ED9B887 /* FIRInstallationsIIDTokenStore.h in Headers */, - 2429FAFAC4B5CB56A3AA18886F3EEAEF /* FIRInstallationsItem.h in Headers */, - 1E6C0EC9F543EAD0F79B7C72C4DB315D /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */, - 17CD423C00AAB14CD4EF14A876E9A1CE /* FIRInstallationsLogger.h in Headers */, - EF3F653F8F64A5D31875F5CADC5D7742 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */, - 0F1E0CA4D885CDD10E7337E870AFDFEB /* FIRInstallationsStatus.h in Headers */, - 3280F7DC7154AD807B35438E02086AB0 /* FIRInstallationsStore.h in Headers */, - 0112F004204DEA54BA43699A384ACC05 /* FIRInstallationsStoredAuthToken.h in Headers */, - BA9B78CF086025A809E862C70262A9A3 /* FIRInstallationsStoredItem.h in Headers */, - FE3D084244B7AAE5A549D625213D5377 /* FIRLibrary.h in Headers */, - E6DD6366F7083B2C59CF5B048C1446BC /* FIRLogger.h in Headers */, + 34B80C88F9E57499A4A92B90001182BF /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5399,41 +6047,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 86F5A461B384FC2BF2C676B2601C04EA /* Headers */ = { + 8BCE0D8414D22702512DEE35B529895E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 43473E5150827F4BD0A4A8584AF435ED /* FIRAnalyticsConfiguration.h in Headers */, - C57E96236C0E83FAE3A69D7239A19249 /* FIRApp.h in Headers */, - 2ED590B7279139DB8F1850CA4145890D /* FIRAppInternal.h in Headers */, - 83422F037A16EDCB0C871E2EA82FA358 /* FIRBundleUtil.h in Headers */, - D614B060368A051B14252865179BFB02 /* FIRComponent.h in Headers */, - F57669074FE360C5A76632024B5BAF03 /* FIRComponentContainer.h in Headers */, - E5A884D7E6E8A54A05B6B758BDB83695 /* FIRComponentContainerInternal.h in Headers */, - AD274845355DD0F8441A898B91F5C4A6 /* FIRComponentType.h in Headers */, - 0B9CDFB5DEF9E5F1F222268A9EFBA97A /* FIRConfiguration.h in Headers */, - 064822D707C9D7FB7FE257A3E9CFE787 /* FIRConfigurationInternal.h in Headers */, - 56CFB0F78F4241687832E811B047ECE5 /* FirebaseCore.h in Headers */, - 5ADE01EE5586FA8594F3DB75A680DA9E /* FirebaseCore-umbrella.h in Headers */, - B6067847F650C51E0C0A102FC9EA5C05 /* FirebaseCoreInternal.h in Headers */, - 402D12CAD8B0BB8AAD2EFC2E595B6574 /* FIRFirebaseUserAgent.h in Headers */, - 2F3E552745CFCBC877CA338221C18E4E /* FIRHeartbeatLogger.h in Headers */, - 45E4F8AC823144637F5B34265592EA9D /* FIRLibrary.h in Headers */, - 25A48C2C415254C3ABB66AA7149C61BF /* FIRLogger.h in Headers */, - E1136139A770DC515348CFFCA91C9C08 /* FIRLoggerLevel.h in Headers */, - 5799EF43314BAA7D376EC8220F8263F1 /* FIROptions.h in Headers */, - D9FADE53EB33170C3BF38A4966D0A289 /* FIROptionsInternal.h in Headers */, - 1386EE91D95678826FD49E96EFB2CEBF /* FIRTimestamp.h in Headers */, - CB15F2D1B35D7886996D48343ECD67B0 /* FIRTimestampInternal.h in Headers */, - 58D0FBF3623C470D9D6CDABDDB991CFB /* FIRVersion.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8B33992900D3494921E10CC3F89C8315 /* Headers */ = { + 1A2024BCE25A33C62313B1131A349D55 /* CwlPosixPreconditionTesting-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 909E48B9D1E55880769DD61D4553D0F0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 24F0ABD3F519733D650BEFCF19064D3A /* Pods-Tests-ObjC-ExampleAppUITests-umbrella.h in Headers */, + 0DC989E3B702C52A41143EADDCCD974B /* IQKeyboardReturnManager-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5445,92 +6071,61 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 91DAD442C88A18BB32CC4DB50209AE4B /* Headers */ = { + 9686DF9B9FB3D169B7E0C3DBB42F215E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 41A9F94221F79F768567880ABCA586E1 /* CwlCatchException.h in Headers */, - DC7C1673D652FFCFB99DE3EF0192519F /* CwlMachBadInstructionHandler.h in Headers */, - 2BF75B8FF1721C5FFBA8DBBD5471E785 /* DSL.h in Headers */, - EA02BC01D06A5457C483C1173C60D396 /* mach_excServer.h in Headers */, - 789F719DDEB3C998DFC3124B9644D736 /* Nimble.h in Headers */, - 077DFACEABBDB01951131AF0E5A173DC /* Nimble-iOS-umbrella.h in Headers */, - 988A0FCBECDCF5B13C0D886E62D70014 /* NMBExceptionCapture.h in Headers */, - 7561F6BE1BCDF661394A621041D4CC65 /* NMBStringify.h in Headers */, + CB0DBBB6E93B92C04B6C460932D8E9D1 /* IQTextView-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 91DB68AA5D619D59E50D784B7C634AD8 /* Headers */ = { + A766C27021DE901018110AAE2418433A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - C4740492FD81799A6CB4A182FA493CAD /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h in Headers */, + F4E59326A708E72CCDC663E47BB47C3F /* DSL.h in Headers */, + 27B97C1F90C47C6679DBF368724DEEFC /* Nimble.h in Headers */, + A0CCB72FBEEA5E29FBF8FB3DF40108A1 /* Nimble-iOS-umbrella.h in Headers */, + 8A481A74BCADC048A3F809F45FA77791 /* NMBExceptionCapture.h in Headers */, + D286791B1009C63E6335FE208486454E /* NMBStringify.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 91E59737E919CC0E4585C603B6C81BFF /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 6B4176B1ABFA9968C0FC146A6D5D4528 /* FBLPromise.h in Headers */, - 9EF4825D24EB3AB2099455C5B1F2401F /* FBLPromise+All.h in Headers */, - 5986B00861524DA2F47725668F38FC75 /* FBLPromise+Always.h in Headers */, - 07EA7E278EE885FDE69A3EEE49BC568F /* FBLPromise+Any.h in Headers */, - 14C357E4F33A7E1108A7532BE932809A /* FBLPromise+Async.h in Headers */, - EA8B94B909023BD1C816677A8281B27E /* FBLPromise+Await.h in Headers */, - 1D865AD0B8E532D1195118B9403BE6CA /* FBLPromise+Catch.h in Headers */, - 121CFD36C956323C6CC28B73CE53D7E7 /* FBLPromise+Delay.h in Headers */, - C541129B72361D5BBC9545E389A15AB2 /* FBLPromise+Do.h in Headers */, - D7C1B07098BF550C80DF1F6347B986D8 /* FBLPromise+Race.h in Headers */, - 81B1DE81A5C16460AC83F4990248FF8E /* FBLPromise+Recover.h in Headers */, - 3C6CF7FED279B7B218DAAAE623F2D8C8 /* FBLPromise+Reduce.h in Headers */, - E15FF6EF7103B7F9FD0CE66D064BC28F /* FBLPromise+Retry.h in Headers */, - CAAED81F55229D69545DCFB2DCAA2885 /* FBLPromise+Testing.h in Headers */, - 05AADC98BDAAD33A7C737F71325183D1 /* FBLPromise+Then.h in Headers */, - 164DDD5B592A2A76DFC0AEA5625468C5 /* FBLPromise+Timeout.h in Headers */, - BA708895A365854AC239AD4EA25CB583 /* FBLPromise+Validate.h in Headers */, - C6589645FEDD92DE1CCA06C30E045327 /* FBLPromise+Wrap.h in Headers */, - 29D04D39C921660F8AAC0199802BD5F1 /* FBLPromiseError.h in Headers */, - 9583009726318E46A3985BCAE969B9C2 /* FBLPromisePrivate.h in Headers */, - E9975338BE2558DBC2A98893E569FD24 /* FBLPromises.h in Headers */, - 23CEBED329A707B3ECB44B70A1EA7B52 /* PromisesObjC-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9E8F90BC80F76C0BC4D96662E5C586A9 /* Headers */ = { + AB5814B9798856B4F2FDE3EE28BF8BA2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 9D163EADC0B8251487A1D15C0DA7A0F5 /* IQTextView-umbrella.h in Headers */, + 92FB58C2D2B11E185216C5D8DEE7065C /* CwlMachBadInstructionHandler.h in Headers */, + 6B6663947381FFBBFE357E4134197C10 /* CwlMachBadInstructionHandler-umbrella.h in Headers */, + 89399D22C8977574686FDA973CC3FF4A /* mach_excServer.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - A129C7CEA2885ABD29ED8B8279228C46 /* Headers */ = { + AEADF33647ADE0A3F99E241B947DBCB8 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - F52ECFB28126020D80B9CD5F4BB2143D /* DSL.h in Headers */, - 8D2759B025D3A48027A72AD41BBA395F /* mach_excServer.h in Headers */, - 4B1DED6EE2B15482E6F39643F166696F /* Nimble.h in Headers */, - A57F3231E7D5B00EA61C5D5E54D5581F /* Nimble-tvOS-umbrella.h in Headers */, - 98F20916199547067B6F7553F3E07750 /* NMBExceptionCapture.h in Headers */, - 3A890EE782CA0BF9EB4B5449819F7E2A /* NMBStringify.h in Headers */, + A819C7C624CF5B0FFFD23076D269B6C7 /* nanopb-umbrella.h in Headers */, + 2673A91E6AFC6B693144EC916708B9A2 /* pb.h in Headers */, + 09A8CA94D3D946B6E3A248495C95E5EA /* pb_common.h in Headers */, + 10EFEBDEEA7241A841CBA5CE3452A60C /* pb_decode.h in Headers */, + DFDB97F16D7C5B6DE5A269DE4F77F4DC /* pb_encode.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - B7F7B5F56CD4C6027D357E8C75CBE8FF /* Headers */ = { + B82B2C99DC662A46836E653DCEE5E9E9 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - D053CA2BCD57090EAB7474A9E4078564 /* IQKeyboardToolbarManager-umbrella.h in Headers */, + F38D19B62343684DAB54E88CDAA6A0A1 /* Pods-Examples-NativeMessageExample-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - B82B2C99DC662A46836E653DCEE5E9E9 /* Headers */ = { + B8ADCC7962F5C866C35412AAB11A754F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - F38D19B62343684DAB54E88CDAA6A0A1 /* Pods-Examples-NativeMessageExample-umbrella.h in Headers */, + F1B87B7D33D09F571175D367346EE2CB /* IQKeyboardToolbar-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5542,33 +6137,63 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C4A8B4093AF9FCC8C9F193BFD70B07E6 /* Headers */ = { + C219D6D6305F7F49DA55E48482AB7E24 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + F56997F464706EB916970ED735C49637 /* FBLPromise.h in Headers */, + C3C97D632903E709B28E2EA08181F897 /* FBLPromise+All.h in Headers */, + 9EE86AD5249D81DE2BC7A1E000D73FEF /* FBLPromise+Always.h in Headers */, + 41850263BC8C5028BF7AA43C1DA451EC /* FBLPromise+Any.h in Headers */, + 4AFE2AA43D013508A40397DC24FF2759 /* FBLPromise+Async.h in Headers */, + 1F3B13CB4D8ABB3F2AD8AE85C72BF328 /* FBLPromise+Await.h in Headers */, + F96BD1B09F2B3DD721D3FEEE769AEB02 /* FBLPromise+Catch.h in Headers */, + B3E625C32A22A235532190F234C5E15B /* FBLPromise+Delay.h in Headers */, + 14470839BDDE9874905A805E5C06BCBA /* FBLPromise+Do.h in Headers */, + 4421EE9436B1F697D69BC77F347B3E99 /* FBLPromise+Race.h in Headers */, + 3C4FEB010213C05BA28D51A0CCB99E72 /* FBLPromise+Recover.h in Headers */, + F80AA9508F6CA5F5910A49122387A9CF /* FBLPromise+Reduce.h in Headers */, + A5E82B417F48470BD0E900BC0D2DBCCA /* FBLPromise+Retry.h in Headers */, + 42C05503E1C6D3964E899A48CA0A9B31 /* FBLPromise+Testing.h in Headers */, + D3887F0E209650EB2E60AF19A824F9A1 /* FBLPromise+Then.h in Headers */, + 1E6E0992BF3458CCEA7F98CBB9ADE2CA /* FBLPromise+Timeout.h in Headers */, + FEE664A26F31F98A005C19D56F8813FE /* FBLPromise+Validate.h in Headers */, + B57E8104767ECB543A4D152D42F0FB14 /* FBLPromise+Wrap.h in Headers */, + 0E0AE17B0067ADB8EDDA24CA8B061DD0 /* FBLPromiseError.h in Headers */, + 17E5817291D1245A9F5B1ECED5A20613 /* FBLPromisePrivate.h in Headers */, + 7451F8CB89E1E04B366DBFF51B829AE0 /* FBLPromises.h in Headers */, + A5211CF301C90EA01848A2B70F61B2F0 /* PromisesObjC-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C3676473AFF382B4ACB3D5C43BE58BC6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 06A600C748A696386910923296F2F5E9 /* QCKDSL.h in Headers */, - 66FD285F97A4253BD00880D9A9858BB5 /* Quick.h in Headers */, - 518EC710BDB399A0D6EE2D1A62C172B6 /* Quick-iOS-umbrella.h in Headers */, - 3C4CAA054FCEC35D95D8B17C71A137AF /* QuickConfiguration.h in Headers */, - 696159B751AF382C468DE8E842CF1067 /* QuickObjCRuntime.h in Headers */, - CC8276627720397415E0668555249E35 /* QuickSpec.h in Headers */, - 86BB8D71F18862245BD8272B7682F5DB /* QuickSpecBase.h in Headers */, + 379092C9902DD6CDF6550A71664139F2 /* QCKDSL.h in Headers */, + 3ABD286C73FE54EC18C5FF02C3156E3C /* Quick.h in Headers */, + 6408EEC4924B8B8B0439489358C47443 /* Quick-iOS-umbrella.h in Headers */, + D49C13B1B0A154A7FB9F41AF45658B48 /* QuickConfiguration.h in Headers */, + 946BEC4ABBA847611C4204CC76C9DBE1 /* QuickObjCRuntime.h in Headers */, + 82CADEA8EA1BDE0CD2922067E51E9A70 /* QuickSpec.h in Headers */, + A32449989D184A085F1CA3CB36E11C59 /* QuickSpecBase.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - CBDAF5AF4182F9DDCC9BEECB6CE12C31 /* Headers */ = { + C83C1DAFBD5AEE15F66013D0B11E71BD /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - D794334E0A95A9F6508CFAF3B50FE585 /* FirebaseCoreInternal-umbrella.h in Headers */, + 01408ED940F0C4BC25688141CDA45895 /* IQTextInputViewNotification-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - CE32801AD3331AA8F1D2E9C5B834FA49 /* Headers */ = { + C8C7A15CA8813ED2A6EA35491F32C67F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - B5D791EE5AAA90EB44F9C4CFE7D41687 /* Pods-Tests-AuthExampleUITests-umbrella.h in Headers */, + 3208575D9DFA94D5D594A6B7E138DD2E /* CwlCatchException.h in Headers */, + 25C31532F1D9885C3494945FC4C0CE80 /* CwlCatchExceptionSupport-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5580,11 +6205,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D7C569495DCBD56B3EF4F96752C0B2C7 /* Headers */ = { + D25FA2F6945B1CDD49031C9A0F2032A3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 09DA178729FFDF543147FD52DE547044 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h in Headers */, + 9A4018F94501CA6ED2440D7D4E0540B7 /* DSL.h in Headers */, + 5E24E5DF2F1B2FED867957864E7669F9 /* Nimble.h in Headers */, + 4E838C65E0C476ED90E68A6D5ADF748E /* Nimble-tvOS-umbrella.h in Headers */, + 9E72E99F084FA5FA24B04C32573A9875 /* NMBExceptionCapture.h in Headers */, + F8C793A2B097EC825C22A2ED89C372DE /* NMBStringify.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5596,11 +6225,43 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DE1E60B45371FD42935B7A797A9B44F9 /* Headers */ = { + E02B7A3EED9485BBF0DC555F7AFAE719 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 9002AF57A91A2FF26C5DE7E2A0604550 /* Pods-Tests-SPGDPRExampleAppUITests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E1E8A0B1F04097D26C517E0FACA89412 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 0927772B94F2E0BEDEC2DA39580C19B2 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EC66DD9488ACCDA2107BD3504F2ED043 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + A1FCE868E7E656F6167DE4E238266930 /* Pods-Tests-AuthExampleUITests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EF83BCF04EF8D58A39B49975D53C8524 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 6F3765FAE3920A18607D719137972E8E /* CwlCatchException-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F1A3FB2954A978FEFE566A85BBAF2580 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 5AFF146CC876F4DAEAE51F32284A36FD /* Pods-Tests-ConsentViewController_ExampleTests-umbrella.h in Headers */, + BC4CF6937F894CC9121B3BAF10AE8D14 /* CwlPreconditionTesting-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5612,6 +6273,41 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F3FA0B1352CADBE4D0FA3DDFDA9F6258 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 22484A83A78FADE7FD2803E90FBDCF82 /* GoogleUtilities-umbrella.h in Headers */, + 26A77BF8C7623E15452A761030FBF733 /* GULAppDelegateSwizzler.h in Headers */, + FD3657B5574A385B80E5BAB33D812F82 /* GULAppDelegateSwizzler_Private.h in Headers */, + AC55A95830B7A04DA3ECF1611E29B082 /* GULAppEnvironmentUtil.h in Headers */, + 5148653BD6608868D5B10E5B48644DDE /* GULApplication.h in Headers */, + E6AB5478CA8EFED9269CD57188F1CE43 /* GULKeychainStorage.h in Headers */, + 03D0213609AF47754608B4D421764EB1 /* GULKeychainUtils.h in Headers */, + E4185AF2689E5D95FAD7F68880B8E91A /* GULLogger.h in Headers */, + 4B6B743CB9C71EB943FEBD4AE1437FE1 /* GULLoggerCodes.h in Headers */, + 39E02AAFE91B74CA651E994A207A32DC /* GULLoggerLevel.h in Headers */, + 949275F4FF38B01BE04B831EC7EF9AFC /* GULMutableDictionary.h in Headers */, + 0CA9FC6CAA57112356FC3437B7C25112 /* GULNetwork.h in Headers */, + 0EF5251B4830B5B176F38213B451319D /* GULNetworkConstants.h in Headers */, + A7B670CE5E2D39F42BD7291265378CEC /* GULNetworkInfo.h in Headers */, + D0A520904D974512E658E557C141C9B5 /* GULNetworkInternal.h in Headers */, + 8297AD82EB8109C3EF5FF70BEEA55088 /* GULNetworkLoggerProtocol.h in Headers */, + 0A0E259F7830642BB6611CACFA1059BB /* GULNetworkMessageCode.h in Headers */, + AB81A114C098F9DAC7432D78CBDC81C7 /* GULNetworkURLSession.h in Headers */, + EEE2B16D2B1AC0A6F2EA7F8A7D3662DE /* GULNSData+zlib.h in Headers */, + 654C6BCFF2B8365ECB3663536F5411E4 /* GULOriginalIMPConvenienceMacros.h in Headers */, + F6CFAE4BBBB445780CFA3A49008BEE87 /* GULReachabilityChecker.h in Headers */, + C7D8E50AC47E760464EADD32051EBD57 /* GULReachabilityChecker+Internal.h in Headers */, + AF588E3FAA2055CC34F0ACA244A41A54 /* GULReachabilityMessageCode.h in Headers */, + 95841BF2D76DDFBBD1CF3853C878E2F2 /* GULSceneDelegateSwizzler.h in Headers */, + C52AD45B6FA277E55F97E41E5135CDD0 /* GULSceneDelegateSwizzler_Private.h in Headers */, + 310BD61B10B942BDF047216298B94909 /* GULSwizzler.h in Headers */, + 7ECB33DE7F4F4C3FB20671F5D7AE957A /* GULUserDefaults.h in Headers */, + ACC6DD35C72F92A1DC646907D0D99E65 /* IsAppEncrypted.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; F64D28AA8D81BFD9E2E12E67C1A665E2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -5628,28 +6324,33 @@ /* Begin PBXNativeTarget section */ 00917DFE344EBD43DB81BA9F4F2BF328 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests */ = { isa = PBXNativeTarget; - buildConfigurationList = 6651899ED36477F3E96BA205C11749CC /* Build configuration list for PBXNativeTarget "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests" */; + buildConfigurationList = 3B269303E283FB706D3DE1F9407A2030 /* Build configuration list for PBXNativeTarget "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests" */; buildPhases = ( - 91DB68AA5D619D59E50D784B7C634AD8 /* Headers */, - 35C16876B9EC72C575A3050C25BCB326 /* Sources */, - D7D9DA463924C08F3CD524FCB249E185 /* Frameworks */, - A2455AD6A1961FF6176C9EB63BC531EB /* Resources */, + 6B5E850D0377D6D2433321A2979F43C5 /* Headers */, + 58E4B1FC8B12F539ADB9AF57EA297D2B /* Sources */, + 6AF6D046D1AF251955E922D8260F707E /* Frameworks */, + 36B1D96F995FB7451D76D04385CE0E3F /* Resources */, ); buildRules = ( ); dependencies = ( - 685270C17043F8E9101F9ABE388E1C12 /* PBXTargetDependency */, - 2BBDCF4A414EE64C12C80BE8BF82C0E6 /* PBXTargetDependency */, - B6F043BD665C0E5E6427F899AA2459CC /* PBXTargetDependency */, - 8CA4F9EBD4E6F637DB4CD770CBB56E4C /* PBXTargetDependency */, - 22058F35D70BAF3ADE9CECE2D817F28C /* PBXTargetDependency */, - 103AC9FD3D3D7340A923E9DD6ECFC5E9 /* PBXTargetDependency */, - 7907FFDA17DA6C0B42962F7930E2C4D0 /* PBXTargetDependency */, - 7AA4BFB773297B44DCF818FE3720DB9F /* PBXTargetDependency */, - 9E1FA52888D52082C190656F8D5D12CC /* PBXTargetDependency */, - AA0D1302F37181F9C28FDB4B6CDBA670 /* PBXTargetDependency */, - 39A1C6E67FBC63FC00BEC802A07C1174 /* PBXTargetDependency */, - 388ED26B4F648345161AE75A1746DA7A /* PBXTargetDependency */, + 8D40A19A6E1CC7553F18972ABF08FA35 /* PBXTargetDependency */, + 7032018AD9BFD6D39C2EA5B4FCA5FCAD /* PBXTargetDependency */, + 04A851B2C1F0422E9150506878F894C6 /* PBXTargetDependency */, + EBE2B51A1FD6473BE0E259E12F8E3D7C /* PBXTargetDependency */, + BA5C4071D2425CBC01B32F46B5D0A7F9 /* PBXTargetDependency */, + BFF0EDAA49180DF0207B3C652889048B /* PBXTargetDependency */, + 7258FCF7646056D29B9AF7B053ECAAB1 /* PBXTargetDependency */, + 285F9DFEC8E718A3FA5A7E3805B18F55 /* PBXTargetDependency */, + 91AB31B827ACEAA6E22FC6ECB706FCF8 /* PBXTargetDependency */, + E486EB12F857DCB86DC0CA317A75E3A0 /* PBXTargetDependency */, + 7B649A0E652D7DF3E544B5ECAAB3CE60 /* PBXTargetDependency */, + 547753A2BB52A4FAE78DF08E9D2A66A5 /* PBXTargetDependency */, + F94C0393AC538C3562FC79FA0DFCE5A5 /* PBXTargetDependency */, + AFB302B8C634C81748F53D26E73B365C /* PBXTargetDependency */, + 6216F8ED2C5D0A78114A0A251C624980 /* PBXTargetDependency */, + B7FF9F6B30FC809AB60388B77DCA6805 /* PBXTargetDependency */, + D6A3563E4F26A5632811F0786A7DEE1C /* PBXTargetDependency */, ); name = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests"; productName = Pods_Tests_FirebaseTests_SourcepointFirebaseDemoTests; @@ -5658,19 +6359,19 @@ }; 020993F16DA5986DACE118349EBCE9E5 /* IQKeyboardToolbarManager */ = { isa = PBXNativeTarget; - buildConfigurationList = 93971A6DD6DB56362395312F11A34F88 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager" */; + buildConfigurationList = 6CE62D9C5C190237F9EDA656415E1F8F /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager" */; buildPhases = ( - B7F7B5F56CD4C6027D357E8C75CBE8FF /* Headers */, - 79B3F14D7442566C872AA43D0DA9D18B /* Sources */, - 53DEF2C0A13A294EE1A6FE101F59AAD5 /* Frameworks */, - 92196C92F536446A9D11AAAA31BB2344 /* Resources */, + 2231DEABFAA9DFF0395E37D0439C847A /* Headers */, + E37C018D16F7A9E23EBB2127E4208FB2 /* Sources */, + 768DA24AC38B3F4FF4E43462EF2D16D1 /* Frameworks */, + 84B027B420323F9A6E4C1C78F14E89B1 /* Resources */, ); buildRules = ( ); dependencies = ( - 7D1A274345DD99569966272E49016D42 /* PBXTargetDependency */, - 57D73AF95BF1A925281C374526E523DB /* PBXTargetDependency */, - C4C09CFD9843806B25D4314B0E105D9E /* PBXTargetDependency */, + FE5734456B2760D22BEA6C779DE58063 /* PBXTargetDependency */, + B6233E26A39BE257B0C37351E0535B65 /* PBXTargetDependency */, + 3B63CD676BFE54AF67782F073B59739E /* PBXTargetDependency */, ); name = IQKeyboardToolbarManager; productName = IQKeyboardToolbarManager; @@ -5679,18 +6380,18 @@ }; 0981F89DB5DA3FFCFFEBDE1F56287054 /* IQKeyboardReturnManager */ = { isa = PBXNativeTarget; - buildConfigurationList = 98047766BC79DBB6ECA0B0077E4DA165 /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager" */; + buildConfigurationList = C96DD47E92A8BE265E306DE07C36E79B /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager" */; buildPhases = ( - 60910FB3907F7ACFB4351505336D8F91 /* Headers */, - 06B45B29865ABDEABE05E62D7980C6BB /* Sources */, - 6AE865F7E3B420E7A49DA10C60BA93F3 /* Frameworks */, - 31B612F1B599272233832271363FDF93 /* Resources */, + 909E48B9D1E55880769DD61D4553D0F0 /* Headers */, + E5E43063781A06C4BAFDDB90C2E8AA70 /* Sources */, + C62A9C83F0EBDACB922F2904AD526C9D /* Frameworks */, + D8D886536BC3686BB5D8DC2B1A637D27 /* Resources */, ); buildRules = ( ); dependencies = ( - 858C67D8145D7035EA1EB1640551E220 /* PBXTargetDependency */, - 63BAC1AE9321D653069F0D6D72756910 /* PBXTargetDependency */, + CD38A3D9AAECFE0FA6882F9BC75CCCB6 /* PBXTargetDependency */, + C58604D9F0BC8FAAEE422C8CF5829668 /* PBXTargetDependency */, ); name = IQKeyboardReturnManager; productName = IQKeyboardReturnManager; @@ -5699,11 +6400,11 @@ }; 1001C16510D946B47CFF8B19DBC0B787 /* FirebaseCore-FirebaseCore_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = D43E41F2AB9F1FD4B4432E2D64D744FE /* Build configuration list for PBXNativeTarget "FirebaseCore-FirebaseCore_Privacy" */; + buildConfigurationList = 7373B65621B275793394FC1FDDECFC0C /* Build configuration list for PBXNativeTarget "FirebaseCore-FirebaseCore_Privacy" */; buildPhases = ( - 99F52F26A04A275FCBB70F8A80CD2CD4 /* Sources */, - 5F072BBF89939E63D6BF638074C86413 /* Frameworks */, - 70B22E23AF98D62994BB741EC76D5816 /* Resources */, + DB4DD89191644B23F8A1499EF3D39723 /* Sources */, + BFCC274DA07CBF4F3CDB760054C16A5D /* Frameworks */, + CEC912571569FA6CC6856385BD71E9D9 /* Resources */, ); buildRules = ( ); @@ -5716,18 +6417,18 @@ }; 12890DE3ABBC2CA295E108358D85EE69 /* IQTextView */ = { isa = PBXNativeTarget; - buildConfigurationList = 909DAEB8C13763B66A8D15CBFAABD157 /* Build configuration list for PBXNativeTarget "IQTextView" */; + buildConfigurationList = 8244633BD3A6491EAF9FE7B565296A1D /* Build configuration list for PBXNativeTarget "IQTextView" */; buildPhases = ( - 9E8F90BC80F76C0BC4D96662E5C586A9 /* Headers */, - 0F4376AC7C259BDB3AA16C3F9A1DFC4B /* Sources */, - A6CA8CD0CA723B6D231520859E24B463 /* Frameworks */, - 9C9A7429ACDEDDC18FFB09EDE6918395 /* Resources */, + 9686DF9B9FB3D169B7E0C3DBB42F215E /* Headers */, + 777DFCEBD1FE285F39F2092772A35344 /* Sources */, + DE76C3657CF9DC6B2F296A1BB6E59358 /* Frameworks */, + 1470DDF01DE9C03DD600DB84AB712567 /* Resources */, ); buildRules = ( ); dependencies = ( - 50AE7765D5EA5F06DA5F8563696B8EFF /* PBXTargetDependency */, - 6EC736537EE291CF0F8206BF44510F47 /* PBXTargetDependency */, + 81BACD5CA40B5EABDCBE6C869C417327 /* PBXTargetDependency */, + 71CE48A48037F7A6FA98F928A2D324C8 /* PBXTargetDependency */, ); name = IQTextView; productName = IQTextView; @@ -5746,11 +6447,11 @@ buildRules = ( ); dependencies = ( - 710BD21371A58B7B2D0B689CE2DAA2F3 /* PBXTargetDependency */, - D761F1261F4D85114191E0E60256A65E /* PBXTargetDependency */, - 448E2884E02EA5B81D686D7550FABC09 /* PBXTargetDependency */, - F031BDDE866677FB3284FF718BF90230 /* PBXTargetDependency */, - AAD24B8A44E7037E09F99777E9718C11 /* PBXTargetDependency */, + B43F4AF5A5D1F56BB4AC18AF3FCE9ED9 /* PBXTargetDependency */, + FF4B8BC468732C1AECE60414C2B88DBC /* PBXTargetDependency */, + 6C164BDD3C6E1BFF076088C7C22237E6 /* PBXTargetDependency */, + BAB82E7223D4D057AAE5DDC0843AC7E9 /* PBXTargetDependency */, + 33AA026C3D09D342F9CA54950CA2E4A0 /* PBXTargetDependency */, ); name = "Pods-Examples-ConsentViewController_Example"; productName = Pods_Examples_ConsentViewController_Example; @@ -5759,20 +6460,25 @@ }; 1A857031BB969C87F331DCDCC1CB6476 /* Pods-Tests-SPGDPRExampleAppUITests */ = { isa = PBXNativeTarget; - buildConfigurationList = F126536C3E034489CE5D8F49E465A651 /* Build configuration list for PBXNativeTarget "Pods-Tests-SPGDPRExampleAppUITests" */; + buildConfigurationList = 6512C9FAD9515EB626377761483824F7 /* Build configuration list for PBXNativeTarget "Pods-Tests-SPGDPRExampleAppUITests" */; buildPhases = ( - 612DF0BACC44E169018120F56174FE17 /* Headers */, - 05889C4844FCA5AFF4DB5AC336FB5F6E /* Sources */, - F63B4591ADEF12A5CF6B8C60B69160AC /* Frameworks */, - E0FD9B91B38A9E8D05B4925B52A57699 /* Resources */, + E02B7A3EED9485BBF0DC555F7AFAE719 /* Headers */, + A969F0E9AB57461050B5FF8DF5E8BD58 /* Sources */, + 3D02115CC54E7A89E8801BE807F1A499 /* Frameworks */, + 3D3191F22CDF588A699E361861034C12 /* Resources */, ); buildRules = ( ); dependencies = ( - C06313A2780A02C59A4CCD28FBB91961 /* PBXTargetDependency */, - 99BF9BB2A9E4B625BB861D67D98BC0A3 /* PBXTargetDependency */, - 93FD4A3BB04FAFA3F99D86D7E88B309F /* PBXTargetDependency */, - D08535D3153E74A94F844E84C9FA2844 /* PBXTargetDependency */, + 3B6123B79DEB06E0A31F47FB201AC2A9 /* PBXTargetDependency */, + 1ABBCC1DF42A96371A604EFCDC8F1960 /* PBXTargetDependency */, + CF6F5EB013E219A3E0A349448FB19178 /* PBXTargetDependency */, + 9B9A3D435A8AA8AF3CDAC4F0117A1D8D /* PBXTargetDependency */, + 7A6E00C1559043F39108C9D1DB7BF17A /* PBXTargetDependency */, + 967BCBADC2670AEE9B8B52E40529FE3F /* PBXTargetDependency */, + E572771101D6FF72FFD6A1A1FDF5F71E /* PBXTargetDependency */, + C6E6B39797ECED7F922D0C48DA40A09A /* PBXTargetDependency */, + F45C27804A971C54DE71617F6AB0FEDA /* PBXTargetDependency */, ); name = "Pods-Tests-SPGDPRExampleAppUITests"; productName = Pods_Tests_SPGDPRExampleAppUITests; @@ -5781,11 +6487,11 @@ }; 1BFBEDBF7E03729D43C96530EE190825 /* PromisesObjC-FBLPromises_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 983D34EB08914D76B1A22AD1D9EDDAC5 /* Build configuration list for PBXNativeTarget "PromisesObjC-FBLPromises_Privacy" */; + buildConfigurationList = 584139164D6737A69E7A1563180B2BD5 /* Build configuration list for PBXNativeTarget "PromisesObjC-FBLPromises_Privacy" */; buildPhases = ( - AA298987C069D52D7FC74CF599CA5509 /* Sources */, - 76ED191D770F8422137375EDE2E4CB52 /* Frameworks */, - 70DA0952A0F848275983D429A2045C0B /* Resources */, + 8EC5632F94A27E3B473E5AF41A9C46C4 /* Sources */, + 94D9A52BA054208A73780BC730F35D83 /* Frameworks */, + 54A034C1252A1504BB66E8C821F5FB11 /* Resources */, ); buildRules = ( ); @@ -5808,10 +6514,10 @@ buildRules = ( ); dependencies = ( - 7250460E38604B9E9175D668D1DBB153 /* PBXTargetDependency */, - 2E0F6B54FCDB2A38FC869B0FA099A4EE /* PBXTargetDependency */, - F032E4852DD28BE30189EB6E5A4E1D4B /* PBXTargetDependency */, - 7282941714C4A830CF6E17C6AE6B01FB /* PBXTargetDependency */, + 549E803CF8AC3B97AFC095FB7EFB3F9D /* PBXTargetDependency */, + 4AED70B3157D5E677F47C1FEF7549487 /* PBXTargetDependency */, + 24A2D233C1596674319520E589C9345E /* PBXTargetDependency */, + B9F790FA1204FCB0B6C93531D40E9496 /* PBXTargetDependency */, ); name = "Pods-Examples-AuthExample"; productName = Pods_Examples_AuthExample; @@ -5838,18 +6544,18 @@ }; 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */ = { isa = PBXNativeTarget; - buildConfigurationList = 987D8259EF202FAFACC4D7E254C4165E /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */; + buildConfigurationList = FBF2F7551D15B3FBAB05A47254E9F869 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */; buildPhases = ( - CBDAF5AF4182F9DDCC9BEECB6CE12C31 /* Headers */, - 3C79EA92060C50461ACE427FA51A249F /* Sources */, - CE03BF3C41945475527AC5CA72564B97 /* Frameworks */, - BA36BCC924A9C18C0A244F17D07BDDEF /* Resources */, + 5324B42C4067ACE6FC425246829D2B36 /* Headers */, + FC2DD432DAD8855EAC92D22A02C37AA4 /* Sources */, + 4586B31D5DDFC2E92F122F59FE3FFBF2 /* Frameworks */, + 54794DD9C766F105175CCA8DEC02F88F /* Resources */, ); buildRules = ( ); dependencies = ( - B33EAFC649C898F76249376EBFDFEA26 /* PBXTargetDependency */, - 3B31978996E33993615D0BEB3AB7044A /* PBXTargetDependency */, + 900A9C1E9BDB433E8DC18415FFA96ABF /* PBXTargetDependency */, + 28524104158BAC9D84C7DBE21FC216CA /* PBXTargetDependency */, ); name = FirebaseCoreInternal; productName = FirebaseCoreInternal; @@ -5858,18 +6564,18 @@ }; 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */ = { isa = PBXNativeTarget; - buildConfigurationList = 7536015A8646CCC4479BDD18C4E9F962 /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification" */; + buildConfigurationList = 7271A8AF871EE482A86F0F6A5D5FAF43 /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification" */; buildPhases = ( - 18499C00597E22D2902DB2E3C448AF66 /* Headers */, - 315701F99A74C2C8E842520F71A9B607 /* Sources */, - 4431423263674A223853BD604A8C0020 /* Frameworks */, - 5C7E92A537D7F1B1F6672D2F6C613536 /* Resources */, + C83C1DAFBD5AEE15F66013D0B11E71BD /* Headers */, + 4313F6C1087CE72D0B6D0ACBDF17C7EA /* Sources */, + C72BD6F0A91BCDBBE181B375EC3A1544 /* Frameworks */, + BC6780DEAA16C85DEA9909CC95CA5059 /* Resources */, ); buildRules = ( ); dependencies = ( - 0869AE040474FDCE4A13363D2F18B62D /* PBXTargetDependency */, - CE37172B8A79D9E5CE13AC4B654CBB79 /* PBXTargetDependency */, + 34E7D091DD16CC14BDBC9DA4E28A8B5B /* PBXTargetDependency */, + 8E8EBB43284E83DBEEA09348876304E0 /* PBXTargetDependency */, ); name = IQTextInputViewNotification; productName = IQTextInputViewNotification; @@ -5878,12 +6584,12 @@ }; 28BE3303E3F4ECC2BDF79B1D886D2E74 /* Quick-tvOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 09E991F886AC072079C7F8B7E08C5B23 /* Build configuration list for PBXNativeTarget "Quick-tvOS" */; + buildConfigurationList = 257CB04BA79C2D718D4AC1E76481EFA7 /* Build configuration list for PBXNativeTarget "Quick-tvOS" */; buildPhases = ( - 087C3D082F3F5DCB46B35BE201752CE7 /* Headers */, - A121E394E27D188A49651560FC8DE6C8 /* Sources */, - 434F6983A890594D0B5925D63AE6D800 /* Frameworks */, - 53330CC7DEB76CBD41C10CB7DA7EF47F /* Resources */, + 55501579E486BF2CF2A5C3F9DF7B9072 /* Headers */, + ADFBFA398F32EF1517D2524A1D298B7F /* Sources */, + 5EA1CBB580A88C07A2F9994A2C1A909D /* Frameworks */, + A8F7923089DFF6670C6DA7857901512E /* Resources */, ); buildRules = ( ); @@ -5896,11 +6602,11 @@ }; 2949783F7EDB27AD4666B5427B63DC79 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = D99294984B3379977E6B4F611983318F /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal-FirebaseCoreInternal_Privacy" */; + buildConfigurationList = 0DF35521CC8895B60E55B132E01EC6E3 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal-FirebaseCoreInternal_Privacy" */; buildPhases = ( - 3D7D2660AE3E196072D83A9739F02740 /* Sources */, - 6E89B01FA1E4FF5EB6F4E6F3C5EF8410 /* Frameworks */, - 5B3E28E81F3EDD745D188AD84D4C31CB /* Resources */, + 6E0091E4ECEB48F43FD673C8B4CD3BB1 /* Sources */, + 26376FA8601049B60F39D906C5A257BD /* Frameworks */, + 47CD91EF908FBD382254397D35E7456A /* Resources */, ); buildRules = ( ); @@ -5913,11 +6619,11 @@ }; 2B8FF445A5162845FAB9EC00FC92B694 /* IQKeyboardNotification-IQKeyboardNotification */ = { isa = PBXNativeTarget; - buildConfigurationList = 71FF6A332936CF1934C4BA30A1C18FCC /* Build configuration list for PBXNativeTarget "IQKeyboardNotification-IQKeyboardNotification" */; + buildConfigurationList = 486BDD66DBDF5FAB3ACB3C712F8DA481 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification-IQKeyboardNotification" */; buildPhases = ( - BB65154AEBC0F25D35D3DB964B701B8B /* Sources */, - D4CC4E4DC4CEDDD884A659A4B164B46D /* Frameworks */, - AFB96C15DCE61231BA8426CCEDBCD89F /* Resources */, + 438EC022B8EE814DC03BCDD703AAAD2E /* Sources */, + 3654099DF15C121851622091E2B4DB65 /* Frameworks */, + 038158E00E3BD4614619FCE1517297BF /* Resources */, ); buildRules = ( ); @@ -5930,17 +6636,17 @@ }; 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */ = { isa = PBXNativeTarget; - buildConfigurationList = E02DBD171E54BC4C3C3FE1ADE7A5902E /* Build configuration list for PBXNativeTarget "PromisesObjC" */; + buildConfigurationList = 99E30F74ACFEEF95AE57851BA6C5BF83 /* Build configuration list for PBXNativeTarget "PromisesObjC" */; buildPhases = ( - 91E59737E919CC0E4585C603B6C81BFF /* Headers */, - 47EC49A07F75BD222AF0C2DDC374338C /* Sources */, - 8A185835F7E89D308B72119C68C7FFE5 /* Frameworks */, - A3294EA8D1DDA286D6F37627025B4FBD /* Resources */, + C219D6D6305F7F49DA55E48482AB7E24 /* Headers */, + 37874208BF93ED050FD0300287F0342A /* Sources */, + 40572B615C6B4FBEDB33A62E175DB37D /* Frameworks */, + F7F43A67A0FF335196A76FEE1E7A802B /* Resources */, ); buildRules = ( ); dependencies = ( - 9421BFD6BD977C5476C9577A4B729B8B /* PBXTargetDependency */, + 0161926CB0B89E977B5D846E981DEF69 /* PBXTargetDependency */, ); name = PromisesObjC; productName = FBLPromises; @@ -5959,34 +6665,72 @@ buildRules = ( ); dependencies = ( - 58D6A471133F128B6B04E72CA0F9D6D6 /* PBXTargetDependency */, - 5CC2570A19A21AA490D5DA6714BC061D /* PBXTargetDependency */, - C50304B00884B308AFF48AD95CBE1A6C /* PBXTargetDependency */, - FF8B3296875A70022E392ABB74669668 /* PBXTargetDependency */, + 873D9B19C821ADD71579ECE2BB496BC5 /* PBXTargetDependency */, + FFDB195C8B26840623CC1A5018EBAA27 /* PBXTargetDependency */, + 5AE1945BF6F4DD72C7A3B84E594ED88C /* PBXTargetDependency */, + AD4700B18A9E64DA2E8FDAE373646150 /* PBXTargetDependency */, ); name = "Pods-Examples-NativeMessageExample"; productName = Pods_Examples_NativeMessageExample; productReference = C7D0A4151C95D4FBAD32B247F044F933 /* Pods-Examples-NativeMessageExample */; productType = "com.apple.product-type.framework"; }; + 308B5C440C446909122081D367A27A8F /* CwlCatchException */ = { + isa = PBXNativeTarget; + buildConfigurationList = A5C3E29C57F267050344FDDC39AA7BE0 /* Build configuration list for PBXNativeTarget "CwlCatchException" */; + buildPhases = ( + EF83BCF04EF8D58A39B49975D53C8524 /* Headers */, + 4EE2018546C55CDEE07F53AAD939B265 /* Sources */, + 237C978329FEC27D73C6ABBA809DBFD2 /* Frameworks */, + FC6361D286EBB0DA92ADBDEB35734173 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 5A68C486375EB3F183E2C95D168367A1 /* PBXTargetDependency */, + ); + name = CwlCatchException; + productName = CwlCatchException; + productReference = E0BC8BB0FE4725CF87EB0A9F5D400FD6 /* CwlCatchException */; + productType = "com.apple.product-type.framework"; + }; 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 4B1F6A48B86F0990C88EB514A2514C1E /* Build configuration list for PBXNativeTarget "Nimble-iOS" */; + buildConfigurationList = 11405934BCFCBD5C2A15D6FFA2644619 /* Build configuration list for PBXNativeTarget "Nimble-iOS" */; buildPhases = ( - 91DAD442C88A18BB32CC4DB50209AE4B /* Headers */, - 806C40ED6BD8E50C701B551EE4566385 /* Sources */, - BE3DDF9C4932E813F78EF44711868611 /* Frameworks */, - C2A28A17614D586D62A7A4EDC91C8B39 /* Resources */, + A766C27021DE901018110AAE2418433A /* Headers */, + CADDEB41E08E05C54DF1A5637E6FBA45 /* Sources */, + C8B71FBCC124EB5CC27A107EF98CF99B /* Frameworks */, + EA7C8E4F8C1C7A4E4307D78216828A20 /* Resources */, ); buildRules = ( ); dependencies = ( + FA876FA559999F8513DFF7907A6D3F57 /* PBXTargetDependency */, ); name = "Nimble-iOS"; productName = Nimble; productReference = C2FCA34B3522D944BAA3DC6A57D99686 /* Nimble-iOS */; productType = "com.apple.product-type.framework"; }; + 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */ = { + isa = PBXNativeTarget; + buildConfigurationList = 8AC46CF02836F734776D62A2C6470190 /* Build configuration list for PBXNativeTarget "CwlMachBadInstructionHandler" */; + buildPhases = ( + AB5814B9798856B4F2FDE3EE28BF8BA2 /* Headers */, + BA346F0FFC470A132976F0A403F623DA /* Sources */, + 560FB6E6B173D97F7060F16641CAA89B /* Frameworks */, + F4DC0D21914A7CF7A5E411864B41FF4B /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CwlMachBadInstructionHandler; + productName = CwlMachBadInstructionHandler; + productReference = E1176A8E7C8F4162FFCA404BE6EEBB1C /* CwlMachBadInstructionHandler */; + productType = "com.apple.product-type.framework"; + }; 3E73ED39761329414C06DD4486C5058E /* Wormholy */ = { isa = PBXNativeTarget; buildConfigurationList = FD97DC7A1C9AF3E208869382240A78D0 /* Build configuration list for PBXNativeTarget "Wormholy" */; @@ -5999,7 +6743,7 @@ buildRules = ( ); dependencies = ( - 51F4EFDA6E28EC322E1D4E2F5BF49CE6 /* PBXTargetDependency */, + 275A556D3A3C2644B3A911B43C332F0E /* PBXTargetDependency */, ); name = Wormholy; productName = Wormholy; @@ -6008,11 +6752,11 @@ }; 3EB14444A17F9D4F1F697F7C1FF32245 /* FirebaseInstallations-FirebaseInstallations_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = BACB7AC52B9EADA6FB2025C4D66F178A /* Build configuration list for PBXNativeTarget "FirebaseInstallations-FirebaseInstallations_Privacy" */; + buildConfigurationList = 898CA5EFF2E0150911B41009E0516A20 /* Build configuration list for PBXNativeTarget "FirebaseInstallations-FirebaseInstallations_Privacy" */; buildPhases = ( - CB11B6FBD1B16CA9836846746FE8521B /* Sources */, - 2328BE003AE93D87F33F8F74D7CC5FBA /* Frameworks */, - 1E8531FCF07D3B15913A1B21C8EEDE2C /* Resources */, + 09213BF2FC1623B0E10048F02D295EA8 /* Sources */, + 6DB090D3625DF5A0A943B097B684FAFC /* Frameworks */, + EE328A3063F3B93D42304EEB0BCC7D41 /* Resources */, ); buildRules = ( ); @@ -6025,28 +6769,33 @@ }; 41386670AD7EA3EED1F6C1A4E29E060B /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests */ = { isa = PBXNativeTarget; - buildConfigurationList = 395576034431955DA658B0C4B8BE2043 /* Build configuration list for PBXNativeTarget "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests" */; + buildConfigurationList = 97611EFAC8B8B3108E3DE58450DFEC61 /* Build configuration list for PBXNativeTarget "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests" */; buildPhases = ( - D7C569495DCBD56B3EF4F96752C0B2C7 /* Headers */, - 7E6559CB6699A2F00889EEF53A22205F /* Sources */, - 1256C88D936D3F16EDD74DABEFD89068 /* Frameworks */, - 52946A1027B33257BAD7E2706DF8BB9E /* Resources */, + E1E8A0B1F04097D26C517E0FACA89412 /* Headers */, + AA8CDF4988ACF9FB51812463477241BD /* Sources */, + 7AA9CE2D849E71D1CE434FA6A1480EE0 /* Frameworks */, + DD37CCD74F0A2EBEFFCA3D043AC0B3C0 /* Resources */, ); buildRules = ( ); dependencies = ( - 3037B7C1460470557CC78FD29C463307 /* PBXTargetDependency */, - 2201177B0F2226F21E8030F7D0A327AC /* PBXTargetDependency */, - 32CC5A142D3DD94A301929CB2D29A098 /* PBXTargetDependency */, - 97C2ED3B1B601C1BE346DFB21A65D90B /* PBXTargetDependency */, - 74E437E375B3DEAD110B98AF12E52EDD /* PBXTargetDependency */, - C4DBA618B4EE4D37FF47FC4910BD7405 /* PBXTargetDependency */, - 4E778DFD99B7D7E273A8FF4DFFE46A6F /* PBXTargetDependency */, - C3A3999F82DAD77672C78BAF3D3CCB7B /* PBXTargetDependency */, - AFC68C764D15690985C85FA2B17BFA1E /* PBXTargetDependency */, - E294F16865FF44DFB6D54F08FE53E224 /* PBXTargetDependency */, - 7B25402904B9C4FBFB410B9B8EFDD33C /* PBXTargetDependency */, - DCAAFC5BC2B96F3C298DB7D66108D3D4 /* PBXTargetDependency */, + 2CF004C850451E5D282AE15D578479CB /* PBXTargetDependency */, + C4DBE24AD383A405FEA227E58FAC4C3E /* PBXTargetDependency */, + 50E2FBD45DFB71F3477C6507B4738827 /* PBXTargetDependency */, + 967CF81DE76D7B163F5977DD694C9B75 /* PBXTargetDependency */, + FA77D4AF9372B865829614D83E36B131 /* PBXTargetDependency */, + 12C6A5AAEDF9FE2BD91CB9F0681CF5A0 /* PBXTargetDependency */, + B9E3C3975EBACA25402657897E2C7383 /* PBXTargetDependency */, + 12F2EE3DD37624CB384DDDB5FF0125F3 /* PBXTargetDependency */, + 3C77440D7F194776F95176990578B9DC /* PBXTargetDependency */, + 6941983619C754F210B3F425CFA5D1F2 /* PBXTargetDependency */, + 6C3AFB25DD0F253AA4CB180AF8DB5064 /* PBXTargetDependency */, + 6DD3333F4FD7151B39E82F6706B6A016 /* PBXTargetDependency */, + 79A01E215082614E3EA6081C65EA6D96 /* PBXTargetDependency */, + F381DED8F54682649181BA2363DF0C44 /* PBXTargetDependency */, + 453CE114AE61603BD1959B7C9F8DB1F2 /* PBXTargetDependency */, + C74B1EBA518E93DB92BA3E12B0C54DF0 /* PBXTargetDependency */, + 025CDD6809F8D0A10DD27ED8531039AA /* PBXTargetDependency */, ); name = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests"; productName = Pods_Tests_FirebaseTests_SourcepointFirebaseDemoUITests; @@ -6055,19 +6804,19 @@ }; 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */ = { isa = PBXNativeTarget; - buildConfigurationList = CDEC5C3FCE8085803CAB5E815B29B27B /* Build configuration list for PBXNativeTarget "FirebaseCore" */; + buildConfigurationList = 6A21E486CD1D6FADF816EDED6A7FF6EF /* Build configuration list for PBXNativeTarget "FirebaseCore" */; buildPhases = ( - 86F5A461B384FC2BF2C676B2601C04EA /* Headers */, - C493EB93D6DD1D7BD3197CD4A612F419 /* Sources */, - A2F66768AFB52C232404143825B7E34D /* Frameworks */, - 7F8D2C2E39F54CF2E70FC3BC6836F7EE /* Resources */, + 28D3F297996E2D31D6BACF92F952EC9C /* Headers */, + 43AAED685D79A323AA2522D7983F67F9 /* Sources */, + 6491404F2F73F57F2611028F216781B8 /* Frameworks */, + EC16E8764425D58664210F5E9C8693A5 /* Resources */, ); buildRules = ( ); dependencies = ( - 63E8B4FC059B169C360879638CCB0182 /* PBXTargetDependency */, - 8C7AB2F2B17E52C2F91D55C41B2BC164 /* PBXTargetDependency */, - F4E74E7ED18ED8CCCDC5CF282268F9BE /* PBXTargetDependency */, + 575E0100BE19865CD7868774B175B742 /* PBXTargetDependency */, + 05832344E8A5209A1C3FA0D5FD4A72D6 /* PBXTargetDependency */, + 5DDD4CB22B521340839000410AF418E4 /* PBXTargetDependency */, ); name = FirebaseCore; productName = FirebaseCore; @@ -6076,11 +6825,11 @@ }; 4502C7427440BEB17A50C0BF6E638A85 /* IQTextInputViewNotification-IQTextInputViewNotification */ = { isa = PBXNativeTarget; - buildConfigurationList = F85D2CA8BD4AF8CF350B63803ADD3CEF /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification-IQTextInputViewNotification" */; + buildConfigurationList = 79112FA6765628ED10F3B221D35A2037 /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification-IQTextInputViewNotification" */; buildPhases = ( - 12E8F81045AD4CBC05DD24088ACB81FC /* Sources */, - BD2B5DB25813C353D5401BD691A7742D /* Frameworks */, - 89E09F1DCC0979524A7386C8AC7CED6E /* Resources */, + BD07B3042122306A2AAD91496D89E760 /* Sources */, + 000744A22F056D1ACFFF53D76DA66D07 /* Frameworks */, + ABDD94A4D5B1A728B1FDC3C6A9C6C17F /* Resources */, ); buildRules = ( ); @@ -6103,18 +6852,18 @@ buildRules = ( ); dependencies = ( - 865B717FE1316B1B268321DD012DEFAC /* PBXTargetDependency */, - D30DE9167547EDC232B6D906D0566DD3 /* PBXTargetDependency */, - 329318F977AFBCF9C2D9F8AFF933E276 /* PBXTargetDependency */, - 538734ACA9784938A6E8D4B96D306017 /* PBXTargetDependency */, - 31997C4836BEFE427631DC1387733EB3 /* PBXTargetDependency */, - 3373A895487D842DA034AFDD8B580D50 /* PBXTargetDependency */, - 7C2F7C277A83A3D72913109C557EBEDA /* PBXTargetDependency */, - F196BC9AF8ED9C5F10F19A72AA6ED8EB /* PBXTargetDependency */, - AE2FFAB5ABAF43A39EAB5427956F081E /* PBXTargetDependency */, - 37CEE26A69C9D2EA19BB55A464A58526 /* PBXTargetDependency */, - F27B7781A4A834C51169911EE7709B8D /* PBXTargetDependency */, - B81DC90CBF3899C4308DABA362285BE5 /* PBXTargetDependency */, + E089603DED3116AFF0EBF2C6FA807C35 /* PBXTargetDependency */, + 135514326C96FF72B02A8D025ACD8E32 /* PBXTargetDependency */, + 5F2A125CFA47561B0F62D11EFA31FBDD /* PBXTargetDependency */, + F72A87A5DBA4B896DD5271C188F5AED7 /* PBXTargetDependency */, + 4950CB0D090DC7A1B2EFC61B50973238 /* PBXTargetDependency */, + 2723A42D84F2D2890CEB143F85911502 /* PBXTargetDependency */, + 08F9A089A3B6E8A0FF4640E92B5A4C4F /* PBXTargetDependency */, + E324064A76F5E58570B5D4A50CA2DBC5 /* PBXTargetDependency */, + 496CB72D766E14FB1415D814AA1C4DC6 /* PBXTargetDependency */, + 0D0AA8CF8029B773F064E5ECBC5F0EB0 /* PBXTargetDependency */, + 81DD8805EDD1A7BD63EF56065A775858 /* PBXTargetDependency */, + 8A366EA391A40C331C0480265A5BE22C /* PBXTargetDependency */, ); name = "Pods-Examples-SourcePointMetaApp"; productName = Pods_Examples_SourcePointMetaApp; @@ -6123,11 +6872,11 @@ }; 55522A91938FF505CFEBEAD2DD85AE2D /* nanopb-nanopb_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = A7D3250012D37E95618B41252E2FA78C /* Build configuration list for PBXNativeTarget "nanopb-nanopb_Privacy" */; + buildConfigurationList = D99C2FEB34DC0FFE7CC96B41DE3ECD52 /* Build configuration list for PBXNativeTarget "nanopb-nanopb_Privacy" */; buildPhases = ( - 065450C249EA8AA2E22F615A2401D4A8 /* Sources */, - 4FC6350ACAB5C0E10FBE6A98F3D26303 /* Frameworks */, - 9F0558318E52326DB30A4A5B193069AA /* Resources */, + 808DF4FFAEC10E89279706577BA22300 /* Sources */, + 48699882B71F910BD7EC1AC8932B936A /* Frameworks */, + E128BA118583D27F2737D354591CCD00 /* Resources */, ); buildRules = ( ); @@ -6140,11 +6889,11 @@ }; 5D0718052BFEE502C9D9BEC44BDCFA76 /* ConsentViewController-tvOS-ConsentViewController */ = { isa = PBXNativeTarget; - buildConfigurationList = 770CA9938956F6B38BBC9D59B8BD1285 /* Build configuration list for PBXNativeTarget "ConsentViewController-tvOS-ConsentViewController" */; + buildConfigurationList = A15181D4FC3350625E622B5721FFEE60 /* Build configuration list for PBXNativeTarget "ConsentViewController-tvOS-ConsentViewController" */; buildPhases = ( - B65AC51B7984B1D54A60486A2A36D195 /* Sources */, - 6956FA19294717D8CC5759C13C9773BC /* Frameworks */, - CF01B4D92CD99FCCF854223ADDBCC200 /* Resources */, + E3AC4802C334019797172D48F471062A /* Sources */, + C5765F1338BEAC2F44A2331E1F15FDEC /* Frameworks */, + F2FB2D1AD54748C77F7BC0783FE38621 /* Resources */, ); buildRules = ( ); @@ -6157,11 +6906,11 @@ }; 5FF1A58DEEC5DB749FCD6C120B97CC82 /* GoogleUtilities-GoogleUtilities_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = FEB284E8012F3FFD8996CCBC6DBF356D /* Build configuration list for PBXNativeTarget "GoogleUtilities-GoogleUtilities_Privacy" */; + buildConfigurationList = AD8520DF4CD939F3DE9594BB44260177 /* Build configuration list for PBXNativeTarget "GoogleUtilities-GoogleUtilities_Privacy" */; buildPhases = ( - 586F417D02DDFB29A0BA3B12B9E644B0 /* Sources */, - A8669C07FE629DA708F2252940375223 /* Frameworks */, - 4AC7E532E8AB6C5DB8867782E3B34FA6 /* Resources */, + 5A76977681B168FA1CF3E22D1263B8B9 /* Sources */, + 55EEE6BEC89AB4B4E0B4A8F62E92A16A /* Frameworks */, + 78B337D0DDCBCDD88A3B957D339723B7 /* Resources */, ); buildRules = ( ); @@ -6174,11 +6923,11 @@ }; 7C5613175BBC4BF67E36DB4FBEBC01D0 /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */ = { isa = PBXNativeTarget; - buildConfigurationList = 40EBE4D20BFACA90C735122C8EC439E9 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager-IQKeyboardToolbarManager" */; + buildConfigurationList = 433737C2FF9F1D1A1916E4C80A7EA0D1 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager-IQKeyboardToolbarManager" */; buildPhases = ( - BB621F355FBC8F370CEB11D5FBB91CA7 /* Sources */, - 0493A780470523316FA37A7DB223699E /* Frameworks */, - BDF8D8A1A3EA9CCF243252893382DD5A /* Resources */, + D2B4B6C36824E75709B3E039BFEEA15D /* Sources */, + A9CC4CBF4597D2F8FB86996E644391A1 /* Frameworks */, + 126A45DF7B706E3570AB273FDC2FE256 /* Resources */, ); buildRules = ( ); @@ -6201,8 +6950,8 @@ buildRules = ( ); dependencies = ( - 0BB6747E1DFD069833D647EDBA1EBFC1 /* PBXTargetDependency */, - 1ACDE135B3954A17AF473844A2A4BCBB /* PBXTargetDependency */, + 2B27F3C24B500C1A990C12374F3317BB /* PBXTargetDependency */, + 13F3854DCB5D2E5307F3011594368E0A /* PBXTargetDependency */, ); name = "ConsentViewController-iOS"; productName = ConsentViewController; @@ -6211,20 +6960,20 @@ }; 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */ = { isa = PBXNativeTarget; - buildConfigurationList = BBDF651C446E01EF975956A0ED7286F4 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */; + buildConfigurationList = 2BBC4D609AAC3EB076227051A51C2317 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */; buildPhases = ( - 840C9F154A4AEE321A9E0531AEDE915C /* Headers */, - 35559F29ADCC06A78EB228D3537F64A8 /* Sources */, - A677777E40AFA2E04F4EB9028544D2DC /* Frameworks */, - 11D3505BF48F1295D7E83ED7EED6C9E3 /* Resources */, + 01C512089410C6EFB3BBA9A31780CE7D /* Headers */, + 20AE7DC875AD08577C3703D039EF1560 /* Sources */, + D4596A33CC8E7284C36A9A6E4D8C8E41 /* Frameworks */, + 40CB4587FDDCE268CCAE11F956BB0AC3 /* Resources */, ); buildRules = ( ); dependencies = ( - 0895C1CE52F034018D464063C3088838 /* PBXTargetDependency */, - 52A2E6637E2B57BDD93BA10F25FA3EB5 /* PBXTargetDependency */, - 91CE4F14853E55BC9BD7CCC0E173D6B7 /* PBXTargetDependency */, - 0A4CB72D6F8ABCCF0092426AE22C1215 /* PBXTargetDependency */, + D93F408C1C76C40F3A5123975F7E1C08 /* PBXTargetDependency */, + 37E5E6E075B3A94D4B01DB4B551552E5 /* PBXTargetDependency */, + 404E553E56929502E1C60237DBB3AB85 /* PBXTargetDependency */, + A4FBEB25F2C2D0724307D8AF81C08E65 /* PBXTargetDependency */, ); name = FirebaseInstallations; productName = FirebaseInstallations; @@ -6233,11 +6982,11 @@ }; 88810798DA63A2F6611B0970EA276DEC /* IQKeyboardReturnManager-IQKeyboardReturnManager */ = { isa = PBXNativeTarget; - buildConfigurationList = 07A0C87225A782E68EACDCF8F49D901A /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager-IQKeyboardReturnManager" */; + buildConfigurationList = 401DBC16ED3825ED5C7AC8777548FE91 /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager-IQKeyboardReturnManager" */; buildPhases = ( - 5C78F13873D1ADBD2132F25F813D6D53 /* Sources */, - 6FF33B3FCF0E21C5594B2E4429C6C373 /* Frameworks */, - B11429D6FF653568866F7B239C45ECD8 /* Resources */, + 30B935076EFCF22BADA8B2DA35DD121D /* Sources */, + FCEA13C9055643FE22634A8599C28503 /* Frameworks */, + 0DA154C1E129BD364DD6533E4ED21EAA /* Resources */, ); buildRules = ( ); @@ -6250,12 +6999,12 @@ }; 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5A32F91CAAA299E14AE16007D70F5BAA /* Build configuration list for PBXNativeTarget "Quick-iOS" */; + buildConfigurationList = 8717ED24B5ADB091C4F7A536B88C1955 /* Build configuration list for PBXNativeTarget "Quick-iOS" */; buildPhases = ( - C4A8B4093AF9FCC8C9F193BFD70B07E6 /* Headers */, - F9329A1BEAFF8C408789220F56C781BB /* Sources */, - F1EEC1E77859553ACF485270880FCEF5 /* Frameworks */, - 5B6641E00B96880BD06C28E9E4106498 /* Resources */, + C3676473AFF382B4ACB3D5C43BE58BC6 /* Headers */, + 575A569CDE16488F640BFBDD72C701BA /* Sources */, + 97734AF23BAFDD9059940BB984031C26 /* Frameworks */, + FE6A983F752EE54B32D4EB310D49553D /* Resources */, ); buildRules = ( ); @@ -6268,17 +7017,17 @@ }; 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */ = { isa = PBXNativeTarget; - buildConfigurationList = F4810002DB77B51144466A59D46D6DB6 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; + buildConfigurationList = B30C652DAAE17BC97480108EB67250A0 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; buildPhases = ( - 08A26DA1E91428ED683BBD52772BEE4A /* Headers */, - 276C07C77B25A9976A8329D86C8AC7D9 /* Sources */, - E2CD45C2F52E5AA7B9FF0944DFB3DE28 /* Frameworks */, - EFB878584A4E92B6B83157DD3FFA75D9 /* Resources */, + F3FA0B1352CADBE4D0FA3DDFDA9F6258 /* Headers */, + 89CAC34AD43FC7F99A67F1FE36594F44 /* Sources */, + B846584335CD0B5FA518D2859435421F /* Frameworks */, + F5AE537C56CDBDED461070DDC66E4372 /* Resources */, ); buildRules = ( ); dependencies = ( - FBD81F7274DDA1FAB244703CC27BB128 /* PBXTargetDependency */, + D176F50792D8630DAC4147DAD4CFF5A8 /* PBXTargetDependency */, ); name = GoogleUtilities; productName = GoogleUtilities; @@ -6287,11 +7036,11 @@ }; 93CEC7FFB57A497DE49471C5D9517C13 /* Wormholy-Wormholy */ = { isa = PBXNativeTarget; - buildConfigurationList = 140A4DF6E4CE7C42153027ABCD3E5371 /* Build configuration list for PBXNativeTarget "Wormholy-Wormholy" */; + buildConfigurationList = 42523495ED6DDC79EB50B80655F2FAD7 /* Build configuration list for PBXNativeTarget "Wormholy-Wormholy" */; buildPhases = ( - FC730AEAF395F949773EFEB1ACF6A0E0 /* Sources */, - 98052AB8CC8D11C82ADFC5CD042221FB /* Frameworks */, - 04D2D8467BA3D72B924A0CCCF6513C8C /* Resources */, + 7FBF5CB7A6338ADCB7FB5706A4BB5D4A /* Sources */, + 0A5198C27E33B953ED2DF643920BC6FB /* Frameworks */, + 18A35BB8F94994E7BF19B84E62C5B4DA /* Resources */, ); buildRules = ( ); @@ -6314,8 +7063,8 @@ buildRules = ( ); dependencies = ( - DCB1ADACEBBE2AD746CFA966EC2AD73D /* PBXTargetDependency */, - FDED3DD210228F477413288E16A106EE /* PBXTargetDependency */, + 45C1F43982D53D25F36EEEE3E0E53846 /* PBXTargetDependency */, + D4BFFACD854205F7E4CE273B991DDC12 /* PBXTargetDependency */, ); name = "ConsentViewController-tvOS"; productName = ConsentViewController; @@ -6324,11 +7073,11 @@ }; 982A68D37F5DCBC1FC1FDC0BB2F0EB8E /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */ = { isa = PBXNativeTarget; - buildConfigurationList = DB7B6C16FA90A165B600866E2C1FEF38 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift-IQKeyboardManagerSwift" */; + buildConfigurationList = 57C20D375067F47300EF4A6323715370 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift-IQKeyboardManagerSwift" */; buildPhases = ( - 4BA7EBCDDF22E265A7A163ECE038B93B /* Sources */, - 1EB339C2D27CFCFD2DD373586E3FF17C /* Frameworks */, - 5EEEE7A3E1983C9002E7F345F42B89AD /* Resources */, + B4F06FB897997D51AC9DECA3DD3421CF /* Sources */, + A2CFC93830AA520275FF11AAA28A4594 /* Frameworks */, + 1EA540459F5AD5C8EAB8C815F6FCDDC8 /* Resources */, ); buildRules = ( ); @@ -6341,17 +7090,17 @@ }; A26E6FD851C20D652B2755C1464A9990 /* IQKeyboardNotification */ = { isa = PBXNativeTarget; - buildConfigurationList = D10EB1FBBFC8F9C9195A3076DF54C577 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification" */; + buildConfigurationList = 70380F48246B5923842FDF6A0CE89726 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification" */; buildPhases = ( - 4156E346D167AB5E8DB3A656291C96C0 /* Headers */, - DBA756B8B198DEC2ECA6A84D190B3F2A /* Sources */, - DD5391FE13BB5347441B6E9FF1BB8ECD /* Frameworks */, - 898F644113481BCE294390BED716969E /* Resources */, + 22208EAF320311D959CCFFC1F5E576F5 /* Headers */, + 3F9A3B731D5216E632062C9B7F16FABB /* Sources */, + 2A031A8265B7D227A02918A943A64988 /* Frameworks */, + B683C59C48EF9963C2CDD820324D903B /* Resources */, ); buildRules = ( ); dependencies = ( - ABCC7084BB38D290392FDE60B5C8D69A /* PBXTargetDependency */, + 930B7FA3E1A7E77FA6D28BDA58395FF4 /* PBXTargetDependency */, ); name = IQKeyboardNotification; productName = IQKeyboardNotification; @@ -6360,11 +7109,11 @@ }; A6602BCAA6F4F932A586C41D0B7E019C /* IQTextView-IQTextView */ = { isa = PBXNativeTarget; - buildConfigurationList = 75B7CEA4BC69F0A0EC778754D602DB1E /* Build configuration list for PBXNativeTarget "IQTextView-IQTextView" */; + buildConfigurationList = 090BFCBA155B7F3F0E0F283626E85DE0 /* Build configuration list for PBXNativeTarget "IQTextView-IQTextView" */; buildPhases = ( - 4636DFF94E8EAE8DEA3FACBD026D57F0 /* Sources */, - 03EB9DFE61E0CC054CADFB7618A83968 /* Frameworks */, - EA930128BAD2C305DD1DD080C1F053D0 /* Resources */, + 4753E599053CD00360B2FB8AE61D428D /* Sources */, + 3C7CE62AE6796E4FADCD6027F116FFC1 /* Frameworks */, + 6DEBBC3842B3AFE109781A3772D84A68 /* Resources */, ); buildRules = ( ); @@ -6377,12 +7126,12 @@ }; A897D2D55F6D87795224F846F8ED3A36 /* Nimble-tvOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 9862551891F2D012AFB451EF931DA639 /* Build configuration list for PBXNativeTarget "Nimble-tvOS" */; + buildConfigurationList = 0F156227FA0479F5E78F435E91240268 /* Build configuration list for PBXNativeTarget "Nimble-tvOS" */; buildPhases = ( - A129C7CEA2885ABD29ED8B8279228C46 /* Headers */, - C0F96BD40500D0B11D5DE00D9969CF14 /* Sources */, - FB7CE9A96D46C69595DE8FA0F125D29B /* Frameworks */, - EE4ED0ABD89DB140E32582B6BFB9859E /* Resources */, + D25FA2F6945B1CDD49031C9A0F2032A3 /* Headers */, + 6BD096DE01B11DAD900168698B1F5F34 /* Sources */, + A6BF0781AB285F3B56493419780FE0B5 /* Frameworks */, + 42CA95EA7B9FBD3FB8E4137805556A82 /* Resources */, ); buildRules = ( ); @@ -6395,11 +7144,11 @@ }; B247F77A0CD5E19C8187A9BA1EB58C09 /* IQKeyboardToolbar-IQKeyboardToolbar */ = { isa = PBXNativeTarget; - buildConfigurationList = 3AA389CB1EDA9962A6B9D9400F06F349 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar-IQKeyboardToolbar" */; + buildConfigurationList = 6CA6778A211DD4F32331F054CA967EC3 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar-IQKeyboardToolbar" */; buildPhases = ( - CA4CCA15767D42E868188213B09704B2 /* Sources */, - 49309C1F1100BF5D1968378897B59F67 /* Frameworks */, - C2334CEA39ABE2CD1CBD89EE1CBB7281 /* Resources */, + 4C3DD626082BB69BA00784C65617F192 /* Sources */, + 0EB3B1D27605CFA64DC1B63D649D3673 /* Frameworks */, + F61A40F645930C896568C5F47E7C8B06 /* Resources */, ); buildRules = ( ); @@ -6422,10 +7171,10 @@ buildRules = ( ); dependencies = ( - 7131FBEA23D9F4C07004AE03A9A6E799 /* PBXTargetDependency */, - D18E21249828E7B712039AADB1B08514 /* PBXTargetDependency */, - A800C05A21729E3699A4FD09C056E809 /* PBXTargetDependency */, - 6F298E8B51C5871D7763B2913525D806 /* PBXTargetDependency */, + 42C670F8C291E587DBE85E898DDDD04A /* PBXTargetDependency */, + D19C01E5F6FFC0DA727283A5BB9C19EC /* PBXTargetDependency */, + 145684127DFD5FBB0A5C67D1E02E0967 /* PBXTargetDependency */, + EA8927A71C5FA29DEAAD75720CF0186C /* PBXTargetDependency */, ); name = "Pods-TVOSExampleAppUITests"; productName = Pods_TVOSExampleAppUITests; @@ -6444,12 +7193,12 @@ buildRules = ( ); dependencies = ( - 0B810B74FFE334AC4F221FC9530865F1 /* PBXTargetDependency */, - 9174A9B74BF3147399FA13F60CAC8217 /* PBXTargetDependency */, - E56C132FA64219C25D5AD31E404CC3CA /* PBXTargetDependency */, - 5D25B036E7EEAED7350D859761F871D2 /* PBXTargetDependency */, - CF3E88EC8F4F26EF72FAA126C0D1E4B7 /* PBXTargetDependency */, - 944F4BA3112760F4F275ACCB09246884 /* PBXTargetDependency */, + A0746EDE0E89B9C4AD5B0E1954D5BF44 /* PBXTargetDependency */, + 35B8000C0C27BE38B4F557C35F7E2554 /* PBXTargetDependency */, + 74751C64182586356164453C1CF1EAB1 /* PBXTargetDependency */, + 3741DAB3FB0889190920B54EE1991B7F /* PBXTargetDependency */, + 8D5E509CEF8FA3CD4FDC8FF241F07FFD /* PBXTargetDependency */, + C37279134AC6E75A0ED23CD60334388A /* PBXTargetDependency */, ); name = IQKeyboardManagerSwift; productName = IQKeyboardManagerSwift; @@ -6468,18 +7217,18 @@ buildRules = ( ); dependencies = ( - F67C48CFBFAAD6990CC12904F3430769 /* PBXTargetDependency */, - D69BD4C286F35799599FCE6E0BA1494C /* PBXTargetDependency */, - 9162658E6066AE43EB402AF01419052B /* PBXTargetDependency */, - 0DAF4DC58E5F56DB58BF94C8BC5B9079 /* PBXTargetDependency */, - 8B5C1D62515F0665433BDA672D1862F4 /* PBXTargetDependency */, - BA7BAECB6DC86760F706A1F2323256B7 /* PBXTargetDependency */, - 99511F785047A0D916CDFF8DA55D2B89 /* PBXTargetDependency */, - 391119A8DEF977C24F943D1CF411F4F0 /* PBXTargetDependency */, - 140D783ACBEE7F69063DF9A438243975 /* PBXTargetDependency */, - 34E7082CEF5520AA8C70658178B2C9E0 /* PBXTargetDependency */, - 75495D0ED5E9CC9AA516482936F2FF7A /* PBXTargetDependency */, - 1477278AEDE34DD3AF5DCF045F809A14 /* PBXTargetDependency */, + 8E078E25D0006D6F3BF60E3FE1D34C8D /* PBXTargetDependency */, + B70B9A6931524B857248EAE77DFE096E /* PBXTargetDependency */, + 79BDA129000B20C1AE3443DFD88F80E9 /* PBXTargetDependency */, + 15216ED3338DBDE73BDDEDEBDF6F59B4 /* PBXTargetDependency */, + FEF95178123BEDB3295192D97057E6E5 /* PBXTargetDependency */, + 66F0797D445AE35B4E25F2ADF9E6079F /* PBXTargetDependency */, + CE28F69F46E29161ED713248736DDDC4 /* PBXTargetDependency */, + 90B0A2F0BBAB1040657B72ECED880EEC /* PBXTargetDependency */, + BAE9A630370F6B02599E9BDE609CC63E /* PBXTargetDependency */, + F8EEBEBE654D824C629FD4E1C8F2EE21 /* PBXTargetDependency */, + 27615A99FFAE622D08FBE8468FD0D551 /* PBXTargetDependency */, + 7DECD9B7973A8DF5C0D6D7FCCC08518A /* PBXTargetDependency */, ); name = "Pods-Examples-SourcepointFirebaseDemo"; productName = Pods_Examples_SourcepointFirebaseDemo; @@ -6498,29 +7247,47 @@ buildRules = ( ); dependencies = ( - C90416B30225E9F191BBFC2D0276A782 /* PBXTargetDependency */, - FEE691DBFB5E4A1E224164C70B2933A4 /* PBXTargetDependency */, - 67C61EFD048BD9AB10A298B1F431CFF5 /* PBXTargetDependency */, - EF3ED247F6A7F7321BBB296EF7A03F8A /* PBXTargetDependency */, + 88D8F4DD66BEC836ACB70044D5AC2BAB /* PBXTargetDependency */, + 12120CD383E9BB17CEE14AD6FC316359 /* PBXTargetDependency */, + 98583423E6246338D23B1811BEA3EE47 /* PBXTargetDependency */, + 1EA9203BBADD058AD649C6EF6710DCCD /* PBXTargetDependency */, ); name = "Pods-Examples-ObjC-ExampleApp"; productName = Pods_Examples_ObjC_ExampleApp; productReference = 197865AE4C919C97C7E5CE23CE9253D9 /* Pods-Examples-ObjC-ExampleApp */; productType = "com.apple.product-type.framework"; }; + CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */ = { + isa = PBXNativeTarget; + buildConfigurationList = 6F6F35FEE6A349E33F085A79DA040D7B /* Build configuration list for PBXNativeTarget "CwlCatchExceptionSupport" */; + buildPhases = ( + C8C7A15CA8813ED2A6EA35491F32C67F /* Headers */, + DC2FA0F6B2C52A6FB8B5C8463DA7B4E7 /* Sources */, + D38852BBF73A5929287F1C9A0CA3FEF3 /* Frameworks */, + 014FC58AE0F658130064F80313ADEE9F /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CwlCatchExceptionSupport; + productName = CwlCatchExceptionSupport; + productReference = 220D1365CED5CB83C4C0CE1E3DABD3B0 /* CwlCatchExceptionSupport */; + productType = "com.apple.product-type.framework"; + }; D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */ = { isa = PBXNativeTarget; - buildConfigurationList = 439F7C71F1358FB99A6620B4781415A3 /* Build configuration list for PBXNativeTarget "nanopb" */; + buildConfigurationList = 40F354CEEC0E7EF3EB291A40F327FACE /* Build configuration list for PBXNativeTarget "nanopb" */; buildPhases = ( - 66D8A2242CE93A509FB40A90FC733088 /* Headers */, - 25AF5C52C6FDAFCA03D45E941DB29AF9 /* Sources */, - 36013DFA90A65E56FA29B7CE8391D41D /* Frameworks */, - 57F2639FAFA98DBE1ABA48625E7FE429 /* Resources */, + AEADF33647ADE0A3F99E241B947DBCB8 /* Headers */, + 4EE414C687BD3A4837DCCB29E149BB36 /* Sources */, + B1CD884C14F7DB422E3EADA9A825ECDC /* Frameworks */, + CEA5B55B6FAB00279EB7A201BB65A449 /* Resources */, ); buildRules = ( ); dependencies = ( - 74ED27BB1B61DC4A02C08536999878BA /* PBXTargetDependency */, + 846AD3C7FFE7DB3914DE04A8FD630E06 /* PBXTargetDependency */, ); name = nanopb; productName = nanopb; @@ -6529,20 +7296,25 @@ }; D309F35D7DA6A2D903EB02EE558F8A74 /* Pods-Tests-SourcePointMetaAppUITests */ = { isa = PBXNativeTarget; - buildConfigurationList = E1DB9A78E5F2370296AB29D96DA6850E /* Build configuration list for PBXNativeTarget "Pods-Tests-SourcePointMetaAppUITests" */; + buildConfigurationList = 970202E1E901E13A711396780ADC71A2 /* Build configuration list for PBXNativeTarget "Pods-Tests-SourcePointMetaAppUITests" */; buildPhases = ( - 0370C706CFAB8A2DE2A2E1AE1EBBF551 /* Headers */, - EE760CA7C2C6DFE2B69813071C6E8918 /* Sources */, - 57A199B53EDFC6FBEC983CF58BBF2C76 /* Frameworks */, - 09D42A8F96D02D5944636B5048634E16 /* Resources */, + 62418A3DD2CD98A31D804AEED228B995 /* Headers */, + 29D792650F6318B783EC23C8BDF71B7B /* Sources */, + 5BEFF5E5967A4ED038E752652B2E241B /* Frameworks */, + 29893E137F4C657556197B6870631855 /* Resources */, ); buildRules = ( ); dependencies = ( - 1A2C69376EC106E7EC7D88614DA8F463 /* PBXTargetDependency */, - F0517C8D42761DF51139CC39B0FA6CFD /* PBXTargetDependency */, - 32CD8976BBEF14739E54A704BDD8FA57 /* PBXTargetDependency */, - 60F46955CDB157C59B5BE36843E2C37D /* PBXTargetDependency */, + A9D6B724021609737E6DAA0DA19685B6 /* PBXTargetDependency */, + F9344716DAEB6E656DF4111FE4A3A843 /* PBXTargetDependency */, + A3769FB39A9E42F04675DF89D6E18049 /* PBXTargetDependency */, + 29A05B77C9DEE36FFE90389573D543EA /* PBXTargetDependency */, + 7DF74A0D4BCBD66D308685DBA015ADB1 /* PBXTargetDependency */, + 85E2177EBD209109CEB948E95736955D /* PBXTargetDependency */, + 62279DBE6BC0FF881DD2E63E2FCB720D /* PBXTargetDependency */, + 04712D854D474B61B28CEE3C41F6E3A1 /* PBXTargetDependency */, + 2295775C3F8AE8E0725BFDB54151EC2D /* PBXTargetDependency */, ); name = "Pods-Tests-SourcePointMetaAppUITests"; productName = Pods_Tests_SourcePointMetaAppUITests; @@ -6551,20 +7323,25 @@ }; D61E6F099F75DEB251B88EBDFF4BFD49 /* Pods-Tests-ConsentViewController_ExampleTests */ = { isa = PBXNativeTarget; - buildConfigurationList = 2E52AB0BF17E4B85E2A263DA4E330547 /* Build configuration list for PBXNativeTarget "Pods-Tests-ConsentViewController_ExampleTests" */; + buildConfigurationList = 65C72768F72492115A09FE41F509527D /* Build configuration list for PBXNativeTarget "Pods-Tests-ConsentViewController_ExampleTests" */; buildPhases = ( - DE1E60B45371FD42935B7A797A9B44F9 /* Headers */, - 0E56F2BB7EE22DBC3D79B3F27BCAF713 /* Sources */, - 6E2E0ACB33F10107C6933677324E4D72 /* Frameworks */, - 2B3DA26D9BEA05D2CEF9A406AD8F5F16 /* Resources */, + 5AA4D3725DD67DDD55F9366EFEFD3692 /* Headers */, + CC54827D47730191F2D44BBE1C890044 /* Sources */, + 9D4048B37AD802E5417BEFEF44078720 /* Frameworks */, + 9A156DB5584DB69A98CCFA9042E2675A /* Resources */, ); buildRules = ( ); dependencies = ( - 1A71F46B9E442209CB96839F8108931B /* PBXTargetDependency */, - 17E58C79EBBA25A17F2D92A99E4CCC3B /* PBXTargetDependency */, - 9CEC375A5D2217D9F2DD2B2D1543BB1B /* PBXTargetDependency */, - 6758E0FF37C141481887E230A5841984 /* PBXTargetDependency */, + 4666D6DCFEB248078BF7AE6F58CDBC88 /* PBXTargetDependency */, + 30A13B5B8D78A96F1042F24B50CCBEC0 /* PBXTargetDependency */, + 372EF258968E33C21CC5BF640DB79002 /* PBXTargetDependency */, + 490B76BE728BCE388C1704AD89628935 /* PBXTargetDependency */, + 3B17DC5622FB9D6326627AA29DA0304E /* PBXTargetDependency */, + 200FE4AA058E59E05655E87F6399EBE2 /* PBXTargetDependency */, + 484C717E000430738249C255273CCB23 /* PBXTargetDependency */, + 87C64CDADEE5F0FECF6B2C644DEFA914 /* PBXTargetDependency */, + E8318C296803A62395F983F58CDA6623 /* PBXTargetDependency */, ); name = "Pods-Tests-ConsentViewController_ExampleTests"; productName = Pods_Tests_ConsentViewController_ExampleTests; @@ -6573,20 +7350,25 @@ }; DCC6C5A931EEDDFFE777661B75A5C9C6 /* Pods-Tests-ObjC-ExampleAppUITests */ = { isa = PBXNativeTarget; - buildConfigurationList = 73358D41E356A6E42FF0EED50094FC54 /* Build configuration list for PBXNativeTarget "Pods-Tests-ObjC-ExampleAppUITests" */; + buildConfigurationList = 961DC382BBC722E5FC6767CB7CEADAB7 /* Build configuration list for PBXNativeTarget "Pods-Tests-ObjC-ExampleAppUITests" */; buildPhases = ( - 8B33992900D3494921E10CC3F89C8315 /* Headers */, - 7EF0DD6EC6207652DDA29AF72BDF3E21 /* Sources */, - EB3450189B2F50D6076A83FCBE934B3B /* Frameworks */, - 6348DF191B9083B911CA9E063601E1C7 /* Resources */, + 5854AD3BF689451ED8DF1750366C1534 /* Headers */, + F54D29F18070233F9FC4BE1653F983BC /* Sources */, + 4873E4A7D76A69126B6587B1291893A6 /* Frameworks */, + F22AD97C117FFEA62539BD9661FE31A9 /* Resources */, ); buildRules = ( ); dependencies = ( - D84F69C4D56B12C4C6C44A6246B4E504 /* PBXTargetDependency */, - 44D14AE2A45424D76A90D819435B3ACF /* PBXTargetDependency */, - 094931B51F90318A1791D36C2D533215 /* PBXTargetDependency */, - 4316AE76107BEFE98FD0663C901368C9 /* PBXTargetDependency */, + 16F2BBFCB64B10A779E70C133D48C386 /* PBXTargetDependency */, + AC083F59F100DD403BBEC3C609AB7306 /* PBXTargetDependency */, + 9533827E72C7DBC238911AB6F79F8012 /* PBXTargetDependency */, + F69BCFC436DCCA3C222CEBDDA04F4852 /* PBXTargetDependency */, + C2927FA89C466E80FE599BE4DC5DE48A /* PBXTargetDependency */, + 8C8E627C9047D0BF7A3FB53C70C1DC96 /* PBXTargetDependency */, + EEC418108D97237C57048CDC3C843EE5 /* PBXTargetDependency */, + 755757EDC74EA82F8AB151F66BD1C99A /* PBXTargetDependency */, + 3CAA2066E7834FB86FC5361442D883F5 /* PBXTargetDependency */, ); name = "Pods-Tests-ObjC-ExampleAppUITests"; productName = Pods_Tests_ObjC_ExampleAppUITests; @@ -6605,30 +7387,74 @@ buildRules = ( ); dependencies = ( - EE850B0DEE5513B0F1CA057625DDE9C2 /* PBXTargetDependency */, - 78ED0262FEFA3E08E34B29E26BD6DA29 /* PBXTargetDependency */, + 49034156139168F55506A1C8F08FC154 /* PBXTargetDependency */, + B13E02894AA639BB1E2C96B53FF6E135 /* PBXTargetDependency */, ); name = "Pods-TVOSExampleApp"; productName = Pods_TVOSExampleApp; productReference = C3D163ED35F95B184B10CF3222D35768 /* Pods-TVOSExampleApp */; productType = "com.apple.product-type.framework"; }; + E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4286674F1ACAAEDD8D0AD9D838746D77 /* Build configuration list for PBXNativeTarget "CwlPreconditionTesting" */; + buildPhases = ( + F1A3FB2954A978FEFE566A85BBAF2580 /* Headers */, + CA6995042FC48CCB4CAB9BC3C3145317 /* Sources */, + 009B4E1274DD2C2C4074D7C5529DA4E5 /* Frameworks */, + 73A78858D590FABDB2FED9F40DA196E5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 30856480E4920E8E363E53BC7350DDAA /* PBXTargetDependency */, + D152D84C6C9556C5A9FB648B8269F305 /* PBXTargetDependency */, + 2561519F2960884A51D6997F2DBAAD41 /* PBXTargetDependency */, + ); + name = CwlPreconditionTesting; + productName = CwlPreconditionTesting; + productReference = CC56497384E780278F916D6C57EA4951 /* CwlPreconditionTesting */; + productType = "com.apple.product-type.framework"; + }; + EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */ = { + isa = PBXNativeTarget; + buildConfigurationList = 9B65AE67D78BECCA5304A7B5FA3B7F71 /* Build configuration list for PBXNativeTarget "CwlPosixPreconditionTesting" */; + buildPhases = ( + 8BCE0D8414D22702512DEE35B529895E /* Headers */, + 285242C2263CBE4293327674BF86FA34 /* Sources */, + 9D8BFD9AD424B7A73EAB7915EF1D2573 /* Frameworks */, + CDC317CDAB48690109003C11F95185F3 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CwlPosixPreconditionTesting; + productName = CwlPosixPreconditionTesting; + productReference = D2AD834000B280096FEB80FBEBD9A414 /* CwlPosixPreconditionTesting */; + productType = "com.apple.product-type.framework"; + }; EECEB4A7A35DCD7FEEEA4BB4D54ADE4E /* Pods-Tests-NativeMessageExampleUITests */ = { isa = PBXNativeTarget; - buildConfigurationList = 58AC7058ED5D4185B9ED5F1C47B0D9E3 /* Build configuration list for PBXNativeTarget "Pods-Tests-NativeMessageExampleUITests" */; + buildConfigurationList = 97AA0DB95E30F64CE54BC1BA27D47234 /* Build configuration list for PBXNativeTarget "Pods-Tests-NativeMessageExampleUITests" */; buildPhases = ( - 2032FCBF059F31DDF749B7CF886F2086 /* Headers */, - 1208CD24FD0CF0B33B57440F688E8ADF /* Sources */, - 2BCEF89B9923D40943E3E4003F4ABBA6 /* Frameworks */, - 4BDAD801F44DE9A0171C513E6B723423 /* Resources */, + 404D0C63A37E0DF0485AED1CD183F2D5 /* Headers */, + D60FB0A8DB99659897868A5B8FC45FAC /* Sources */, + B1F9E1F75FA155557411E0F312A3DA1B /* Frameworks */, + 94397695554AC489C8583271921C97DD /* Resources */, ); buildRules = ( ); dependencies = ( - B53B1F0E8B7ED639A9B762014C6C41C7 /* PBXTargetDependency */, - 310BE82D0BC4E3925BF7426E32DE1DE0 /* PBXTargetDependency */, - 477934960CD3DAD93B663DD419DB3D4D /* PBXTargetDependency */, - C0CDB73F5AF33EC757ADF601CB088C13 /* PBXTargetDependency */, + D98D2FBBADD6B27CF9ED90BF533C0907 /* PBXTargetDependency */, + AD1F26DE2D06E1FD827A2B6BDF011F8A /* PBXTargetDependency */, + DA643F744BF74159E4C6C37467ABFA51 /* PBXTargetDependency */, + 2EED339218A454388DC19D3CCC143167 /* PBXTargetDependency */, + 54CD8C4DDCADD7D3F3B9568FC3DBC3AC /* PBXTargetDependency */, + 2004CAA41B4BF3A5D444CD9C65E4838C /* PBXTargetDependency */, + 99824BE02F51D9BF44E6985869648360 /* PBXTargetDependency */, + 3B21269E1B6B37D2EF68917359A494F7 /* PBXTargetDependency */, + 87263114BA9323CC6816962316F8CCEA /* PBXTargetDependency */, ); name = "Pods-Tests-NativeMessageExampleUITests"; productName = Pods_Tests_NativeMessageExampleUITests; @@ -6637,11 +7463,11 @@ }; EEE261386011CDF271BE289F73FF5959 /* IQKeyboardCore-IQKeyboardCore */ = { isa = PBXNativeTarget; - buildConfigurationList = FC108A54F3AEB26B63215872F6D8EB1F /* Build configuration list for PBXNativeTarget "IQKeyboardCore-IQKeyboardCore" */; + buildConfigurationList = 86C2086694666CC28CF9CE092DBA7C04 /* Build configuration list for PBXNativeTarget "IQKeyboardCore-IQKeyboardCore" */; buildPhases = ( - B935FE80ACD95F80D57EEE00261E16E0 /* Sources */, - B61FBD13498780C440FD77521B5941EA /* Frameworks */, - D3967E4CB70AC1709D2C76B7BC185624 /* Resources */, + A3B20DB20FBB895B9F88900328A948EC /* Sources */, + 2CB2F22D5291A6AA116633689630D79B /* Frameworks */, + 77983625E21E3BD49F1D43C7DCCF6D90 /* Resources */, ); buildRules = ( ); @@ -6654,18 +7480,18 @@ }; F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */ = { isa = PBXNativeTarget; - buildConfigurationList = 092E9433CBBBE5551E8DCE2D06AA09F6 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar" */; + buildConfigurationList = B6F32C337E6985623A8DF177B99BD6F5 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar" */; buildPhases = ( - 00CDD42B7634FA5C6218A132D0DBF803 /* Headers */, - 6F2EA5E325900ED7EE745EE8039CCEFD /* Sources */, - 05E53C506D18CD886DCB4672BE14B281 /* Frameworks */, - 88507A5C2D0B9B22490AA46BA3074A3A /* Resources */, + B8ADCC7962F5C866C35412AAB11A754F /* Headers */, + AA10E4A6BFCF9DCF25DEBDE4089CB614 /* Sources */, + BC78784BFBD44F1DCC75EA78D79EEC45 /* Frameworks */, + E4A0D65C1D0399C977B0C7F8082B8CD7 /* Resources */, ); buildRules = ( ); dependencies = ( - 2C7B4825701635CF713BF5F5B8D9DEAF /* PBXTargetDependency */, - 7344889E5C09170C9600A78EAC0E35D6 /* PBXTargetDependency */, + 82013F84F60B192A87EEBAFF3B1581D0 /* PBXTargetDependency */, + DC0FF11DFBDF9B5A47223CE06F12338A /* PBXTargetDependency */, ); name = IQKeyboardToolbar; productName = IQKeyboardToolbar; @@ -6684,7 +7510,7 @@ buildRules = ( ); dependencies = ( - 69E3DD12C4992257E731274E0B75B936 /* PBXTargetDependency */, + 8D0137791BB5191E16819E200D368648 /* PBXTargetDependency */, ); name = IQKeyboardCore; productName = IQKeyboardCore; @@ -6693,11 +7519,11 @@ }; F9B2C41D8F3FCEB2256091CF2667D600 /* ConsentViewController-iOS-ConsentViewController */ = { isa = PBXNativeTarget; - buildConfigurationList = 520CA4C37855E777EDFF7B79C322F698 /* Build configuration list for PBXNativeTarget "ConsentViewController-iOS-ConsentViewController" */; + buildConfigurationList = 8A33DEFF72EBF072A7FD92464FADA790 /* Build configuration list for PBXNativeTarget "ConsentViewController-iOS-ConsentViewController" */; buildPhases = ( - 952259226F6F5C884BAD33EF0F1187B3 /* Sources */, - 12E9F11ED7E7B82EAC92B3A900F7180D /* Frameworks */, - ABB6DD908C7C5E86A511BE5293FBD5A3 /* Resources */, + 09F445D046736898EBE272F0594E5F54 /* Sources */, + 3E0CEC856DA9B52A6E0D5B83A1B9DDF3 /* Frameworks */, + 1911E80763D8DC43FC7CBB702796D85D /* Resources */, ); buildRules = ( ); @@ -6710,20 +7536,25 @@ }; FE522C5739C3080CA274B7327A0835A2 /* Pods-Tests-AuthExampleUITests */ = { isa = PBXNativeTarget; - buildConfigurationList = FFD993A224362408C8FC8D8FD44A3A3C /* Build configuration list for PBXNativeTarget "Pods-Tests-AuthExampleUITests" */; + buildConfigurationList = 32105BE899BF4B6FC6BC033DE8A476E8 /* Build configuration list for PBXNativeTarget "Pods-Tests-AuthExampleUITests" */; buildPhases = ( - CE32801AD3331AA8F1D2E9C5B834FA49 /* Headers */, - E7D68BA2435CFD24E9FE39286E171FA4 /* Sources */, - E21B0342B4D6D8B092DFC2DE606CF515 /* Frameworks */, - 3579E712F8A76EE943147ED7F85E9EE7 /* Resources */, + EC66DD9488ACCDA2107BD3504F2ED043 /* Headers */, + 28165BCF6E0670DD8CD9758F0D8B4A28 /* Sources */, + 0EFDF9BC594EFFE4C5A7FD2D96EFB6BE /* Frameworks */, + E8953C2D57FE9195C017AB2852ACFC5C /* Resources */, ); buildRules = ( ); dependencies = ( - A458BE6EC02F614FCDDE7FA951935349 /* PBXTargetDependency */, - D6B01866B0ACA62C69AFE5EEE8131146 /* PBXTargetDependency */, - A63D45D1A3AB1CE5FC4259A315A03E08 /* PBXTargetDependency */, - BDF8A7982E8CFCC753E09A33C83E65FE /* PBXTargetDependency */, + 7D013335DA189539A44003240C49AAFE /* PBXTargetDependency */, + 3309F81F38926524D89AB1DD3106CF84 /* PBXTargetDependency */, + 0357B1774B5F3CE7F5A60342A9950E8A /* PBXTargetDependency */, + 9E4C2748064983314CBCEFCE8F0C6647 /* PBXTargetDependency */, + EFF587BFB42DE66769D5960BCC8D3A94 /* PBXTargetDependency */, + 7D70047FEF4AF8EF89C230CD7D042917 /* PBXTargetDependency */, + 4083C4025BB84E2744C04CFD201BE86A /* PBXTargetDependency */, + DC7360FCCF34D3F2A63E22632C37194A /* PBXTargetDependency */, + 09A3F63BE4336ABAEA88370B830C7F8D /* PBXTargetDependency */, ); name = "Pods-Tests-AuthExampleUITests"; productName = Pods_Tests_AuthExampleUITests; @@ -6750,7 +7581,7 @@ mainGroup = CF1408CF629C7361332E53B88F7BD30C; minimizedProjectReferenceProxies = 0; preferredProjectObjectVersion = 77; - productRefGroup = E50936C9C11B7821C85B379A9CD05889 /* Products */; + productRefGroup = 0A3DD4BD794503E0A0CB1988A01BD03C /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -6758,6 +7589,11 @@ F9B2C41D8F3FCEB2256091CF2667D600 /* ConsentViewController-iOS-ConsentViewController */, 94DAD332BFFC672BBE92726504A716F8 /* ConsentViewController-tvOS */, 5D0718052BFEE502C9D9BEC44BDCFA76 /* ConsentViewController-tvOS-ConsentViewController */, + 308B5C440C446909122081D367A27A8F /* CwlCatchException */, + CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */, + 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */, + EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */, + E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */, C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */, 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */, 1001C16510D946B47CFF8B19DBC0B787 /* FirebaseCore-FirebaseCore_Privacy */, @@ -6819,159 +7655,169 @@ /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 04D2D8467BA3D72B924A0CCCF6513C8C /* Resources */ = { + 014FC58AE0F658130064F80313ADEE9F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 251F059EA65982B8415A5920C12EA305 /* ActionableTableViewCell.xib in Resources */, - B58C584C8066C0CC9DE47B957D2546B1 /* Flow.storyboard in Resources */, - C67D42196DFB8E762CAD7D129EB9A5F3 /* RequestCell.xib in Resources */, - C5E131DD44FBF99119643363AEB2FFD5 /* RequestTitleSectionView.xib in Resources */, - BE3E55549F9ACE9E8575A9D884BC6DE4 /* TextTableViewCell.xib in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 09D42A8F96D02D5944636B5048634E16 /* Resources */ = { + 038158E00E3BD4614619FCE1517297BF /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 242C0F69AF70AD5FAA2D18BF1740C99F /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 11D3505BF48F1295D7E83ED7EED6C9E3 /* Resources */ = { + 0DA154C1E129BD364DD6533E4ED21EAA /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + FFF4E1366903343DFE47FC534F9B5BD1 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1E8531FCF07D3B15913A1B21C8EEDE2C /* Resources */ = { + 126A45DF7B706E3570AB273FDC2FE256 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - B426FE52C6BCF7124200EC193DDC0722 /* PrivacyInfo.xcprivacy in Resources */, + 0BB4D2CF32A898D12060CCC1E30F258E /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2B3DA26D9BEA05D2CEF9A406AD8F5F16 /* Resources */ = { + 1470DDF01DE9C03DD600DB84AB712567 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2C4A1B3327A1C8419F5C47657F4FF5A0 /* Resources */ = { + 18A35BB8F94994E7BF19B84E62C5B4DA /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + FE8D885E42EE579E556E74176622C8D0 /* ActionableTableViewCell.xib in Resources */, + A6394E866691F6EC7DFEEB28FD5399D4 /* Flow.storyboard in Resources */, + 38806A19B071642225258043ACAC1F1B /* RequestCell.xib in Resources */, + 0A528D1CD706A0D187C87AA488547FE2 /* RequestTitleSectionView.xib in Resources */, + F91F7471AE909894CFDBD6F38AEF7DDB /* TextTableViewCell.xib in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 31B612F1B599272233832271363FDF93 /* Resources */ = { + 1911E80763D8DC43FC7CBB702796D85D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 9E1EF13402D8ED84835CC887FE7D4136 /* Barcode.png in Resources */, + 0219FE757B9413E61775A6BCB6B5834D /* images in Resources */, + 3D58853F9CA6F470FA4A7BB940D83864 /* javascript in Resources */, + 1F6F6626C0CE2411BB510B9F89E28B0C /* jest.config.json in Resources */, + 9335E0D67CBEA73EB1A98BEFD3CD5B25 /* PrivacyInfo.xcprivacy in Resources */, + 6EE8133026BBAD9196509BE66F0D1454 /* SP_Icon.png in Resources */, + 8197C81A6E3651313B7688D3C30CDDCE /* SPJSReceiver.js in Resources */, + 994AEB8567C56940702DD2296E6C9B3E /* SPJSReceiver.spec.js in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3579E712F8A76EE943147ED7F85E9EE7 /* Resources */ = { + 1EA540459F5AD5C8EAB8C815F6FCDDC8 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 2EFBCF44E12E01458BB1687B460645C8 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3837FF698FAEA6AD7CCE338EB4A22529 /* Resources */ = { + 29893E137F4C657556197B6870631855 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 38C30B226F18FE6989B961018676343E /* Resources */ = { + 2C4A1B3327A1C8419F5C47657F4FF5A0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 49D1F7C273DE04AF14E5954C9398C3E6 /* Resources */ = { + 36B1D96F995FB7451D76D04385CE0E3F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4AC7E532E8AB6C5DB8867782E3B34FA6 /* Resources */ = { + 3837FF698FAEA6AD7CCE338EB4A22529 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7A962F48CA17296DDDBD1B08734554F0 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4BDAD801F44DE9A0171C513E6B723423 /* Resources */ = { + 38C30B226F18FE6989B961018676343E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 52946A1027B33257BAD7E2706DF8BB9E /* Resources */ = { + 3D3191F22CDF588A699E361861034C12 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 53330CC7DEB76CBD41C10CB7DA7EF47F /* Resources */ = { + 40CB4587FDDCE268CCAE11F956BB0AC3 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 56EEB647B07858EDBF2497510A644B1A /* Resources */ = { + 42CA95EA7B9FBD3FB8E4137805556A82 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 57F2639FAFA98DBE1ABA48625E7FE429 /* Resources */ = { + 47CD91EF908FBD382254397D35E7456A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 6E65891C6AEFDADA41F47D8BEE3A644B /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5B3E28E81F3EDD745D188AD84D4C31CB /* Resources */ = { + 49D1F7C273DE04AF14E5954C9398C3E6 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 49F3C560386F5984B94D8D4AA9B7B453 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5B6641E00B96880BD06C28E9E4106498 /* Resources */ = { + 54794DD9C766F105175CCA8DEC02F88F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5C7E92A537D7F1B1F6672D2F6C613536 /* Resources */ = { + 54A034C1252A1504BB66E8C821F5FB11 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + D702EA3DBF720A90A19C03C734874343 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5EEEE7A3E1983C9002E7F345F42B89AD /* Resources */ = { + 56EEB647B07858EDBF2497510A644B1A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - E07394D3AA1D1A68383A852812C0F7B1 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6982,10 +7828,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6348DF191B9083B911CA9E063601E1C7 /* Resources */ = { + 6DEBBC3842B3AFE109781A3772D84A68 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + BF8F174DBB0D780050C634E9E98B5555 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7003,19 +7850,26 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 70B22E23AF98D62994BB741EC76D5816 /* Resources */ = { + 73A78858D590FABDB2FED9F40DA196E5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 77983625E21E3BD49F1D43C7DCCF6D90 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 296ABA1DF54A8D521BC266555A3214BC /* PrivacyInfo.xcprivacy in Resources */, + 8D1D77250AC74F5C88B1481C0FC02813 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 70DA0952A0F848275983D429A2045C0B /* Resources */ = { + 78B337D0DDCBCDD88A3B957D339723B7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 822705204098FCECD2F2658824E84ACD /* PrivacyInfo.xcprivacy in Resources */, + 964376244EA85C3FDA8B336926AE5718 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7040,7 +7894,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7F8D2C2E39F54CF2E70FC3BC6836F7EE /* Resources */ = { + 84B027B420323F9A6E4C1C78F14E89B1 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -7054,240 +7908,240 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 88507A5C2D0B9B22490AA46BA3074A3A /* Resources */ = { + 94397695554AC489C8583271921C97DD /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 898F644113481BCE294390BED716969E /* Resources */ = { + 9A156DB5584DB69A98CCFA9042E2675A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 89E09F1DCC0979524A7386C8AC7CED6E /* Resources */ = { + A8F7923089DFF6670C6DA7857901512E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4CE772867590CE9E383A215E02B2E9BE /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 92196C92F536446A9D11AAAA31BB2344 /* Resources */ = { + ABDD94A4D5B1A728B1FDC3C6A9C6C17F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 8EFCD85B3221620E636ED6D24D5C39F9 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9C9A7429ACDEDDC18FFB09EDE6918395 /* Resources */ = { + B683C59C48EF9963C2CDD820324D903B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9F0558318E52326DB30A4A5B193069AA /* Resources */ = { + BC6780DEAA16C85DEA9909CC95CA5059 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3A1A20037AC91D1B98D7C5FA320444C4 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A2455AD6A1961FF6176C9EB63BC531EB /* Resources */ = { + C61F426C7A88219456CE207AA1A2EAB6 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A3294EA8D1DDA286D6F37627025B4FBD /* Resources */ = { + CDC317CDAB48690109003C11F95185F3 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - ABB6DD908C7C5E86A511BE5293FBD5A3 /* Resources */ = { + CEA5B55B6FAB00279EB7A201BB65A449 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 46C4E7D514BF5F225F6844720D7FA6B0 /* Barcode.png in Resources */, - E024D333CAEC030AACA05B8814A92BF2 /* images in Resources */, - 2D13A5FC8AD6E1F6B807D4D86C7348BD /* javascript in Resources */, - 1E053EA3E972D66892D8AA539B0EF8B1 /* jest.config.json in Resources */, - CDE83381729B150813DA7AC3CC4674E6 /* PrivacyInfo.xcprivacy in Resources */, - 4E358EEE3B433EF6FDA5D4B2110A1F2B /* SP_Icon.png in Resources */, - 451BBB0BABC6501C80C3EC80FC41FCE1 /* SPJSReceiver.js in Resources */, - 6905A244533602348B3F5D6CB888A2E9 /* SPJSReceiver.spec.js in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - AFB96C15DCE61231BA8426CCEDBCD89F /* Resources */ = { + CEC912571569FA6CC6856385BD71E9D9 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - D1565558C8CF9C9D408706CDBE3FF444 /* PrivacyInfo.xcprivacy in Resources */, + BE557CBE20C696046ECF3F9D451430F7 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B11429D6FF653568866F7B239C45ECD8 /* Resources */ = { + D8D886536BC3686BB5D8DC2B1A637D27 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FACE6236BB892BF05E40BC883411EBA1 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - BA36BCC924A9C18C0A244F17D07BDDEF /* Resources */ = { + DD37CCD74F0A2EBEFFCA3D043AC0B3C0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BDF8D8A1A3EA9CCF243252893382DD5A /* Resources */ = { + E0FBE3F867932025316C9673CE918127 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - C8FE34E632C3ECE7A074A7D6DD90C0A0 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C2334CEA39ABE2CD1CBD89EE1CBB7281 /* Resources */ = { + E128BA118583D27F2737D354591CCD00 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 648DF26F5EE1B601C70ED34A5581C172 /* PrivacyInfo.xcprivacy in Resources */, + 0DA7CF0CB9572DF213806235E77E833A /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C2A28A17614D586D62A7A4EDC91C8B39 /* Resources */ = { + E4A0D65C1D0399C977B0C7F8082B8CD7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C61F426C7A88219456CE207AA1A2EAB6 /* Resources */ = { + E8953C2D57FE9195C017AB2852ACFC5C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - CF01B4D92CD99FCCF854223ADDBCC200 /* Resources */ = { + EA7C8E4F8C1C7A4E4307D78216828A20 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 67506269CAFD4BA23D8792AEA3EB0870 /* Barcode.png in Resources */, - 6DFF0935323AE4B4F9AD731BBB5DBA01 /* images in Resources */, - E09CC1C8017B9F29BF566516C4AAA804 /* javascript in Resources */, - B227314710B779DA25D507AD12315977 /* jest.config.json in Resources */, - 54C9FE2F048A6FA9850135DF7FB1B80F /* LongButtonViewCell.xib in Resources */, - B19B16041EC9D82B9A8F97293ADD8260 /* PrivacyInfo.xcprivacy in Resources */, - 05054ECBA9EFF7DB67061A6D552B7BB0 /* SP_Icon.png in Resources */, - F7AC6A64735F3C258003329285519B16 /* SPCCPACategoryDetailsViewController.xib in Resources */, - 92CC18262D662902701519F57892E803 /* SPCCPAManagePreferenceViewController.xib in Resources */, - EEE4DFCA94C9320165C71F816986C7AF /* SPCCPANativePrivacyManagerViewController.xib in Resources */, - 8DF96287A1CBBD2079C8BE1D2C195401 /* SPCCPAPartnersViewController.xib in Resources */, - 132F5127472AA5E6A4E81EB98CBFB3F1 /* SPCCPAVendorDetailsViewController.xib in Resources */, - F85CDAF44752DDC3DE1318FF6F6ED1EB /* SPCustomViewController.xib in Resources */, - C56DFC6F1DDECC218AEFCAA273D5424B /* SPGDPRCategoryDetailsViewController.xib in Resources */, - 0FA134DCCE57BCF3327804C773B459D9 /* SPGDPRManagePreferenceViewController.xib in Resources */, - BBE64E83196E1E574E6DAB659739FA0B /* SPGDPRNativePrivacyManagerViewController.xib in Resources */, - 120616E477FC9E0AA8BE194EE80238B7 /* SPGDPRPartnersViewController.xib in Resources */, - 0E0FE0B8B2BDCACB5ECEF62EF3375B80 /* SPGDPRVendorDetailsViewController.xib in Resources */, - 71F08E1EC2D0C8CA35BE4BD9BBF3698E /* SPJSReceiver.js in Resources */, - 7B41F5CE95732E965ACC4D817E88B517 /* SPJSReceiver.spec.js in Resources */, - 76FB584D728BC713D2A1234635F7CD85 /* SPPMHeader.xib in Resources */, - E91DB4AAE272985ECE5180E2B454FF47 /* SPPrivacyPolicyViewController.xib in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D3967E4CB70AC1709D2C76B7BC185624 /* Resources */ = { + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EC16E8764425D58664210F5E9C8693A5 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FAF86E4303E6B42CBC04B0E7F274FAEF /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E0FBE3F867932025316C9673CE918127 /* Resources */ = { + EE328A3063F3B93D42304EEB0BCC7D41 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 91549396B013707E28228B371738EDCB /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E0FD9B91B38A9E8D05B4925B52A57699 /* Resources */ = { + F22AD97C117FFEA62539BD9661FE31A9 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - EA930128BAD2C305DD1DD080C1F053D0 /* Resources */ = { + F2FB2D1AD54748C77F7BC0783FE38621 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3527E7AF75181E57E0E2951F3CDFA0C2 /* Barcode.png in Resources */, + 3D79750B26A2602EC0B63212A155BAE5 /* images in Resources */, + 5A1F0264F883C81BA3C9BB59B61C79FE /* javascript in Resources */, + A072F7B9DAF1246FD9627429AB822483 /* jest.config.json in Resources */, + 47A79FD540BE671C2E737C8C2859EF21 /* LongButtonViewCell.xib in Resources */, + FC0504C217ED8774842F0B4F3B02FBA0 /* PrivacyInfo.xcprivacy in Resources */, + 67F28A410FE50AA82AAB5D72ACBD8806 /* SP_Icon.png in Resources */, + 3B940D502D4A1469497702FDC3446BB8 /* SPCCPACategoryDetailsViewController.xib in Resources */, + 706546C97EFF9C0C7BA5ED415432F4C9 /* SPCCPAManagePreferenceViewController.xib in Resources */, + DA839AF84881478750BADF7CBB6EB7C6 /* SPCCPANativePrivacyManagerViewController.xib in Resources */, + 398606BAE47F5838D86AAEA79AAD330C /* SPCCPAPartnersViewController.xib in Resources */, + 19D605E74EEAC94D578B9E0535D8B722 /* SPCCPAVendorDetailsViewController.xib in Resources */, + 719FF446F175A25EBFC0546BD4CF3AB0 /* SPCustomViewController.xib in Resources */, + C436C152E302FC42EB5363E3E0DCCBD4 /* SPGDPRCategoryDetailsViewController.xib in Resources */, + E35057B482504E6059859DB6FBD1DD1A /* SPGDPRManagePreferenceViewController.xib in Resources */, + 2979477FBD228A0D857FDFCE5B169E14 /* SPGDPRNativePrivacyManagerViewController.xib in Resources */, + C13F938A333EAD9B173F0CFC798D67E6 /* SPGDPRPartnersViewController.xib in Resources */, + 8C1EB97D4A8944524ED5AC5D3F01D0D5 /* SPGDPRVendorDetailsViewController.xib in Resources */, + FB3E1374F361FF70B3540653536BCD46 /* SPJSReceiver.js in Resources */, + 4B10E679DDDF43EA604B1B19A5AEE651 /* SPJSReceiver.spec.js in Resources */, + 6C061B03EEE882C3C7918717D81D325E /* SPPMHeader.xib in Resources */, + 9E0315A819CCE40715AA7EA0D3FDC908 /* SPPrivacyPolicyViewController.xib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F4DC0D21914A7CF7A5E411864B41FF4B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 188E5BBF0DA369415205980E7F2EC0D3 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EE4ED0ABD89DB140E32582B6BFB9859E /* Resources */ = { + F5AE537C56CDBDED461070DDC66E4372 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - EFB878584A4E92B6B83157DD3FFA75D9 /* Resources */ = { + F61A40F645930C896568C5F47E7C8B06 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + A84B2A821CAF78D5A4BC6C1962490331 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 02431E8DA7BD05BC5FCB53652033F2C9 /* [CP] Copy XCFrameworks */ = { - isa = PBXShellScriptBuildPhase; + F7F43A67A0FF335196A76FEE1E7A802B /* Resources */ = { + isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/SPMobileCore-tvOS/SPMobileCore-tvOS-xcframeworks-input-files.xcfilelist", - ); - name = "[CP] Copy XCFrameworks"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/SPMobileCore-tvOS/SPMobileCore-tvOS-xcframeworks-output-files.xcfilelist", - ); runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/SPMobileCore-tvOS/SPMobileCore-tvOS-xcframeworks.sh\"\n"; - showEnvVarsInLog = 0; }; - 40FAC58DAEA98F43C2FFB14FD7591630 /* [CP] Copy XCFrameworks */ = { - isa = PBXShellScriptBuildPhase; + FC6361D286EBB0DA92ADBDEB35734173 /* Resources */ = { + isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/SPMobileCore-iOS/SPMobileCore-iOS-xcframeworks-input-files.xcfilelist", + runOnlyForDeploymentPostprocessing = 0; + }; + FE6A983F752EE54B32D4EB310D49553D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 11D8A917FCCBD88C149BC69256451AC8 /* [CP] Copy XCFrameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks-input-files.xcfilelist", ); name = "[CP] Copy XCFrameworks"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/SPMobileCore-iOS/SPMobileCore-iOS-xcframeworks-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/SPMobileCore-iOS/SPMobileCore-iOS-xcframeworks.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; 8C5B5926777AB8C2838BC915F74F1BC1 /* [CP] Copy XCFrameworks */ = { @@ -7307,68 +8161,54 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - D0A53AC835CD5175D3B56B19DECD8416 /* [CP] Copy XCFrameworks */ = { + D2563F8C51D75930A6B832D6E673E318 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks-input-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/SPMobileCore-tvOS/SPMobileCore-tvOS-xcframeworks-input-files.xcfilelist", ); name = "[CP] Copy XCFrameworks"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/SPMobileCore-tvOS/SPMobileCore-tvOS-xcframeworks-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/SPMobileCore-tvOS/SPMobileCore-tvOS-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 05889C4844FCA5AFF4DB5AC336FB5F6E /* Sources */ = { - isa = PBXSourcesBuildPhase; + EE23006ECB6E077044AB05F97C143D3A /* [CP] Copy XCFrameworks */ = { + isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( - 85A77336505B3EA0D13BE8DA1CEE3147 /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m in Sources */, ); - runOnlyForDeploymentPostprocessing = 0; - }; - 065450C249EA8AA2E22F615A2401D4A8 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/SPMobileCore-iOS/SPMobileCore-iOS-xcframeworks-input-files.xcfilelist", ); - runOnlyForDeploymentPostprocessing = 0; - }; - 06B45B29865ABDEABE05E62D7980C6BB /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1D73C013BEADC1C65C37DD3DA1C4A4B5 /* IQKeyboardReturnManager.swift in Sources */, - 73FC32CA42ED30D3B475A536A8204A7E /* IQKeyboardReturnManager+UITextFieldDelegate.swift in Sources */, - A4BFB8F6BC8EDE81EB96549EB2CCC7B7 /* IQKeyboardReturnManager+UITextViewDelegate.swift in Sources */, - A563D5AD6B27E27DAAA8DB369C2ADD78 /* IQKeyboardReturnManager-dummy.m in Sources */, - 8E42163D7EF727ACA2DFDE9C034873E5 /* IQTextInputViewInfoModel.swift in Sources */, + name = "[CP] Copy XCFrameworks"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/SPMobileCore-iOS/SPMobileCore-iOS-xcframeworks-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/SPMobileCore-iOS/SPMobileCore-iOS-xcframeworks.sh\"\n"; + showEnvVarsInLog = 0; }; - 0E56F2BB7EE22DBC3D79B3F27BCAF713 /* Sources */ = { +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 09213BF2FC1623B0E10048F02D295EA8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7FA9122DFFB32B0BAC60D11B59042FA2 /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0F4376AC7C259BDB3AA16C3F9A1DFC4B /* Sources */ = { + 09F445D046736898EBE272F0594E5F54 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 856F57EB0EC433C9AF8E7E089D282C12 /* IQTextView.swift in Sources */, - C42BBB92B76DBF25468893978B57831E /* IQTextView+Placeholderable.swift in Sources */, - DCE23DD7D98E31EC32F8BDA04D73F4E5 /* IQTextView-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7380,21 +8220,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 1208CD24FD0CF0B33B57440F688E8ADF /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - C1EB4BEFCAD263937EA63157EDB46206 /* Pods-Tests-NativeMessageExampleUITests-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 12E8F81045AD4CBC05DD24088ACB81FC /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 165C8897201B1E092F4DE78BFD92D2F8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -7498,38 +8323,53 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 25AF5C52C6FDAFCA03D45E941DB29AF9 /* Sources */ = { + 20AE7DC875AD08577C3703D039EF1560 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 43FDBC0015161B1DECFF9DAEEEFCF9CE /* FIRCurrentDateProvider.m in Sources */, + 889F8838BA5B9ABE765593C9B4EFC2CC /* FirebaseInstallations-dummy.m in Sources */, + C12D74EF2653C4F1C75F27CF926DBAF4 /* FIRInstallations.m in Sources */, + D3149E8AAEEAEB2F95DF65CE8668614B /* FIRInstallationsAPIService.m in Sources */, + B1E49099523C649C5570E76A87D4B202 /* FIRInstallationsAuthTokenResult.m in Sources */, + 9D34AA9A8855CC4FBF8C6B9369621637 /* FIRInstallationsBackoffController.m in Sources */, + 89C0678D56738ECDF86E588E1454FA9D /* FIRInstallationsErrorUtil.m in Sources */, + 6562A3FFAACF4E2767DA2E1D933D1C18 /* FIRInstallationsHTTPError.m in Sources */, + 135FC315A97F8A2CE4F1D0BB470B1603 /* FIRInstallationsIDController.m in Sources */, + 9A89FFCFC2A17839FC64E3CA908FF6F8 /* FIRInstallationsIIDStore.m in Sources */, + F733F52ED7140EF527BA29BB112778B2 /* FIRInstallationsIIDTokenStore.m in Sources */, + 2733E422CC910FBC27AFE219C051E011 /* FIRInstallationsItem.m in Sources */, + 65D9F6E820F16343ED7779E027D114ED /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */, + CDC01082A9D3E809CB2C85306F346C2F /* FIRInstallationsLogger.m in Sources */, + 2AB73082683D7D83ADB8BB50F30B9DAA /* FIRInstallationsSingleOperationPromiseCache.m in Sources */, + E2A8240497CC2326C258BBF216B22F7B /* FIRInstallationsStore.m in Sources */, + C8CF088E1EAAE96B54B8758F2DC0398E /* FIRInstallationsStoredAuthToken.m in Sources */, + C7D98D187128D3E4A55E4E20EA99BBDE /* FIRInstallationsStoredItem.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 28165BCF6E0670DD8CD9758F0D8B4A28 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + AC2DE4E0FD759C9EC0DEEA80B5FF82E7 /* Pods-Tests-AuthExampleUITests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 285242C2263CBE4293327674BF86FA34 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FA3A2199ED7B1C926F38351341830E11 /* nanopb-dummy.m in Sources */, - 39711BC12AC59D82512E877C62769C6C /* pb_common.c in Sources */, - 09440F783DF7B10F03B206409201A508 /* pb_decode.c in Sources */, - 3C373210C22B6EC0DE873808F202A644 /* pb_encode.c in Sources */, + 42E40E3FD6E214CDD1FD6B337A031E2F /* CwlCatchBadInstructionPosix.swift in Sources */, + 462E7E84EEFCCE146DAA352A6BFE3C33 /* CwlPosixPreconditionTesting-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 276C07C77B25A9976A8329D86C8AC7D9 /* Sources */ = { + 29D792650F6318B783EC23C8BDF71B7B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CEF4CEE042332E5C3CDF4955D0C4364B /* GoogleUtilities-dummy.m in Sources */, - 9911EF15E342F24EB4EC23B0ABFF7CC9 /* GULAppDelegateSwizzler.m in Sources */, - 7D7F74526560F8EF6135017A7FA83B5E /* GULAppEnvironmentUtil.m in Sources */, - ABCAB6BDAC082FE53F65681358F90429 /* GULKeychainStorage.m in Sources */, - E26EB2F1C52BBD2E35E2D075ACEA91B3 /* GULKeychainUtils.m in Sources */, - 3BC6A111CE45BF870CA4152461CC7A0B /* GULLogger.m in Sources */, - 7C777932941C6EA53EAB855BDC8EDF7A /* GULMutableDictionary.m in Sources */, - 1D015364917691468C7F86970E977DBC /* GULNetwork.m in Sources */, - 7190E68E282465AAE900D152367CCCAA /* GULNetworkConstants.m in Sources */, - 3E74E638D3B8671946E7F5DB25D66EBD /* GULNetworkInfo.m in Sources */, - 7948D82F68FD8B1BCE4962FE81B8E1D0 /* GULNetworkURLSession.m in Sources */, - 9C79E37C0621060C31FDE074BAF33B22 /* GULNSData+zlib.m in Sources */, - D3C954A5CD31145CD777A148E24CC117 /* GULReachabilityChecker.m in Sources */, - 9CA2EF0DE4F47984AE4EAE2BB34F9FF9 /* GULSceneDelegateSwizzler.m in Sources */, - 1DB025C4433CC812AD91D07DBD09E5C6 /* GULSwizzler.m in Sources */, - 72030D2AFBC5E0DE5353F515A92F9C36 /* GULUserDefaults.m in Sources */, - CA546BE3341255212418711402BE1ED8 /* IsAppEncrypted.m in Sources */, + 48708299B5925AE04C9D91F73BCCC642 /* Pods-Tests-SourcePointMetaAppUITests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7544,13 +8384,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 315701F99A74C2C8E842520F71A9B607 /* Sources */ = { + 30B935076EFCF22BADA8B2DA35DD121D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 850123D3B174F091C5C7076F6221E3AD /* IQTextInputViewInfo.swift in Sources */, - 80C458407AD8BC005BFD304DD2D506C9 /* IQTextInputViewNotification.swift in Sources */, - D870B1CD210C55AFA215F90C75EC2922 /* IQTextInputViewNotification-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7562,64 +8399,40 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 35559F29ADCC06A78EB228D3537F64A8 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 3BEEA5D261B10008D4AEC2BB27DF8C1D /* FIRCurrentDateProvider.m in Sources */, - 5B2C690DFD4AB4018DA5EB7D0E85A737 /* FirebaseInstallations-dummy.m in Sources */, - D03C7EE530171BB6866372C0005FA1E2 /* FIRInstallations.m in Sources */, - D7CF5FD751CCBF713457010F07190FA0 /* FIRInstallationsAPIService.m in Sources */, - 7868CFBD184F790A176B74B5026E39F1 /* FIRInstallationsAuthTokenResult.m in Sources */, - C6CFC1A511E5411A6AAACB6C29311490 /* FIRInstallationsBackoffController.m in Sources */, - 41C51C02491B275EEA86C62E9D295982 /* FIRInstallationsErrorUtil.m in Sources */, - 105D29C43A7D9CFE16108D41940ECBDC /* FIRInstallationsHTTPError.m in Sources */, - AAC3F6FA9928B4290218608711616CD0 /* FIRInstallationsIDController.m in Sources */, - 9443AFA1007B2A92D40D0226648D466B /* FIRInstallationsIIDStore.m in Sources */, - D2CB88D18D190A8AF225BB8239D9F888 /* FIRInstallationsIIDTokenStore.m in Sources */, - 9376A200EE7E8FB5FCB0B322AA6593DB /* FIRInstallationsItem.m in Sources */, - 3689692E1DA27C81794CD58FFF402CCA /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */, - CDE185968A997452730F50C92FB65350 /* FIRInstallationsLogger.m in Sources */, - 99510F6F1DFF85D83BEBE7041E812F94 /* FIRInstallationsSingleOperationPromiseCache.m in Sources */, - CD3E17320C0EF0C673E64F67382EA1A3 /* FIRInstallationsStore.m in Sources */, - A4221710FAA211152DD51E1C9D917853 /* FIRInstallationsStoredAuthToken.m in Sources */, - FF752AD0BB01797E1AE64D5FFE7351AD /* FIRInstallationsStoredItem.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 35C16876B9EC72C575A3050C25BCB326 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 241E2DCF7294707E22536BB1A0A1A520 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3C79EA92060C50461ACE427FA51A249F /* Sources */ = { + 37874208BF93ED050FD0300287F0342A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8EF81EFD62E29889DC509AFC7B9A4DD9 /* _ObjC_HeartbeatController.swift in Sources */, - B3DE785DFDEF6C64BF889E037E0BA01E /* _ObjC_HeartbeatsPayload.swift in Sources */, - A2C7FE1FF5797B9F98FC2A030B91C664 /* AtomicBox.swift in Sources */, - D958E5A146BD1B601255824138758CB0 /* FirebaseCoreInternal-dummy.m in Sources */, - 3216D0B26C0F5FE27CEC8A525D9A63C3 /* Heartbeat.swift in Sources */, - A29C99BFC344606ADCA8B57B1D4C2E57 /* HeartbeatController.swift in Sources */, - AF9DE4C1FB2FCF8AFBFE30EE7AF6909A /* HeartbeatLoggingTestUtils.swift in Sources */, - B908AD89836583E42FA598057EE5748B /* HeartbeatsBundle.swift in Sources */, - 18D09055F466429C8162111618316F29 /* HeartbeatsPayload.swift in Sources */, - AE305395222E5D1CE17BA67BA1443692 /* HeartbeatStorage.swift in Sources */, - 77CD5E3407D23101729E2FC02108365B /* RingBuffer.swift in Sources */, - 234C61CAE82B1B4CE2F98253823F8EC6 /* Storage.swift in Sources */, - 2802E8DC0C6C7B930815B5C90DEF75E9 /* StorageFactory.swift in Sources */, - 65070144980EBFD63872231D3E10FEAB /* WeakContainer.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3D7D2660AE3E196072D83A9739F02740 /* Sources */ = { + AFE7DAC92ACDEDA7DA3DC9E1A54CB2F4 /* FBLPromise.m in Sources */, + A35A840A0AD9830EB5374EC1C477E3EB /* FBLPromise+All.m in Sources */, + E3E799D8787E6C00CEC6E214B8C3A8E2 /* FBLPromise+Always.m in Sources */, + 954C0F36E97047A577FF1357B9C0FBBE /* FBLPromise+Any.m in Sources */, + 60B509039763325F5314393DCDD7C472 /* FBLPromise+Async.m in Sources */, + 9DB4007FAB30DBFB16D2B7ABBF4AF85E /* FBLPromise+Await.m in Sources */, + 4076F13A7D32F82EE5A4A1EF4DB520D8 /* FBLPromise+Catch.m in Sources */, + 92D4D54B1A847D46595C252A928178D9 /* FBLPromise+Delay.m in Sources */, + 3CF525CDCD6877F0E35F8358089551E4 /* FBLPromise+Do.m in Sources */, + 30C3BBD4A266167853362EC5C0C9ECCC /* FBLPromise+Race.m in Sources */, + FDAE62A1B65E201A53099EC8B5E626FB /* FBLPromise+Recover.m in Sources */, + BF2072D3447F8405CC1236BD3AD91006 /* FBLPromise+Reduce.m in Sources */, + E32F0E8C28D0C6B3CEEAA10594EAEE26 /* FBLPromise+Retry.m in Sources */, + 4BA15C1EFB17DF94B7758A5552EFE301 /* FBLPromise+Testing.m in Sources */, + BB9401E5B5E4BF1A9482E724C65048EF /* FBLPromise+Then.m in Sources */, + 8906731121D7E71D8356EB7841785652 /* FBLPromise+Timeout.m in Sources */, + 931E81541F3170FAD7CF3FA2864EB9DD /* FBLPromise+Validate.m in Sources */, + 881297DFAE7FCD0B7CE35BCB17B9BB04 /* FBLPromise+Wrap.m in Sources */, + C6D7B28BB621AA0810B066E47072834E /* FBLPromiseError.m in Sources */, + 8C16C6296EBD70821735825CE53CC264 /* PromisesObjC-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3F9A3B731D5216E632062C9B7F16FABB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 0A027154BD8C18CCFEFDC6FBA4480484 /* IQKeyboardInfo.swift in Sources */, + B7A4CFC0A062E26F77CCBA595A8D630F /* IQKeyboardNotification.swift in Sources */, + 47A40083079AC4AE82C868B4879BDA85 /* IQKeyboardNotification-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7662,55 +8475,136 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4636DFF94E8EAE8DEA3FACBD026D57F0 /* Sources */ = { + 4313F6C1087CE72D0B6D0ACBDF17C7EA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + A96CFA1E3D24A64F5DDBFE8B93F6A1BA /* IQTextInputViewInfo.swift in Sources */, + C54B8C3761BF9C926CA29565E4013FFF /* IQTextInputViewNotification.swift in Sources */, + 3DCC0F266E64D40B629D62B58CBF2663 /* IQTextInputViewNotification-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 438EC022B8EE814DC03BCDD703AAAD2E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 43AAED685D79A323AA2522D7983F67F9 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 954A154D34665966021DDAF41670BD2C /* FIRAnalyticsConfiguration.m in Sources */, + 7493C9A6B26E0389E19D56F4E597B420 /* FIRApp.m in Sources */, + 74D8047BF13BE50C4380FA0FA14B5398 /* FIRBundleUtil.m in Sources */, + 405E2B82217AF17D8D1A751D9CB5D61A /* FIRComponent.m in Sources */, + 994A121F189424AC74C1E52D0B20635C /* FIRComponentContainer.m in Sources */, + B68CB6E24ABF7B54CEA8B907EE5C658A /* FIRComponentType.m in Sources */, + 9F9E0690FED432F2EF91B9BFBA99D3E6 /* FIRConfiguration.m in Sources */, + 4112FF331A8F8AFCFE98A20E5E7B9807 /* FirebaseCore-dummy.m in Sources */, + 8931C1D7D40FF9403C542602C138B39E /* FIRFirebaseUserAgent.m in Sources */, + 6C4F8229CC4C8329914D4F065DEF2C0D /* FIRHeartbeatLogger.m in Sources */, + 0C7E8C6D76B84FE123ACE539929AC205 /* FIRLogger.m in Sources */, + FFF26CFE6F60E62B5E9A3DB35B80CD7A /* FIROptions.m in Sources */, + 6AEFEE8DDE648E29A11CC391E311E11E /* FIRTimestamp.m in Sources */, + 40AF4CA0EDFA57BB4107C8CF0A899FFC /* FIRVersion.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4753E599053CD00360B2FB8AE61D428D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 47EC49A07F75BD222AF0C2DDC374338C /* Sources */ = { + 4C3DD626082BB69BA00784C65617F192 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ADC0D6AB119D1E4C02B19FD93EFB5345 /* FBLPromise.m in Sources */, - 079BB52D4F83360075376E744ED49821 /* FBLPromise+All.m in Sources */, - C465A8C742C3A1BAEBEA83FDA14EA721 /* FBLPromise+Always.m in Sources */, - A400522030F9321800D1E16D3F050C90 /* FBLPromise+Any.m in Sources */, - 051F63FC41ED071369213C9AD5B32AC4 /* FBLPromise+Async.m in Sources */, - DC2D1FD4D23840A8C233C5628A778D4C /* FBLPromise+Await.m in Sources */, - 3E9418C3CDA572BDD47AE8E1242EEA5B /* FBLPromise+Catch.m in Sources */, - 6718B8C19725AFF7276A90559D058DFB /* FBLPromise+Delay.m in Sources */, - E3B2DBBA4F44916F2A6A3D21FC05D4F0 /* FBLPromise+Do.m in Sources */, - FE83EBFE7A9BDAF681E9176551A9F8AD /* FBLPromise+Race.m in Sources */, - E243597353525ED8ADCE37E5C192B153 /* FBLPromise+Recover.m in Sources */, - F321B6E2FFCD8F6E7FBF6DA08A32C470 /* FBLPromise+Reduce.m in Sources */, - 196645F0AB4237F134F004FFC2E6432C /* FBLPromise+Retry.m in Sources */, - 4172C4AD76977E0D6DCFC6D39F3CCC03 /* FBLPromise+Testing.m in Sources */, - AC5560B1E334F63331CFBAEC87FCCE5F /* FBLPromise+Then.m in Sources */, - 2F12FB5EB40785F404030C1A836EA017 /* FBLPromise+Timeout.m in Sources */, - 1238A9819FF5C4984C57031E9A6B8C97 /* FBLPromise+Validate.m in Sources */, - 4F1DE8199DE395EC00D7D5C1489B97E3 /* FBLPromise+Wrap.m in Sources */, - A97B5F447632644866D2CE15E1228B81 /* FBLPromiseError.m in Sources */, - 5F545ABBC13F43DA3C51F12B8D624C77 /* PromisesObjC-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4BA7EBCDDF22E265A7A163ECE038B93B /* Sources */ = { + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4EE2018546C55CDEE07F53AAD939B265 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BE90281F3D712810D22EC11D42A35712 /* CwlCatchException.swift in Sources */, + 60047BD8AF182AD53512CB4F23F741B5 /* CwlCatchException-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4EE414C687BD3A4837DCCB29E149BB36 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + F5B060DC00F8542330C38DB0BD0B9B6E /* nanopb-dummy.m in Sources */, + 131A2352CC8213EE7F580146D3A70338 /* pb_common.c in Sources */, + 524BDC4CB74414F98BD75FD8BA36226F /* pb_decode.c in Sources */, + 8E488F785EEA12B53987EC7C15DAB186 /* pb_encode.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 586F417D02DDFB29A0BA3B12B9E644B0 /* Sources */ = { + 575A569CDE16488F640BFBDD72C701BA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 10EF5E97991D442245AF7A2E29030684 /* AsyncBehavior.swift in Sources */, + 230937F1917C94B58F9C4369D9DE3850 /* AsyncDSL.swift in Sources */, + 54AAB7E8FBEB048BB04F0620D8479FFB /* AsyncExample.swift in Sources */, + 9DBA28A24BAE417C61EDF7459B1417A6 /* AsyncExampleGroup.swift in Sources */, + E81C073333A1292A00E7A6894658A671 /* AsyncExampleHooks.swift in Sources */, + 200BB60276088AC5C663547014DB10E5 /* AsyncSpec.swift in Sources */, + 3FAD9B750D7346E3B47DC71B23492C22 /* AsyncSpec+testMethodSelectors.m in Sources */, + 62344244793E5ABCC224B3EEF08F28EE /* AsyncWorld.swift in Sources */, + 106295D97388A896BBADD5F46794B9D2 /* AsyncWorld+DSL.swift in Sources */, + 5676384BE46B29B3008A5DCF5CA20905 /* Behavior.swift in Sources */, + A943E8A04328CDD96A1058B9976C5E26 /* Callsite.swift in Sources */, + 532CDEAD5A8DBA5C9F053FDA420C5D46 /* Closures.swift in Sources */, + 914421E8A8B0CB5D7F60E944EBBF3934 /* CurrentSpec.swift in Sources */, + 4172E7C51B199D9FA4E8D007C5A29B66 /* DSL.swift in Sources */, + A4C568E5E19F86D2B2FA6939F27CC71B /* ErrorUtility.swift in Sources */, + 760AD73609933DD80F292087F77C65B6 /* Example.swift in Sources */, + 7278303400D2ABC6AA304C9325B02701 /* ExampleGroup.swift in Sources */, + 893E76A1AE8389810AF5D77B1660A5F3 /* ExampleHooks.swift in Sources */, + 764AAC6D37DCEE0CC7B6487094B2E76D /* ExampleMetadata.swift in Sources */, + E9E6D93BC667EE52F9B57BD4BA469406 /* Filter.swift in Sources */, + 3CEEFF73AC131A090B954E435211F57A /* HooksPhase.swift in Sources */, + 40A83585CEE942FBA4FFEE0BD862A48E /* NSBundle+CurrentTestBundle.swift in Sources */, + A8A15873A0EDC383F2FDB2FA2A1470B8 /* QCKConfiguration.swift in Sources */, + 384716AA84A6AABC193E70BBD3551E4D /* QCKDSL.m in Sources */, + 2993E41F4D816F700E95292B7E28AEB9 /* Quick-iOS-dummy.m in Sources */, + 6741E7FC57848343D9C6AEE59812A0DC /* QuickConfiguration.m in Sources */, + D52BDAA40482729E199984C72986006E /* QuickConfiguration.swift in Sources */, + 4AC342BFDFE4CBE507542F7158B7370D /* QuickSelectedTestSuiteBuilder.swift in Sources */, + A9DC8124B6876F8AEB6AA6C6CAD48F4A /* QuickSpec.m in Sources */, + 6F2CA58486E9F11EB52DA7584225E90D /* QuickSpecBase.m in Sources */, + 6C0DDD6540653EA5EF76BAE08979D62C /* QuickTestObservation.swift in Sources */, + E33A06CF74E44D372DB5E4F602D61EF7 /* QuickTestSuite.swift in Sources */, + 393EA19D753060B10D0E5476301A6D49 /* StopTest.swift in Sources */, + 39CDB19C4C05A139C9892619717AC07C /* String+C99ExtendedIdentifier.swift in Sources */, + E3C7CA1F2C17045FC7DB8CAF7D73938F /* SubclassDetection.swift in Sources */, + F539AFA99FAC59495B95C7FE281AD28D /* SuiteHooks.swift in Sources */, + 141DA98037BFADDA0F32291A522BB3D6 /* TestSelectorNameProvider.swift in Sources */, + 2E8B6514F514A729590A81E03B5DE65A /* TestState.swift in Sources */, + 194C6A69F5CEFA8B647322223F3A1E11 /* URL+FileName.swift in Sources */, + 1B7A8F55CFCFE073C5C72C48977722B3 /* World.swift in Sources */, + 18520690BEF54206E7584E6CCF103B32 /* World+DSL.swift in Sources */, + 1D68793DEB8218A1E7A36E9125E50F20 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 58E4B1FC8B12F539ADB9AF57EA297D2B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 8097D3814DD761805D17C1D26F355540 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5C78F13873D1ADBD2132F25F813D6D53 /* Sources */ = { + 5A76977681B168FA1CF3E22D1263B8B9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -7733,129 +8627,139 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6F2EA5E325900ED7EE745EE8039CCEFD /* Sources */ = { + 6BD096DE01B11DAD900168698B1F5F34 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9CE3FF0FC82AAD2CC8663965AB73A13C /* AdapterProtocols.swift in Sources */, + BACB9172D673201751B5D21764477BDF /* AllPass.swift in Sources */, + D6707BC053D52948BBD6804C7D3A173F /* AssertionDispatcher.swift in Sources */, + 541C62C64648C6F7A7B06C130855FA6C /* AssertionRecorder.swift in Sources */, + 5BEF5CEC91101BD98D478BD892528C70 /* AssertionRecorder+Async.swift in Sources */, + C17AB96CC983DC35ED7D4E54D4F8FFE7 /* AsyncAllPass.swift in Sources */, + 257CA545DD8F5B2CB45CE13F5D583EAE /* AsyncAwait.swift in Sources */, + AF6111DD8DC71EA750815866A77CBF0D /* AsyncExpression.swift in Sources */, + 365F73583037D0B277C80E70DDA88A62 /* AsyncMatcher.swift in Sources */, + 14B6CD10CEEBAE2E97DD01C6ACCCEE65 /* AsyncTimerSequence.swift in Sources */, + 20F33144FABEFFDD570E3540FADED175 /* BeAKindOf.swift in Sources */, + C126417A4B639D734C8E16ADC41C2958 /* BeAnInstanceOf.swift in Sources */, + EDE70F270CA83263EACCAF7A7456A3DB /* BeCloseTo.swift in Sources */, + B170898CB7CFDEF30B22FB58C3D6CE75 /* BeEmpty.swift in Sources */, + C44250F02DE56F7341E59C44BE035B0F /* BeginWith.swift in Sources */, + D9AE2EA1EC1BD7F58D014113B70A7EEF /* BeginWithPrefix.swift in Sources */, + 37AC1886871D051C086DC4ED86EA159B /* BeGreaterThan.swift in Sources */, + CEF2FA907B59AFB2FAE828056FC8926A /* BeGreaterThanOrEqualTo.swift in Sources */, + DDC5CD0FA94051157EAD44DCA11D4D5B /* BeIdenticalTo.swift in Sources */, + 3DBB73DF5FE9561A3BF1376126AFA5A2 /* BeLessThan.swift in Sources */, + 804F74BE6D57E34B1655405D20EEFA1D /* BeLessThanOrEqual.swift in Sources */, + 610BB71178C79F5071FDB51045F79596 /* BeLogical.swift in Sources */, + 13C2FD16E9B856418787A685B49DB321 /* BeNil.swift in Sources */, + E562D7FD7B80D54B0E3C908922000595 /* BeResult.swift in Sources */, + 10BB5BD599785055C092310B1FED7485 /* BeVoid.swift in Sources */, + 2CB251BA5ED66B35CA44C76151800FDA /* BeWithin.swift in Sources */, + 1F7BE94B345F840E50ED0C82B136A413 /* Contain.swift in Sources */, + 0B6F04CE2EA80488636D90C4A8C86096 /* ContainElementSatisfying.swift in Sources */, + 80B82781B81C338EC01EB2715CDAD602 /* DSL.m in Sources */, + 66BD0AFE87FD37205D315B6429CD63F5 /* DSL.swift in Sources */, + 8E5E43286B05CBC5366AD6130DB3F3B6 /* DSL+AsyncAwait.swift in Sources */, + 846BF5330DD96081D86381224386284F /* DSL+Require.swift in Sources */, + E9D7293147F72BECD0FF3F00B5A43881 /* DSL+Wait.swift in Sources */, + 4EE1F5E35A80958DD706031221117B2B /* ElementsEqual.swift in Sources */, + 531F4516F0B15B271AF13355D8CD55D2 /* EndWith.swift in Sources */, + CA0118A46B671167571D4755917A367F /* Equal.swift in Sources */, + 4EF14F6516D6C16A8D3B24D7CB14EEF4 /* Equal+Tuple.swift in Sources */, + B5D15EFC024C732ECC2C69DA630192EB /* Equal+TupleArray.swift in Sources */, + D01C47D9DBF17DE850ED3D03432B40BA /* Errors.swift in Sources */, + CDE2D1E5D05C1DDEB3FC164FC2DD252E /* Expectation.swift in Sources */, + E0F85C04905215B579E6620E545FD3B7 /* ExpectationMessage.swift in Sources */, + 749CB711DD437086998B63AD8E67067F /* Expression.swift in Sources */, + 6FABC5B14DD375EB3D6079F8AE630E68 /* FailureMessage.swift in Sources */, + A76667278BCFB6C3B5C3A60007E2F6C4 /* HaveCount.swift in Sources */, + 04F53977B7E98FB594E0CC339C38A4D9 /* Map.swift in Sources */, + 3B25346E05DC25C0921A825E66A48D64 /* Match.swift in Sources */, + 921D6F2E0F58E42658BEB12886882E95 /* Matcher.swift in Sources */, + FAE7CC1CB3AABF2AC26C509EDFA5B97F /* MatcherProtocols.swift in Sources */, + 5788F6A41F490BA4F8D89B6ED952C5FA /* MatchError.swift in Sources */, + 153221793E0474B7B93799990CB4989E /* Negation.swift in Sources */, + A48EEF468A61108A2FB89B27134C9776 /* Nimble-tvOS-dummy.m in Sources */, + 84437A3D524AF26BCF0B0AAF98530EC3 /* NimbleEnvironment.swift in Sources */, + 33EF6EC39620AB9A739CA4BE11E72BC6 /* NimbleSwiftTestingHandler.swift in Sources */, + 96B2795D21F95FE1D8C6E1CF242005F8 /* NimbleTimeInterval.swift in Sources */, + EE6AFC459EBDF61ADC42F2F85C74C4C8 /* NimbleXCTestHandler.swift in Sources */, + F8A7EC75FC5EF36ABBACA25059D83AD5 /* NMBExceptionCapture.m in Sources */, + 3450E07D11B6725479708866A22CA0F0 /* NMBExpectation.swift in Sources */, + 2C4ED8CCEC312B0B6FA2D0FBC4D602FF /* NMBStringify.m in Sources */, + 323657BC696F1D62932DB6DD3262B511 /* PollAwait.swift in Sources */, + 57D5DE6136C3C41C02909DA74C316785 /* Polling.swift in Sources */, + D97FEE526653B86DBDEEB6CC6B039BE2 /* Polling+AsyncAwait.swift in Sources */, + AC4EEAE658A98FFB1BACA56FAEAACBC9 /* Polling+Require.swift in Sources */, + A820D57643F8EAEF04FF06CC521EE8EB /* PostNotification.swift in Sources */, + 602B72C096BD766AAEB2286B8BD51294 /* RaisesException.swift in Sources */, + 91A9CA7AF46D6CE2880DCA610D02FBD2 /* Requirement.swift in Sources */, + 92D7A4883DE80877BB983AC7094AD80E /* SatisfyAllOf.swift in Sources */, + 66D0DE389F5E0B1B149A6687B9884E20 /* SatisfyAnyOf.swift in Sources */, + A9E3707E9F1501AFD96A3D21EEE14ABC /* SourceLocation.swift in Sources */, + 6206E5CD384823133D7BF1C3B9DC9520 /* Stringers.swift in Sources */, + 3CD7469F814E39E2590078E9EF586773 /* ThrowAssertion.swift in Sources */, + 19A4D6EC725DAEAF6B356A41A2F42AA6 /* ThrowError.swift in Sources */, + 4A9A72BD0456048AA3D2A4B838998B08 /* ToSucceed.swift in Sources */, + 25449CC98669E960AD824B69D0C87ABF /* utils.swift in Sources */, + A4EE4245EAF18CFFD1A68A68E8B64AB4 /* XCTestObservationCenter+Register.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6E0091E4ECEB48F43FD673C8B4CD3BB1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CF2C7E9BE7EE85468AF86E72200508B8 /* IQBarButtonItem.swift in Sources */, - 2AB24340DDFD1ABB97149695FCD0BAC2 /* IQBarButtonItemConfiguration.swift in Sources */, - D77BE52ABFEB668D36E2A916BA7C82BE /* IQInvocation.swift in Sources */, - 14013781D68D24E9CA22D1DFFF4A57BC /* IQKeyboardToolbar.swift in Sources */, - A75A69E51728F434EB0AE3050EE62374 /* IQKeyboardToolbar-dummy.m in Sources */, - 7D8B007D9AE0F874855B0B45B47B0FEF /* IQKeyboardToolbarPlaceholderConfiguration.swift in Sources */, - BA0B7EBBD9A5F9B174A83BB4B7D4DE4D /* IQPlaceholderable.swift in Sources */, - B582C699D55A21556A94D2032D32473E /* IQTitleBarButtonItem.swift in Sources */, - FFFEE926014EBF7CD1D8AC1EFD37FCD8 /* UIView+IQKeyboardExtension.swift in Sources */, - 509546C3B815F906B75334F37FB7B342 /* UIView+IQKeyboardExtensionDeprecated.swift in Sources */, - 8ECC1AA997309E820CEFA4658849C5AD /* UIView+IQKeyboardExtensionObjc.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 79B3F14D7442566C872AA43D0DA9D18B /* Sources */ = { + 777DFCEBD1FE285F39F2092772A35344 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CB041B1D09D3EC98B0F58778A5E4653D /* Array+Sort.swift in Sources */, - F11665E2F388820E6CF67E3A960EE19A /* IQDeepResponderContainerView.swift in Sources */, - 54750D5D19ECAC33B17287803C7B46C1 /* IQKeyboardToolbarConfiguration.swift in Sources */, - 99CDDE11C5C3FEB2A8E2F99BD55BF761 /* IQKeyboardToolbarConstants.swift in Sources */, - 57B0177BA2639DADA8F03F21BAEF0411 /* IQKeyboardToolbarManager.swift in Sources */, - 26ADA198C3BC8426575CD76F903E9EE7 /* IQKeyboardToolbarManager+Action.swift in Sources */, - F0835FED72DDCA5A864E6251280C1CED /* IQKeyboardToolbarManager+Debug.swift in Sources */, - 5B9B44EF8ED6FE5A68F5343F9791C80A /* IQKeyboardToolbarManager+Deprecated.swift in Sources */, - C624DD8578DDDB5A744B417CA6B5577E /* IQKeyboardToolbarManager+Internal.swift in Sources */, - 0A5D3DB59C7C638CAEE278B62C910649 /* IQKeyboardToolbarManager+Toolbar.swift in Sources */, - 3E51545AB4D6E8F37FBF8CDEFA5DDE3C /* IQKeyboardToolbarManager-dummy.m in Sources */, - 38078E5CC06FF0B19888FED18F35D6DC /* UIView+Responders.swift in Sources */, - C396159A9D89E814CCC1406467048004 /* UIView+RespondersObjc.swift in Sources */, + 2A9549B0AE9C27665639987870E2CF0B /* IQTextView.swift in Sources */, + CE156D71DDA0E5B674B89DF2AACF336D /* IQTextView+Placeholderable.swift in Sources */, + EE72C0C8695A5C364BD6637453741C93 /* IQTextView-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7E6559CB6699A2F00889EEF53A22205F /* Sources */ = { + 7FBF5CB7A6338ADCB7FB5706A4BB5D4A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7B2D294C4972F7DA816F9B2AC0A1E524 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7EF0DD6EC6207652DDA29AF72BDF3E21 /* Sources */ = { + 808DF4FFAEC10E89279706577BA22300 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 23E61A00EE5D5DF7D53F2F1804928221 /* Pods-Tests-ObjC-ExampleAppUITests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 806C40ED6BD8E50C701B551EE4566385 /* Sources */ = { + 89CAC34AD43FC7F99A67F1FE36594F44 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D3644ABBF34443B12BFDFDA9454B144A /* AdapterProtocols.swift in Sources */, - CA3C26BE399FB3BD657D2EEF011ACEBF /* AllPass.swift in Sources */, - BD8A87DB07CF834C1295373C781B4677 /* AssertionDispatcher.swift in Sources */, - D59AB452F84615D60979140D623959CF /* AssertionRecorder.swift in Sources */, - F4F5FD041E66EC3AC34255C67A6C9B59 /* Async.swift in Sources */, - 79078669FADB1D015FFD6541663F09EB /* Await.swift in Sources */, - 9494494A835EA3F942ABB78D9A6D81D5 /* BeAKindOf.swift in Sources */, - 83DADF0BC430E8378A0EA2E440F01F9E /* BeAnInstanceOf.swift in Sources */, - C5F59789DB2D57783C30E3C631F71850 /* BeCloseTo.swift in Sources */, - 8E5D3BEE8639C262E88813CA06907A8A /* BeEmpty.swift in Sources */, - DB7AC8E1746F9CD6A0C6449F24424A2B /* BeginWith.swift in Sources */, - C9A1D55C466BFFAB2F64F95AA090C76B /* BeginWithPrefix.swift in Sources */, - 106E256142B7A2C1B3291AF5D1BEC2AB /* BeGreaterThan.swift in Sources */, - 77D7C2409F5FADEEC010D48C48008EE3 /* BeGreaterThanOrEqualTo.swift in Sources */, - C3D230039A138FED0139F494DE9B59C8 /* BeIdenticalTo.swift in Sources */, - BD7922607011686F9A78CA276C0F570D /* BeLessThan.swift in Sources */, - 06495B5EBD9036841EAEBD8BBE4FEC99 /* BeLessThanOrEqual.swift in Sources */, - 1C80E90501B8B0A10AD8041A3657C11F /* BeLogical.swift in Sources */, - 4DB397B2754844F0F585B25744E75BEE /* BeNil.swift in Sources */, - 84F83965D58A60728311ECBAF76C2836 /* BeResult.swift in Sources */, - 149963B4E41DAB960398346E62E6C43F /* BeVoid.swift in Sources */, - AB53441A59A9266D7AF9EA2EDEA37EE4 /* BeWithin.swift in Sources */, - 8773C1F7E001149251F72F3B0E05F474 /* Contain.swift in Sources */, - 82B5DFEBC64045221755C35F2785FC27 /* ContainElementSatisfying.swift in Sources */, - 862A6D2DA83E6024BACDA8F52C44ED36 /* CwlBadInstructionException.swift in Sources */, - 399C86E5FA7498952A82F1C0D5101B13 /* CwlCatchBadInstruction.swift in Sources */, - FE76AE6606421F36E359286A4705C836 /* CwlCatchException.m in Sources */, - 116CFA08BF9F55C07F615A9F795E7EEB /* CwlCatchException.swift in Sources */, - 493D270B4B565E4C4F10C1F233DEF072 /* CwlDarwinDefinitions.swift in Sources */, - 685BC1A06DEE045E12CE23B80D6DF97E /* CwlMachBadInstructionHandler.m in Sources */, - 2BCEB579161CAE2404C8FDB7CFEFF45F /* DispatchTimeInterval.swift in Sources */, - 9719B95F68705BBB0E3D3B83810288D2 /* DSL.m in Sources */, - ED29DDA1F7C68B4D4B25AC5D4FF9D9A6 /* DSL.swift in Sources */, - 7303D59174144DC2FFA9FD55A75DEB70 /* DSL+Wait.swift in Sources */, - 823A69EF48212CA7AFDDE4949FECDDB5 /* ElementsEqual.swift in Sources */, - 4A5A8A410E724AF761976A49C746A61C /* EndWith.swift in Sources */, - 191F469716FE9D497DABF0FE4AADE480 /* Equal.swift in Sources */, - C33F0FBFD3C8FDC15CE5196B434916E0 /* Equal+Tuple.swift in Sources */, - 2F4F6BD641DA625C262640D07EB99A01 /* Errors.swift in Sources */, - BF9371DFD0E8D1A9CC5B0BB0443A47A2 /* Expectation.swift in Sources */, - 7ADC3912328ADC803DDD4023CEC59D26 /* ExpectationMessage.swift in Sources */, - 7F9E674BC80C1EB3E5B85843CF877F3B /* Expression.swift in Sources */, - 3DE8B98413F0219C3FEB4CE64D6FA9D0 /* FailureMessage.swift in Sources */, - C6BDCA7A9A1C81FE70AB82E393FC16C0 /* HaveCount.swift in Sources */, - C85038B87432DB8C6F9D4FCBADCA994A /* mach_excServer.c in Sources */, - 9905EAE173ED950F17C4B7BBBEBD76D5 /* Match.swift in Sources */, - 0A25294DC920C89DEC0C266EFE8E30D9 /* MatcherProtocols.swift in Sources */, - 8BCB828676F75412C423F76688D87FE1 /* MatchError.swift in Sources */, - 5EDA92BA21EB70B0718D4EDEE5CF32DE /* Nimble-iOS-dummy.m in Sources */, - 38D91D7A174BB9BF4FA606BFC5D6D926 /* NimbleEnvironment.swift in Sources */, - 2F8AAEB06FC1400D4692A453112AF9BD /* NimbleXCTestHandler.swift in Sources */, - B9604497AFA260821C069F3C56A5CF72 /* NMBExceptionCapture.m in Sources */, - 54165587F7540E0896F31607BF352C55 /* NMBExpectation.swift in Sources */, - DBC579192649DE230E07BCE3E1938325 /* NMBStringify.m in Sources */, - 13280F0D71D833955A2D7D2350C9D554 /* PostNotification.swift in Sources */, - C2E772E1C1F864371C44990ED37E84F2 /* Predicate.swift in Sources */, - 996BB640DBD6C5DC4440BD886CAAAE50 /* RaisesException.swift in Sources */, - 6E97BBB399DE479F74CC5E0DF6B76EDC /* SatisfyAllOf.swift in Sources */, - DFDE62571E0976F7F0B11666DE03B81D /* SatisfyAnyOf.swift in Sources */, - 523CFA53BDDD6BAE5767916442DA0C20 /* SourceLocation.swift in Sources */, - A9F687A849F7527B413F6CF9CB088E18 /* Stringers.swift in Sources */, - B6B94EBB727F1F80A0C554FBB1768E2F /* ThrowAssertion.swift in Sources */, - 0175C4455873EB711E06E1DD13C7B309 /* ThrowError.swift in Sources */, - 7947251E913838664C2C5D46E931C9A5 /* ToSucceed.swift in Sources */, - 930696A73040D784289A74B3712D1052 /* XCTestObservationCenter+Register.m in Sources */, + 7F60AC23122F708035574FF801073698 /* GoogleUtilities-dummy.m in Sources */, + D7F1FF58EEE53B3C9677746A36394507 /* GULAppDelegateSwizzler.m in Sources */, + 48C6C5B1E8435F0AE8489E579807243A /* GULAppEnvironmentUtil.m in Sources */, + EF12B41FAE35E183CFB86382B7C01330 /* GULKeychainStorage.m in Sources */, + BF0CA91DAB85654FAD7D6E62C9B41C00 /* GULKeychainUtils.m in Sources */, + 22C77BE8A58417F12686AC4DC7B03DE5 /* GULLogger.m in Sources */, + 0D98860FE102C85029C9EF08AF393538 /* GULMutableDictionary.m in Sources */, + 4400CDB03973F646E753150BF596D719 /* GULNetwork.m in Sources */, + 6CF57A697F7DB553D24A0B6B994C4B4B /* GULNetworkConstants.m in Sources */, + 6350B1EF54E299F8FD510F0FF03F885F /* GULNetworkInfo.m in Sources */, + EB8A34A4A321A07DF1D942F4EF8CF427 /* GULNetworkURLSession.m in Sources */, + BBC969CD7C8E78F2AD836B2142B618BA /* GULNSData+zlib.m in Sources */, + 7B3F92A62D124C593C5B226CA3E64008 /* GULReachabilityChecker.m in Sources */, + 26CFAE215D7DAE757062A199605F0C22 /* GULSceneDelegateSwizzler.m in Sources */, + 8D3AED7AD2C1FE2CB9DC4CF97989CC1D /* GULSwizzler.m in Sources */, + 8BA002887FDB1808AA352DCF5959267E /* GULUserDefaults.m in Sources */, + E68DFBB1A67F0CC549B4A330F94CDA8A /* IsAppEncrypted.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7867,7 +8771,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 952259226F6F5C884BAD33EF0F1187B3 /* Sources */ = { + 8EC5632F94A27E3B473E5AF41A9C46C4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -7886,60 +8790,101 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 99F52F26A04A275FCBB70F8A80CD2CD4 /* Sources */ = { + 9AF390378EEBE0C37CD10E9AA4A1E49D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + E8F2FBA2F806C6A0F58523070DB434E9 /* Pods-Examples-SourcePointMetaApp-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9AF390378EEBE0C37CD10E9AA4A1E49D /* Sources */ = { + A3B20DB20FBB895B9F88900328A948EC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E8F2FBA2F806C6A0F58523070DB434E9 /* Pods-Examples-SourcePointMetaApp-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A121E394E27D188A49651560FC8DE6C8 /* Sources */ = { + A969F0E9AB57461050B5FF8DF5E8BD58 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + EB7847888EE120CB5CE1E2F8CD7ADBF5 /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AA10E4A6BFCF9DCF25DEBDE4089CB614 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 49CB882AA67A43AE9688262A8F673E54 /* IQBarButtonItem.swift in Sources */, + 09E91ACB0667F1A80B81A95B21FBC90D /* IQBarButtonItemConfiguration.swift in Sources */, + 59032A0895799CFF0F7E2E4DD192B38D /* IQInvocation.swift in Sources */, + 83000B2F87DA911236FFA2F745497D79 /* IQKeyboardToolbar.swift in Sources */, + A8145E045FDAF1B97B809396DB014941 /* IQKeyboardToolbar-dummy.m in Sources */, + C06D95D3D44238B0203EFC8AA71432A6 /* IQKeyboardToolbarPlaceholderConfiguration.swift in Sources */, + 610F47A5BBDD2271EA15F178856976AF /* IQPlaceholderable.swift in Sources */, + 633DC282F9B4394A0C8D3337B98BD76B /* IQTitleBarButtonItem.swift in Sources */, + 3A39CCA7D7AD4FD7F1A7B8B43554CF8C /* UIView+IQKeyboardExtension.swift in Sources */, + 7907D88CE0210C78C74F77A38220E2F2 /* UIView+IQKeyboardExtensionDeprecated.swift in Sources */, + B3B24F63E48B3B8A852A87E8009E509F /* UIView+IQKeyboardExtensionObjc.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AA8CDF4988ACF9FB51812463477241BD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6904715FC16C62DB6803DBC040471504 /* Behavior.swift in Sources */, - 764E02B413B0707B86C093D026B9E20B /* Callsite.swift in Sources */, - 8140773BB445E8546DFAABAF7E666615 /* Closures.swift in Sources */, - E90DBB2B1EEC4D6675ABF2F59F996380 /* DSL.swift in Sources */, - ADD73D1164D270471E00B5FF31114D0F /* ErrorUtility.swift in Sources */, - 5F2356AD458E58B1C831964834B215EC /* Example.swift in Sources */, - 69BF5320B33A9030753D05367430B180 /* ExampleGroup.swift in Sources */, - 40E398D78E3D57F76B8E0DDFEB65F628 /* ExampleHooks.swift in Sources */, - 64F29FE005F9A0672B54554637C94605 /* ExampleMetadata.swift in Sources */, - 01964FD43092972CE2DA2B2179420B25 /* Filter.swift in Sources */, - 1F23F2351BB9D3736E213A5A749487EF /* HooksPhase.swift in Sources */, - 84DAA0B06C27902A9F78DE22485BF188 /* NSBundle+CurrentTestBundle.swift in Sources */, - 40BA40339203043ABD6887138FC07FB5 /* QCKConfiguration.swift in Sources */, - 7E9BDE2473704BB03D3E291E36E7D52C /* QCKDSL.m in Sources */, - 7C662755DCFD4EEFB906EAF13FBE4CAD /* Quick-tvOS-dummy.m in Sources */, - F0401ABDEF17991D575BE3CAC76FB7F1 /* QuickConfiguration.m in Sources */, - 1582A5800669CA8543B1FD8BD742A322 /* QuickConfiguration.swift in Sources */, - A89970630440A0A6BB0B19C090D49980 /* QuickSelectedTestSuiteBuilder.swift in Sources */, - 405874631F50D07CF5AE1DBA997CD2A0 /* QuickSpec.m in Sources */, - EA0C6ED12E8D14F3A49EF014A00694B2 /* QuickSpecBase.m in Sources */, - D27E241B272716754F7203C547EFCC14 /* QuickTestObservation.swift in Sources */, - AADC6AF7EF76D947CC7064A6F8756C80 /* QuickTestSuite.swift in Sources */, - 68CBF2474DDF2898E62E3A2BF495DE03 /* String+C99ExtendedIdentifier.swift in Sources */, - 4B0FEAD43FEA63F0F3E46957A526533E /* SuiteHooks.swift in Sources */, - 931079823B0C5B62072B747ED8CA52B6 /* URL+FileName.swift in Sources */, - EE6ECAC912D9B5FF6FBB60C615D61CB4 /* World.swift in Sources */, - 2B10AFB9135946A0896524AFAB2A367F /* World+DSL.swift in Sources */, - 386E6BA9E6FEE80EFAB5EEFAE276C2A1 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AA298987C069D52D7FC74CF599CA5509 /* Sources */ = { + 45A59DA3ED4B808A2452F0953DC2B207 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + ADFBFA398F32EF1517D2524A1D298B7F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 9085F53299A9FA89BABB78FFF4CD2942 /* AsyncBehavior.swift in Sources */, + 4AB96EDC993769A97C6DE3C9941049F2 /* AsyncDSL.swift in Sources */, + 9A1BD08BE462A6B325DCF2E788B6BF2A /* AsyncExample.swift in Sources */, + 243ABAFD7E715E4E53E36231636C2268 /* AsyncExampleGroup.swift in Sources */, + 74C463E9D6DD2F959C453D80B77646E8 /* AsyncExampleHooks.swift in Sources */, + CBCB2378F8D2DBAA65F347B2F90F0A7E /* AsyncSpec.swift in Sources */, + 87AB4377AAD026B0B29FFBFB8E8BD643 /* AsyncSpec+testMethodSelectors.m in Sources */, + F8EC3648560D8E3BD7E39D35245C9D34 /* AsyncWorld.swift in Sources */, + 19A8BA55445BDFF3673B440428CF20F2 /* AsyncWorld+DSL.swift in Sources */, + 0D8EEBB9CC617942ADB52211DD0BBECF /* Behavior.swift in Sources */, + 6231F81849412A52C52287872172ED06 /* Callsite.swift in Sources */, + A1B673B5C9D9DE92ED09661798A8358D /* Closures.swift in Sources */, + 7DEA49FF918EF9A70822082BDAF2AF33 /* CurrentSpec.swift in Sources */, + EBA8A552C8F299956670315F1388AB9A /* DSL.swift in Sources */, + 67EF68970A8DE610A52E54ADDE76B1DF /* ErrorUtility.swift in Sources */, + DA815E4D666EBD37FEAAB8BA2EB05D94 /* Example.swift in Sources */, + 5C58080A1AF3D52C09D45D939C23854C /* ExampleGroup.swift in Sources */, + 5FAE1D3236DC07D013196A1DDA0FC68C /* ExampleHooks.swift in Sources */, + 7C575A96C6D5B3C12254601A9CB6CC21 /* ExampleMetadata.swift in Sources */, + 847D9BDEEAD4A1E126744333E60CB939 /* Filter.swift in Sources */, + 9491840FF9CFC972963D2C8D4686D043 /* HooksPhase.swift in Sources */, + 572E269AE112CECC7AE4B293E42151DA /* NSBundle+CurrentTestBundle.swift in Sources */, + AD587800C925221F9C6A4739A0AC9224 /* QCKConfiguration.swift in Sources */, + 4466446C7F53AEDE2EAAEDCF4DE2406F /* QCKDSL.m in Sources */, + 903A10BDE9684F07578F7E107DBDFD92 /* Quick-tvOS-dummy.m in Sources */, + A541EFC06EFBB0863D00B6D6048E7217 /* QuickConfiguration.m in Sources */, + 74E2C46143EC1F9C92E87DE22E41CF9F /* QuickConfiguration.swift in Sources */, + 96C3189109605C91F70965FC2778A685 /* QuickSelectedTestSuiteBuilder.swift in Sources */, + 393150D916BC6931789162F62507B840 /* QuickSpec.m in Sources */, + B0D8AE5D78FCE98F0092D3264EC73422 /* QuickSpecBase.m in Sources */, + 7B6D521C8CADB209699197EB18BC7D6B /* QuickTestObservation.swift in Sources */, + 254A4AC77D2C460E29C74A6301088EEA /* QuickTestSuite.swift in Sources */, + 3D807046AAFEC1ADEFD197E0ABAE8745 /* StopTest.swift in Sources */, + B5D53BFE7C068360BACC399FBB75C8B9 /* String+C99ExtendedIdentifier.swift in Sources */, + 72D9A45E0F0DE9C9CEFE9529ED72FE76 /* SubclassDetection.swift in Sources */, + 5A8AB7FCF66E0E146BD4FD15F420BDBF /* SuiteHooks.swift in Sources */, + 79DE2217B3EC175E089F343CE6C81BFD /* TestSelectorNameProvider.swift in Sources */, + D4A4EBE704208A15E07F5510B41DA27B /* TestState.swift in Sources */, + A6B51015077988033872B093C6367E12 /* URL+FileName.swift in Sources */, + 6E7F5978F0533F02E58933C814C7CEA7 /* World.swift in Sources */, + B95A283D15B0FFD88289B3B5AAC59F8F /* World+DSL.swift in Sources */, + FA8D94CDB19EE94CD8DAD462BDEDB721 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7951,134 +8896,142 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B65AC51B7984B1D54A60486A2A36D195 /* Sources */ = { + B4F06FB897997D51AC9DECA3DD3421CF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B935FE80ACD95F80D57EEE00261E16E0 /* Sources */ = { + BA346F0FFC470A132976F0A403F623DA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 2F40D27F39EF50A87195CA7AF2B91334 /* CwlMachBadInstructionHandler.m in Sources */, + D6B4B3395CCDBB5CA8A0704D7FAA96BB /* CwlMachBadInstructionHandler-dummy.m in Sources */, + 3C298F9D9EF861E82A79FDA9ECD161C4 /* mach_excServer.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - BB621F355FBC8F370CEB11D5FBB91CA7 /* Sources */ = { + BD07B3042122306A2AAD91496D89E760 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BB65154AEBC0F25D35D3DB964B701B8B /* Sources */ = { + CA6995042FC48CCB4CAB9BC3C3145317 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 1ABECC35106C9F2E17542ADE169DF594 /* CwlBadInstructionException.swift in Sources */, + F1C44E72D1C0EB8CADE53B670DCEFF36 /* CwlCatchBadInstruction.swift in Sources */, + C3B7C08D3D9C741A77473BC296651256 /* CwlDarwinDefinitions.swift in Sources */, + 9CF063AD4B3A38BB68F24F8258FA4943 /* CwlPreconditionTesting-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C0F96BD40500D0B11D5DE00D9969CF14 /* Sources */ = { + CADDEB41E08E05C54DF1A5637E6FBA45 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5EE3F23C9DBA846A89D3D83CA0BCDA51 /* AdapterProtocols.swift in Sources */, - D30BC72D992B4A85304D55A572BB1995 /* AllPass.swift in Sources */, - 6C17789D6FDA6B1EE7CC0FB38D5175F8 /* AssertionDispatcher.swift in Sources */, - DA81125F04F9B7CADCA3986CD031C979 /* AssertionRecorder.swift in Sources */, - 7D07B96E6C59EB307A889347251A2A63 /* Async.swift in Sources */, - 5C8C980C1D9E65A3EDE2DCFFEDBC4BD0 /* Await.swift in Sources */, - 5418010BC3576CF4451B199D757558C6 /* BeAKindOf.swift in Sources */, - E7DB6122F8EFD13C62A7C24F45D8BCBD /* BeAnInstanceOf.swift in Sources */, - 1C0DFABE04942948E916F4300E9DCF1D /* BeCloseTo.swift in Sources */, - A48601B3ECE3F13A1819262F5608CC47 /* BeEmpty.swift in Sources */, - 5BDB5FFEC4D2C360F949BCFA03AAFEF1 /* BeginWith.swift in Sources */, - C8EE288651900036D62A0326E1586BDD /* BeginWithPrefix.swift in Sources */, - 816DADA2E1B3314639219FF47F1B8ED9 /* BeGreaterThan.swift in Sources */, - 0A424F89D8D1C9A6F5EB8A196FC446AF /* BeGreaterThanOrEqualTo.swift in Sources */, - E079C1182F3EE31D81F46362464AC7E6 /* BeIdenticalTo.swift in Sources */, - 5733CA6E576C107C7C9E2EEFE1FEA484 /* BeLessThan.swift in Sources */, - 2279A5DE0C2589ADD4D08D3AB750AA09 /* BeLessThanOrEqual.swift in Sources */, - C57A688C8BD0E75A6F1D261B6031DA3C /* BeLogical.swift in Sources */, - FA178CEC0D31FA093AB7D3A18F50664B /* BeNil.swift in Sources */, - 70FC9BEC90FFFC97AE35E33D090EF1CC /* BeResult.swift in Sources */, - 97CD0CE0F983BF221C38B3B6ECB003D0 /* BeVoid.swift in Sources */, - 567276F0DB9ADFB8E8A696930F13E537 /* BeWithin.swift in Sources */, - D4D4D99E6DDD1C907AF6A76FDEA48EDB /* Contain.swift in Sources */, - CD6E59213371ED2AF144DDADDE702425 /* ContainElementSatisfying.swift in Sources */, - 1A0550D511DAF75F84A5DBC7BB08B9D7 /* CwlCatchBadInstructionPosix.swift in Sources */, - 9874D24B7F16BDD273B4805E7B9AC9DE /* CwlMachBadInstructionHandler.m in Sources */, - 5AD17C764CABD286274B3CE75D689956 /* DispatchTimeInterval.swift in Sources */, - CD8790D1AB9D84BDF9732B7F0C597977 /* DSL.m in Sources */, - 7487E38D40E66F5FFFD005A2B623D6CB /* DSL.swift in Sources */, - CE849C581E76CEFFF4746CC3B61BF629 /* DSL+Wait.swift in Sources */, - 860B015CBB2C11A3782DDAB34D72C582 /* ElementsEqual.swift in Sources */, - 095408B9E3BD03874669115E390B6825 /* EndWith.swift in Sources */, - 9599378468973B021484936F587747E0 /* Equal.swift in Sources */, - 12291DF40E73C467FA711D13E42E7AAE /* Equal+Tuple.swift in Sources */, - 300388E71539076177C976F0CE9A0D9A /* Errors.swift in Sources */, - 6346517877EC35B8785B4889DAB4BDD0 /* Expectation.swift in Sources */, - 344F87F6AE3A0711BCF167B3DB21D9E1 /* ExpectationMessage.swift in Sources */, - 71F2FCC9E452CA31D2ED1BB8AF6A89A1 /* Expression.swift in Sources */, - EB3E94EF35A810D9AC2BBEC1FDB14061 /* FailureMessage.swift in Sources */, - 9D1EB8F72269F7639EA989C450A71C10 /* HaveCount.swift in Sources */, - E219BD18E0735F40D7EEB79988D84482 /* mach_excServer.c in Sources */, - 285FFDBDD413AC4CE1F8B09722A18314 /* Match.swift in Sources */, - CE7BEE09A6036491DF7DDD7C5DB83B43 /* MatcherProtocols.swift in Sources */, - FEA24689236EF56E156B38DFAA33D3BB /* MatchError.swift in Sources */, - 47E5C94448BD594C98B3EFD2286A2A5E /* Nimble-tvOS-dummy.m in Sources */, - F4807E1F86135AD38BAD15B8CCA67152 /* NimbleEnvironment.swift in Sources */, - 464448A928B35D88AFDB4029AA35DDF1 /* NimbleXCTestHandler.swift in Sources */, - F197437D28E1C5A1A883C26EADFFA907 /* NMBExceptionCapture.m in Sources */, - 1925D49EDCF5E0591A958ECB10996C5C /* NMBExpectation.swift in Sources */, - 99B7C12E5DEA9C9EAC1216DBCAC326B0 /* NMBStringify.m in Sources */, - 2834DFC95B6D29A395FB8AAA849CC49A /* PostNotification.swift in Sources */, - BE7ADCE72D291EDD56EA2B495165A47D /* Predicate.swift in Sources */, - 7BBE2FD1C217A6E99934F8B8EF40FDD0 /* RaisesException.swift in Sources */, - 65115B5AB93BCF92FB2023DA94E34401 /* SatisfyAllOf.swift in Sources */, - C3BC1CEC5CF7605E5479379348AE4056 /* SatisfyAnyOf.swift in Sources */, - 43A348E1B43BA7CA63A465BEC3B443DD /* SourceLocation.swift in Sources */, - 967683DA52E6699D50D08A6402E76EE5 /* Stringers.swift in Sources */, - B32792CB71B2304FB7375DAC3DE9F368 /* ThrowAssertion.swift in Sources */, - 1882D0B58FBCBF538FFC2C8049AF2289 /* ThrowError.swift in Sources */, - 69F6551F6D4DD486BF8A53F9958CA3C6 /* ToSucceed.swift in Sources */, - 393D4D97A781EB8334D8AB0E58E78A2D /* XCTestObservationCenter+Register.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C493EB93D6DD1D7BD3197CD4A612F419 /* Sources */ = { + E403A18A93AF3C60BA73AD384CC5D2E5 /* AdapterProtocols.swift in Sources */, + 080CC7053A2F2C7D273326D36A969C35 /* AllPass.swift in Sources */, + C9A19FCE3D0C4FE4D0803299C5AA44FA /* AssertionDispatcher.swift in Sources */, + 7D4A73D72E8D7B2BDCF552EA967344CA /* AssertionRecorder.swift in Sources */, + 0598E3FB68037697F03D693581DC3BB8 /* AssertionRecorder+Async.swift in Sources */, + 7BE767F73E5535731A05F40242B88746 /* AsyncAllPass.swift in Sources */, + DA5EEF80A3B4732A0899EE3DAFAB77EE /* AsyncAwait.swift in Sources */, + BAE8908311819689AF21D9865DBDD233 /* AsyncExpression.swift in Sources */, + EA3B6F8B581FF31012A949FAF3B420E3 /* AsyncMatcher.swift in Sources */, + 7F67DF9E85AF90BC113B999543A1E3EF /* AsyncTimerSequence.swift in Sources */, + F1AE5CAED80CF3B97F60E3E65B6B716D /* BeAKindOf.swift in Sources */, + AB1030EB0D840A21283E3437C4D76A06 /* BeAnInstanceOf.swift in Sources */, + 9D78C19B64B4DD8E28B4CB4DCE864664 /* BeCloseTo.swift in Sources */, + 1E1E1DE975154FFCC5E4D108CF9B8EEE /* BeEmpty.swift in Sources */, + 7977571FB80FA05A18B90134DB1DAD88 /* BeginWith.swift in Sources */, + 34090A0E457BDC62306BF8A2EB8AD43D /* BeginWithPrefix.swift in Sources */, + 97CB01642A641B63B444D409068BC9DC /* BeGreaterThan.swift in Sources */, + 54C1CA78AA74A3A51AF899625C9C11DA /* BeGreaterThanOrEqualTo.swift in Sources */, + 3B150A756DBE89161A5E1D73FE9E06CF /* BeIdenticalTo.swift in Sources */, + 6E531B8B6E54DCD6D630CA1B66D2DD12 /* BeLessThan.swift in Sources */, + C5F469225D301450F93C7F54DD2F62AF /* BeLessThanOrEqual.swift in Sources */, + C70C082E28AF56C6C5441F9E020AFDA3 /* BeLogical.swift in Sources */, + 3820714A7C5BF205088A53517F71327D /* BeNil.swift in Sources */, + 3C159F369305E5B0486526D4569BE052 /* BeResult.swift in Sources */, + 585E27117F01D1FF8D5DBB2FBDD467D2 /* BeVoid.swift in Sources */, + 6F9B24A0C0D89C8696C7C9681C2E9FEA /* BeWithin.swift in Sources */, + 3579BC1FCACFC2C40F8B762BD75F1E45 /* Contain.swift in Sources */, + 827D4AC084DA2FE3179B4DFB1258B388 /* ContainElementSatisfying.swift in Sources */, + 36A78A9EF7E943B3CE27D4A1567AE5BC /* DSL.m in Sources */, + 2E40DE55394C0E8B1FC8C4E4DBF8B61F /* DSL.swift in Sources */, + E7B793F0B00A9E3AF281B881D094C99D /* DSL+AsyncAwait.swift in Sources */, + ACF48F5D98ED3CF4F4C8DBB1CD6E197E /* DSL+Require.swift in Sources */, + DA5EE857EA8D9F3A0A49AABF6989D452 /* DSL+Wait.swift in Sources */, + 859E01C4C3F14B093EFCA40D225468EF /* ElementsEqual.swift in Sources */, + EC9BD6292019EC3657246F38466824EA /* EndWith.swift in Sources */, + 355A2BB26622FBA7C7A1456D9D8206A2 /* Equal.swift in Sources */, + 72D3DC3B6531EA6BC558FB653D1DF9FF /* Equal+Tuple.swift in Sources */, + 728EAA16343AACA073D8B4FD67105313 /* Equal+TupleArray.swift in Sources */, + DB93F5C139F09A4BAF98AC098F28CCB8 /* Errors.swift in Sources */, + 328DBDC98F4A0C0A1FE2753A79CB1CDB /* Expectation.swift in Sources */, + 005CFE22A2ABBABB461FCF31E90DBAE9 /* ExpectationMessage.swift in Sources */, + 846460D4C51BDAA4A54E1696111C45FC /* Expression.swift in Sources */, + 0CC428ABA928E852A1BD0DB497652191 /* FailureMessage.swift in Sources */, + 09B28A835027614014E7D4945121DA5E /* HaveCount.swift in Sources */, + 3EA3CCD77D7A5E466C79EFB595B93EEE /* Map.swift in Sources */, + 9A5D2BC910BC2277C876226EB38669F6 /* Match.swift in Sources */, + 4EE65849828C6F9BD0CE67D2B2868A46 /* Matcher.swift in Sources */, + 3F4D6C35513F3C64570772B201DA44C0 /* MatcherProtocols.swift in Sources */, + 7C53650E45FFC5893B26340624FE3998 /* MatchError.swift in Sources */, + 9B644107FB29AE8681579EE6441457F7 /* Negation.swift in Sources */, + A7B5BA19992F08C53A2A21361EE51254 /* Nimble-iOS-dummy.m in Sources */, + 5DC324A6C43DD20E69455BB33B4193BD /* NimbleEnvironment.swift in Sources */, + 578A5B5AA434F789E77D79B621260648 /* NimbleSwiftTestingHandler.swift in Sources */, + 62E6BC8C9BB4CC12D26B654302A1103F /* NimbleTimeInterval.swift in Sources */, + 51DD2FECC69E8668BEC4F85436C7FE82 /* NimbleXCTestHandler.swift in Sources */, + 5A247DA4A9BDEEB12619889B47ADFA6D /* NMBExceptionCapture.m in Sources */, + 6588E326C2A66E610993DFE4627E5F84 /* NMBExpectation.swift in Sources */, + 8E4DC5BD2B4BB86B7CA6FD70F6AE2CD8 /* NMBStringify.m in Sources */, + 7C0FD2392C294920707F2964049C1152 /* PollAwait.swift in Sources */, + 5AAE8557F63374E68C8623A4965E7782 /* Polling.swift in Sources */, + 3F36C9D6FB5F3A4CECE7904F72EA8A7F /* Polling+AsyncAwait.swift in Sources */, + B26DC08428D6803F907A14FF08501DDB /* Polling+Require.swift in Sources */, + 81C52C82CF4217406DE6A1E7F4F09307 /* PostNotification.swift in Sources */, + 0645909EAD097C6E2EE313FC0F4D78A1 /* RaisesException.swift in Sources */, + B744EE30958AE2EC98E78CE6A030866C /* Requirement.swift in Sources */, + A15E1E556BE4AA945D14393E34DDE65E /* SatisfyAllOf.swift in Sources */, + 20C4A97DA1AF0A39F61F0A6DCE0A9349 /* SatisfyAnyOf.swift in Sources */, + E32CA110786342FC30BC85BCB1CFEC37 /* SourceLocation.swift in Sources */, + B21CD1C471AFD6D9383CEF4B5322E739 /* Stringers.swift in Sources */, + F4C56B12461364F3CC3E56413FE38ACB /* ThrowAssertion.swift in Sources */, + 630E93E0E73A19E7914139F6CAE445BB /* ThrowError.swift in Sources */, + 9467C383135B4FF22E81454BB204B34E /* ToSucceed.swift in Sources */, + E4B534625835623E69964570238546A5 /* utils.swift in Sources */, + C5CA6FC02FC7266614B1408395F62087 /* XCTestObservationCenter+Register.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CC54827D47730191F2D44BBE1C890044 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - BA3395C44A8E09837E777028D3EA6F6E /* FIRAnalyticsConfiguration.m in Sources */, - CC7AB523AB307ECF4CAEE6D8C8AC4808 /* FIRApp.m in Sources */, - FF932851CA14F3B5FB73C72A5EEEB852 /* FIRBundleUtil.m in Sources */, - FA0BFC8486E0AE71A862509DAE2E5653 /* FIRComponent.m in Sources */, - 3708A119EF6E4A5970FC09D8B1AFCEAF /* FIRComponentContainer.m in Sources */, - 8505344974A53EE60061BBFA3A9D6D4A /* FIRComponentType.m in Sources */, - BFC8458F0FCC6DDA18782125536BA96F /* FIRConfiguration.m in Sources */, - 3A672306F5D270B384E98B8210DEDD2E /* FirebaseCore-dummy.m in Sources */, - 248F72BFF743BE4B18E1FA060B06223E /* FIRFirebaseUserAgent.m in Sources */, - D32F166A8EA660CC50192C7346C20B26 /* FIRHeartbeatLogger.m in Sources */, - 26CCDECF8718E916FC502E156F106E49 /* FIRLogger.m in Sources */, - BCFF6AE25A4B1311D93877DFC9196383 /* FIROptions.m in Sources */, - 3B1CE82076FBB716CB11EAED55E3F414 /* FIRTimestamp.m in Sources */, - 77A752EBE7E08799F050F633BEF6FDF4 /* FIRVersion.m in Sources */, + 12AEFB4DEFC2627E558D99A56F68495E /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - CA4CCA15767D42E868188213B09704B2 /* Sources */ = { + D2B4B6C36824E75709B3E039BFEEA15D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - CB11B6FBD1B16CA9836846746FE8521B /* Sources */ = { + D60FB0A8DB99659897868A5B8FC45FAC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + EC1FDAC6152594C8BBA6CB7A8EB52C18 /* Pods-Tests-NativeMessageExampleUITests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -8090,29 +9043,58 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DBA756B8B198DEC2ECA6A84D190B3F2A /* Sources */ = { + DB4DD89191644B23F8A1499EF3D39723 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC2FA0F6B2C52A6FB8B5C8463DA7B4E7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 73986CCFA88FE227785408DB7FBF81F0 /* IQKeyboardInfo.swift in Sources */, - BDC7176CFF3B2E5049BA963806726DA8 /* IQKeyboardNotification.swift in Sources */, - BF5C2F5C7A743A036E1015F64EF8AA74 /* IQKeyboardNotification-dummy.m in Sources */, + 447AC992306D854F91D322173D594746 /* CwlCatchException.m in Sources */, + 9439CAEA2CC5B25DCC288E56E617A846 /* CwlCatchExceptionSupport-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E7D68BA2435CFD24E9FE39286E171FA4 /* Sources */ = { + E37C018D16F7A9E23EBB2127E4208FB2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1FC1DFC0B608CE9C0AF268C05F97581D /* Pods-Tests-AuthExampleUITests-dummy.m in Sources */, + 62ED706B2E85A968AD1E0734698D1E00 /* Array+Sort.swift in Sources */, + 778B4229E23E12218122EE92523628A4 /* IQDeepResponderContainerView.swift in Sources */, + 08765EEB98CF088F7263077316CB1105 /* IQKeyboardToolbarConfiguration.swift in Sources */, + BA5D6E6897211807140AC96198CE2B2A /* IQKeyboardToolbarConstants.swift in Sources */, + 29EAA1377CDEF3A4467EF58D99A9013C /* IQKeyboardToolbarManager.swift in Sources */, + 9301B49861F217CD337483E5AE1F69C7 /* IQKeyboardToolbarManager+Action.swift in Sources */, + 80C47BB4735447FF3A5BD28D85A79FB7 /* IQKeyboardToolbarManager+Debug.swift in Sources */, + 8F4874B5FAB85EA9FAA7CE1C916F2E12 /* IQKeyboardToolbarManager+Deprecated.swift in Sources */, + 69CE792E7DF70AF60636D71ACB7A5512 /* IQKeyboardToolbarManager+Internal.swift in Sources */, + DE655B5ABD24CD91A6EC78A6CB5782A6 /* IQKeyboardToolbarManager+Toolbar.swift in Sources */, + DC41E8B731F98F5AF5AB6C1D860FF9F9 /* IQKeyboardToolbarManager-dummy.m in Sources */, + D7D15EB96DD55E5C23C88197F4B395BE /* UIView+Responders.swift in Sources */, + 4341A1338AE2EBB9E309F8D076F4E3A1 /* UIView+RespondersObjc.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EE760CA7C2C6DFE2B69813071C6E8918 /* Sources */ = { + E3AC4802C334019797172D48F471062A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E753DA4609617DC08ED586AC456F0A3D /* Pods-Tests-SourcePointMetaAppUITests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E5E43063781A06C4BAFDDB90C2E8AA70 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 1D4D62C7EE1C0CBADAC8F18A0FD319FB /* IQKeyboardReturnManager.swift in Sources */, + 2E6A63B67ED2BE70D780A9740DD11B9B /* IQKeyboardReturnManager+UITextFieldDelegate.swift in Sources */, + 98D4DF8702052534924A9B635F58C249 /* IQKeyboardReturnManager+UITextViewDelegate.swift in Sources */, + EFA2DF354996B1F561E3545D1F5030F0 /* IQKeyboardReturnManager-dummy.m in Sources */, + 5CF4698F9A8F89E3C94439F8438B66E2 /* IQTextInputViewInfoModel.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -8226,902 +9208,1159 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F9329A1BEAFF8C408789220F56C781BB /* Sources */ = { + F54D29F18070233F9FC4BE1653F983BC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2750C39990C396D6608E86190CCEE364 /* Behavior.swift in Sources */, - 263B310D60FC3636A0DD13DF908E317C /* Callsite.swift in Sources */, - CC6432BC7A2B5B41CAFCDE0A223D777A /* Closures.swift in Sources */, - 58E39D6FB552872E3737617337ECC694 /* DSL.swift in Sources */, - 93B2EFE7E08E384A2D81B5F0EC1CC937 /* ErrorUtility.swift in Sources */, - A7843C176939F6657329177ECF0B8508 /* Example.swift in Sources */, - D3D971B6397F47803782A4810F6B587A /* ExampleGroup.swift in Sources */, - B49AADBF769E1700FDED908F264FDC8D /* ExampleHooks.swift in Sources */, - 131E3410A9CB4365F4B6D39AC2E3CA0D /* ExampleMetadata.swift in Sources */, - F50B4245BF074D79FE6C64B83FA88105 /* Filter.swift in Sources */, - 22D2A00BE65B6A06590D35EE5C36B38E /* HooksPhase.swift in Sources */, - 21F825E922668A4067E648C62FB32FE4 /* NSBundle+CurrentTestBundle.swift in Sources */, - AB45A06BF3B738DC97B8CC970C69E2D9 /* QCKConfiguration.swift in Sources */, - 4D8BD1FBAD92D1F2C7A54166F6046C04 /* QCKDSL.m in Sources */, - 69965143D4F7E238B15C040C09FF62D3 /* Quick-iOS-dummy.m in Sources */, - EB3D6639A1643F48F6C500A1A881D255 /* QuickConfiguration.m in Sources */, - 5BB0764D6484986A3B0749EEDDC4FCE9 /* QuickConfiguration.swift in Sources */, - 0C561D06DD0FD16622D6C4759DEF1829 /* QuickSelectedTestSuiteBuilder.swift in Sources */, - 9A61E05EF8588CDD3F7AD9DBFFDA0F4D /* QuickSpec.m in Sources */, - 0F48905042D68AF4F32F318969AA26BF /* QuickSpecBase.m in Sources */, - 21B40D0F2A0AC0BA50E496AAC0ED6AB1 /* QuickTestObservation.swift in Sources */, - A3C01E48B0A3B5FB4850FB105F696252 /* QuickTestSuite.swift in Sources */, - 6B2FEFFB090DB4BBE89BA6F955A58DC8 /* String+C99ExtendedIdentifier.swift in Sources */, - 63BB3FE283D8E824DC29750C7A4DA267 /* SuiteHooks.swift in Sources */, - 26A06F9AC404A05CF1D78CCE59157871 /* URL+FileName.swift in Sources */, - 27ED9EE606EC9F3A161B5E47D77CFD7A /* World.swift in Sources */, - 48D9E94CE5DCFF680063977554BCC650 /* World+DSL.swift in Sources */, - F5AD7805804632E4B6A7362BC2E14F69 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FC730AEAF395F949773EFEB1ACF6A0E0 /* Sources */ = { + 98E99E26C736E4B66F6F82B722AEDF81 /* Pods-Tests-ObjC-ExampleAppUITests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FC2DD432DAD8855EAC92D22A02C37AA4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + AA87E734472B9231E1A7DCD57BF74EC8 /* _ObjC_HeartbeatController.swift in Sources */, + C8F72BA8913CF3227F6A9C1EF184E70E /* _ObjC_HeartbeatsPayload.swift in Sources */, + 048DE687F4DA16325F28D4A9F555A7F6 /* AtomicBox.swift in Sources */, + 27B56CC927D5035AF2398B9A05289D8A /* FirebaseCoreInternal-dummy.m in Sources */, + 99F8376E84A9D5A823E0168AD8C7F6A7 /* Heartbeat.swift in Sources */, + 5F5F094636A99E789C83162A7BFF24B4 /* HeartbeatController.swift in Sources */, + B377E43535F5B1A5AA9FABBC24D46042 /* HeartbeatLoggingTestUtils.swift in Sources */, + 4393FFC58E875928839450ECF8223F14 /* HeartbeatsBundle.swift in Sources */, + 834088734717D2B434F2DDB4867B6C14 /* HeartbeatsPayload.swift in Sources */, + 6DD1C263035F85DF005DD93D0F8C147A /* HeartbeatStorage.swift in Sources */, + 8FA56A61526ECBCBB3DA5B46F7D957E7 /* RingBuffer.swift in Sources */, + C64D71CB04914F24680884B26ABD7EA6 /* Storage.swift in Sources */, + 488457EC015E7FC982FC78FFA9D53CEB /* StorageFactory.swift in Sources */, + 551D3F3E2972DE40D696A161E4813F98 /* WeakContainer.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 0869AE040474FDCE4A13363D2F18B62D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardCore; - target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; - targetProxy = AE233B154B0BDBB95A53E8E75EE631D5 /* PBXContainerItemProxy */; - }; - 0895C1CE52F034018D464063C3088838 /* PBXTargetDependency */ = { + 0161926CB0B89E977B5D846E981DEF69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = EC24ABE8ECD2FC253C4C68C55FBE1AAC /* PBXContainerItemProxy */; + name = "PromisesObjC-FBLPromises_Privacy"; + target = 1BFBEDBF7E03729D43C96530EE190825 /* PromisesObjC-FBLPromises_Privacy */; + targetProxy = C0C2D0B8FFA6CB98EA96B87A6EBF7ADB /* PBXContainerItemProxy */; }; - 094931B51F90318A1791D36C2D533215 /* PBXTargetDependency */ = { + 025CDD6809F8D0A10DD27ED8531039AA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Quick-iOS"; - target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; - targetProxy = E626FC32F0E14EA1EB03234755937CCC /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = B467AE3A19829EC14359A251AF18AF64 /* PBXContainerItemProxy */; }; - 0A4CB72D6F8ABCCF0092426AE22C1215 /* PBXTargetDependency */ = { + 0357B1774B5F3CE7F5A60342A9950E8A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 4A69516899B39BC74BCAE6DD8DED8E32 /* PBXContainerItemProxy */; + name = CwlCatchExceptionSupport; + target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; + targetProxy = 2BC92B7E618DCB3D59D15D8EFF836760 /* PBXContainerItemProxy */; }; - 0B810B74FFE334AC4F221FC9530865F1 /* PBXTargetDependency */ = { + 04712D854D474B61B28CEE3C41F6E3A1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IQKeyboardManagerSwift-IQKeyboardManagerSwift"; - target = 982A68D37F5DCBC1FC1FDC0BB2F0EB8E /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */; - targetProxy = C2F3F0126C95A4E9F9732164D3BDE913 /* PBXContainerItemProxy */; + name = "Quick-iOS"; + target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; + targetProxy = 0220DF57C33057051376936CCAA42B33 /* PBXContainerItemProxy */; }; - 0BB6747E1DFD069833D647EDBA1EBFC1 /* PBXTargetDependency */ = { + 04A851B2C1F0422E9150506878F894C6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS-ConsentViewController"; - target = F9B2C41D8F3FCEB2256091CF2667D600 /* ConsentViewController-iOS-ConsentViewController */; - targetProxy = C72DD3843A6FFFBF0D1CDED6E67B4213 /* PBXContainerItemProxy */; + name = CwlCatchExceptionSupport; + target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; + targetProxy = 08E99292431752E0706F55811B1013A3 /* PBXContainerItemProxy */; }; - 0DAF4DC58E5F56DB58BF94C8BC5B9079 /* PBXTargetDependency */ = { + 05832344E8A5209A1C3FA0D5FD4A72D6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreInternal; target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; - targetProxy = 80260FED72B32F9B37FB357FE78AA0DB /* PBXContainerItemProxy */; + targetProxy = 16DB892364C220928AF8104A3ADD937D /* PBXContainerItemProxy */; }; - 103AC9FD3D3D7340A923E9DD6ECFC5E9 /* PBXTargetDependency */ = { + 08F9A089A3B6E8A0FF4640E92B5A4C4F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 3BB44C34F03DA84B150B48E51225EAEF /* PBXContainerItemProxy */; + name = IQKeyboardToolbarManager; + target = 020993F16DA5986DACE118349EBCE9E5 /* IQKeyboardToolbarManager */; + targetProxy = 1C52FF37C02151568BEB3D762969249B /* PBXContainerItemProxy */; }; - 140D783ACBEE7F69063DF9A438243975 /* PBXTargetDependency */ = { + 09A3F63BE4336ABAEA88370B830C7F8D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "SPMobileCore-iOS"; target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 0DF344836AF1AE57DEBF1CA1FFE72661 /* PBXContainerItemProxy */; - }; - 1477278AEDE34DD3AF5DCF045F809A14 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = BD1E19D5F1474D87F8F0B44B4F9A3C9A /* PBXContainerItemProxy */; - }; - 17E58C79EBBA25A17F2D92A99E4CCC3B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Nimble-iOS"; - target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; - targetProxy = F8CFA9F0F2EA5F519D9B2144D8BFC168 /* PBXContainerItemProxy */; - }; - 1A2C69376EC106E7EC7D88614DA8F463 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 21E6306E4540CEB9E552852C9100AE36 /* PBXContainerItemProxy */; - }; - 1A71F46B9E442209CB96839F8108931B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 9926EC479AD9C078513CB210E57E8DB5 /* PBXContainerItemProxy */; + targetProxy = E73D1FF84BF66F3D5335D2E903BF7ED7 /* PBXContainerItemProxy */; }; - 1ACDE135B3954A17AF473844A2A4BCBB /* PBXTargetDependency */ = { + 0D0AA8CF8029B773F064E5ECBC5F0EB0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "SPMobileCore-iOS"; target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = E91EAC5F744D196E6E966348AF1F042F /* PBXContainerItemProxy */; + targetProxy = 1AD18141ADF81D95EB46C85C0A2A92EC /* PBXContainerItemProxy */; }; - 2201177B0F2226F21E8030F7D0A327AC /* PBXTargetDependency */ = { + 12120CD383E9BB17CEE14AD6FC316359 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = A71B93B30148CD5B6ADAA99A93C9440A /* PBXContainerItemProxy */; + name = "SPMobileCore-iOS"; + target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; + targetProxy = D05CA6549F08C21D8D8A8284E430ADE7 /* PBXContainerItemProxy */; }; - 22058F35D70BAF3ADE9CECE2D817F28C /* PBXTargetDependency */ = { + 12C6A5AAEDF9FE2BD91CB9F0681CF5A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = DDB3B5DF56C435E3ED9043CE20CE78F8 /* PBXContainerItemProxy */; + name = CwlPreconditionTesting; + target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; + targetProxy = D56DA2984C2B4AFE122A0EFE1F9E6360 /* PBXContainerItemProxy */; }; - 2BBDCF4A414EE64C12C80BE8BF82C0E6 /* PBXTargetDependency */ = { + 12F2EE3DD37624CB384DDDB5FF0125F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 496C5DA3F5BE0058D9CD83AF5FE73FE0 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 8C1319ED61E95F9E9B639631AB2D9500 /* PBXContainerItemProxy */; }; - 2C7B4825701635CF713BF5F5B8D9DEAF /* PBXTargetDependency */ = { + 135514326C96FF72B02A8D025ACD8E32 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = IQKeyboardCore; target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; - targetProxy = A6F195A589033BFBFDBF007E3848AAFE /* PBXContainerItemProxy */; + targetProxy = E746ADADD5A62A3DD4873214B8BEEC39 /* PBXContainerItemProxy */; }; - 2E0F6B54FCDB2A38FC869B0FA099A4EE /* PBXTargetDependency */ = { + 13F3854DCB5D2E5307F3011594368E0A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "SPMobileCore-iOS"; target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 11FE2935252FF55EF4B9C43654ECBCE1 /* PBXContainerItemProxy */; + targetProxy = E9BCF1221D4426B785E91619CC7E822F /* PBXContainerItemProxy */; }; - 3037B7C1460470557CC78FD29C463307 /* PBXTargetDependency */ = { + 145684127DFD5FBB0A5C67D1E02E0967 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = D07043B745F060C3E5C9CA42A5ACDFA7 /* PBXContainerItemProxy */; + name = "Quick-tvOS"; + target = 28BE3303E3F4ECC2BDF79B1D886D2E74 /* Quick-tvOS */; + targetProxy = 9BD1F41BD49D28F8EF8CB231E50AC9D0 /* PBXContainerItemProxy */; }; - 310BE82D0BC4E3925BF7426E32DE1DE0 /* PBXTargetDependency */ = { + 15216ED3338DBDE73BDDEDEBDF6F59B4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Nimble-iOS"; - target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; - targetProxy = D8E2BB6AE49D3716F6709B491971ACE5 /* PBXContainerItemProxy */; + name = FirebaseCoreInternal; + target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; + targetProxy = D908ABCC606DF4323D3CE5710A099E5E /* PBXContainerItemProxy */; }; - 31997C4836BEFE427631DC1387733EB3 /* PBXTargetDependency */ = { + 163B717C1BF1E4C088399BAFB95F16B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardReturnManager; - target = 0981F89DB5DA3FFCFFEBDE1F56287054 /* IQKeyboardReturnManager */; - targetProxy = 67878A44B33060B638E02257CF33BECE /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 93EE33E644CD4DCB50D06ED0F32CDC00 /* PBXContainerItemProxy */; }; - 319FD69E2086698F7992A189F41910BC /* PBXTargetDependency */ = { + 16F2BBFCB64B10A779E70C133D48C386 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = CD78246716B32581BE453EE86E7BCE85 /* PBXContainerItemProxy */; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = F8F40A945F71081EDAA4E11939FB3A66 /* PBXContainerItemProxy */; }; - 329318F977AFBCF9C2D9F8AFF933E276 /* PBXTargetDependency */ = { + 1ABBCC1DF42A96371A604EFCDC8F1960 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardManagerSwift; - target = B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */; - targetProxy = B098363E6753D295CC19030F5E544296 /* PBXContainerItemProxy */; + name = CwlCatchException; + target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; + targetProxy = BD5912F6603A73CE7022FA12390F4096 /* PBXContainerItemProxy */; }; - 32CC5A142D3DD94A301929CB2D29A098 /* PBXTargetDependency */ = { + 1EA9203BBADD058AD649C6EF6710DCCD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 438F1CE2A7DAA2A8557BC5701883D98E /* PBXContainerItemProxy */; + name = Wormholy; + target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; + targetProxy = 6CEF25C4587A5162EF65C3E6DCC23541 /* PBXContainerItemProxy */; }; - 32CD8976BBEF14739E54A704BDD8FA57 /* PBXTargetDependency */ = { + 2004CAA41B4BF3A5D444CD9C65E4838C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Quick-iOS"; - target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; - targetProxy = 45364695D7E932DE53EF66F2612F7EB4 /* PBXContainerItemProxy */; + name = CwlPreconditionTesting; + target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; + targetProxy = 8391B4915894DAAB8E7ABD584E911878 /* PBXContainerItemProxy */; }; - 3373A895487D842DA034AFDD8B580D50 /* PBXTargetDependency */ = { + 200FE4AA058E59E05655E87F6399EBE2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardToolbar; - target = F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */; - targetProxy = B07A66D0C047F434D265CCAB5873A875 /* PBXContainerItemProxy */; + name = CwlPreconditionTesting; + target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; + targetProxy = F0B27D8BDBB73D4DE6F22742EE5E8A21 /* PBXContainerItemProxy */; + }; + 2295775C3F8AE8E0725BFDB54151EC2D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "SPMobileCore-iOS"; + target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; + targetProxy = 7BC9C0CD21C2C65A3620FD4F39307250 /* PBXContainerItemProxy */; }; - 34E7082CEF5520AA8C70658178B2C9E0 /* PBXTargetDependency */ = { + 24A2D233C1596674319520E589C9345E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SwiftLint; target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; - targetProxy = 9A0B9E0448C177A5560F54BF1B5E0092 /* PBXContainerItemProxy */; + targetProxy = DD3C569FF38F621C851DB89F0E7073BF /* PBXContainerItemProxy */; }; - 37CEE26A69C9D2EA19BB55A464A58526 /* PBXTargetDependency */ = { + 2561519F2960884A51D6997F2DBAAD41 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = FF3BFA06820223C8926A1434DFCED4FD /* PBXContainerItemProxy */; + name = CwlPosixPreconditionTesting; + target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; + targetProxy = 948A35EA8A8BDB7E1B5821B28CFF81CA /* PBXContainerItemProxy */; }; - 388ED26B4F648345161AE75A1746DA7A /* PBXTargetDependency */ = { + 2723A42D84F2D2890CEB143F85911502 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 4FF20277EB011A0777FF412132554DCE /* PBXContainerItemProxy */; + name = IQKeyboardToolbar; + target = F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */; + targetProxy = DF3D0FD8B5F6257EA4AA112AEC2F26C9 /* PBXContainerItemProxy */; }; - 391119A8DEF977C24F943D1CF411F4F0 /* PBXTargetDependency */ = { + 275A556D3A3C2644B3A911B43C332F0E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 556C2F24B9525713F6717102299C119D /* PBXContainerItemProxy */; + name = "Wormholy-Wormholy"; + target = 93CEC7FFB57A497DE49471C5D9517C13 /* Wormholy-Wormholy */; + targetProxy = 05A9514F2182A5BC4ADFCA9DCEFFE3EF /* PBXContainerItemProxy */; }; - 39A1C6E67FBC63FC00BEC802A07C1174 /* PBXTargetDependency */ = { + 27615A99FFAE622D08FBE8468FD0D551 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = C858F684BB1A8C5975CEB25CBE1DDD44 /* PBXContainerItemProxy */; + name = Wormholy; + target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; + targetProxy = FD8536EF62446E7D5E6F447941BD4239 /* PBXContainerItemProxy */; }; - 3B31978996E33993615D0BEB3AB7044A /* PBXTargetDependency */ = { + 28524104158BAC9D84C7DBE21FC216CA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 21ACEC4DEE3C7EFCE239D4F64D3F0888 /* PBXContainerItemProxy */; + targetProxy = 25C747BE8A176755ECE30E6ED64B042B /* PBXContainerItemProxy */; }; - 4316AE76107BEFE98FD0663C901368C9 /* PBXTargetDependency */ = { + 285F9DFEC8E718A3FA5A7E3805B18F55 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 962E753066E9459F2D650FEF52D83D11 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 0FA0751D6F34E25C3426E3F37D4D3898 /* PBXContainerItemProxy */; }; - 448E2884E02EA5B81D686D7550FABC09 /* PBXTargetDependency */ = { + 29A05B77C9DEE36FFE90389573D543EA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 1E6064A623C16A96AAF661667E61761E /* PBXContainerItemProxy */; + name = CwlMachBadInstructionHandler; + target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; + targetProxy = 9D831050C3F0954F7D626EA88A1D2FC4 /* PBXContainerItemProxy */; }; - 44D14AE2A45424D76A90D819435B3ACF /* PBXTargetDependency */ = { + 2B27F3C24B500C1A990C12374F3317BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Nimble-iOS"; - target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; - targetProxy = 4B5146281C72B9CA6417050E577CDD32 /* PBXContainerItemProxy */; - }; - 477934960CD3DAD93B663DD419DB3D4D /* PBXTargetDependency */ = { + name = "ConsentViewController-iOS-ConsentViewController"; + target = F9B2C41D8F3FCEB2256091CF2667D600 /* ConsentViewController-iOS-ConsentViewController */; + targetProxy = 7FC05F3F158C9DCC8F9BA1F0286154EA /* PBXContainerItemProxy */; + }; + 2CF004C850451E5D282AE15D578479CB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Quick-iOS"; - target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; - targetProxy = 5607A3BC8ACC3C2E1A3A31884D69BD59 /* PBXContainerItemProxy */; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = B533DBF06034A0AFDD42CC8E76973033 /* PBXContainerItemProxy */; }; - 4E778DFD99B7D7E273A8FF4DFFE46A6F /* PBXTargetDependency */ = { + 2EED339218A454388DC19D3CCC143167 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = D1F0E9C3BBBE77A07FC26E9E2165E54E /* PBXContainerItemProxy */; + name = CwlMachBadInstructionHandler; + target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; + targetProxy = BE227B09BD72F08A9493B840589F52DC /* PBXContainerItemProxy */; }; - 50AE7765D5EA5F06DA5F8563696B8EFF /* PBXTargetDependency */ = { + 30856480E4920E8E363E53BC7350DDAA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardToolbar; - target = F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */; - targetProxy = 10495010029826FC06DCA72430318576 /* PBXContainerItemProxy */; + name = CwlCatchException; + target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; + targetProxy = 1850A22DDD7FE824B243B41E5E39B755 /* PBXContainerItemProxy */; }; - 51F4EFDA6E28EC322E1D4E2F5BF49CE6 /* PBXTargetDependency */ = { + 30A13B5B8D78A96F1042F24B50CCBEC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Wormholy-Wormholy"; - target = 93CEC7FFB57A497DE49471C5D9517C13 /* Wormholy-Wormholy */; - targetProxy = D9B5F9CF349D7B081F3287FE33A84524 /* PBXContainerItemProxy */; + name = CwlCatchException; + target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; + targetProxy = AE9BC9F8B59929D49E5A5C29E8179ABE /* PBXContainerItemProxy */; }; - 52A2E6637E2B57BDD93BA10F25FA3EB5 /* PBXTargetDependency */ = { + 3309F81F38926524D89AB1DD3106CF84 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "FirebaseInstallations-FirebaseInstallations_Privacy"; - target = 3EB14444A17F9D4F1F697F7C1FF32245 /* FirebaseInstallations-FirebaseInstallations_Privacy */; - targetProxy = 9CBD866F3B8FCCD066C4BB6B9E49442B /* PBXContainerItemProxy */; + name = CwlCatchException; + target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; + targetProxy = 8903CF0BDB425F8FF2C1E6659922EA4B /* PBXContainerItemProxy */; + }; + 33AA026C3D09D342F9CA54950CA2E4A0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Wormholy; + target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; + targetProxy = DD2FF1C0379A3535799C5F864139DDB6 /* PBXContainerItemProxy */; + }; + 34E7D091DD16CC14BDBC9DA4E28A8B5B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardCore; + target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; + targetProxy = 59CCB9E693BB2505E26AC6ADAF09A6DB /* PBXContainerItemProxy */; }; - 538734ACA9784938A6E8D4B96D306017 /* PBXTargetDependency */ = { + 35B8000C0C27BE38B4F557C35F7E2554 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = IQKeyboardNotification; target = A26E6FD851C20D652B2755C1464A9990 /* IQKeyboardNotification */; - targetProxy = DDC3A5A3D67D260F86A06A45BAEF3074 /* PBXContainerItemProxy */; + targetProxy = F7419DF1202D741ECBDF1FA5682E00B3 /* PBXContainerItemProxy */; }; - 57D73AF95BF1A925281C374526E523DB /* PBXTargetDependency */ = { + 372EF258968E33C21CC5BF640DB79002 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IQKeyboardToolbarManager-IQKeyboardToolbarManager"; - target = 7C5613175BBC4BF67E36DB4FBEBC01D0 /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */; - targetProxy = 515344A95E80AD86DBC4B7E2F1BB138B /* PBXContainerItemProxy */; + name = CwlCatchExceptionSupport; + target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; + targetProxy = 53BE2F0F3CCF47DCE6E06F5FA3D0E1EA /* PBXContainerItemProxy */; }; - 58D6A471133F128B6B04E72CA0F9D6D6 /* PBXTargetDependency */ = { + 3741DAB3FB0889190920B54EE1991B7F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardToolbarManager; + target = 020993F16DA5986DACE118349EBCE9E5 /* IQKeyboardToolbarManager */; + targetProxy = 292446881DEBB9DCD4AEBDAF46378DA2 /* PBXContainerItemProxy */; + }; + 37E5E6E075B3A94D4B01DB4B551552E5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "FirebaseInstallations-FirebaseInstallations_Privacy"; + target = 3EB14444A17F9D4F1F697F7C1FF32245 /* FirebaseInstallations-FirebaseInstallations_Privacy */; + targetProxy = 20789E379F00A7BF491778930A79AFA6 /* PBXContainerItemProxy */; + }; + 3B17DC5622FB9D6326627AA29DA0304E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CwlPosixPreconditionTesting; + target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; + targetProxy = D68BCE895FC17B7A29DF2CA8C20D14BF /* PBXContainerItemProxy */; + }; + 3B21269E1B6B37D2EF68917359A494F7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Quick-iOS"; + target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; + targetProxy = 2AB5CA8C14D0352998B51B4118DBC93C /* PBXContainerItemProxy */; + }; + 3B6123B79DEB06E0A31F47FB201AC2A9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "ConsentViewController-iOS"; target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = B02E2C3D0DFB891A71E95984E3BADBB8 /* PBXContainerItemProxy */; + targetProxy = 4286DA4C58B967146C51A84B2BEEC397 /* PBXContainerItemProxy */; }; - 5CC2570A19A21AA490D5DA6714BC061D /* PBXTargetDependency */ = { + 3B63CD676BFE54AF67782F073B59739E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = F1E4CAEDB831701E275A0F91DBDFC976 /* PBXContainerItemProxy */; + name = IQTextInputViewNotification; + target = 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */; + targetProxy = D7FA6F223EDB2F0F25D34B2794681F54 /* PBXContainerItemProxy */; }; - 5D25B036E7EEAED7350D859761F871D2 /* PBXTargetDependency */ = { + 3C77440D7F194776F95176990578B9DC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardToolbarManager; - target = 020993F16DA5986DACE118349EBCE9E5 /* IQKeyboardToolbarManager */; - targetProxy = 4A477745E015196A37B9281A8EF5C01D /* PBXContainerItemProxy */; + name = FirebaseCoreInternal; + target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; + targetProxy = 2EA3E2715FA20A39C8C4C6B998BEF890 /* PBXContainerItemProxy */; }; - 60F46955CDB157C59B5BE36843E2C37D /* PBXTargetDependency */ = { + 3CAA2066E7834FB86FC5361442D883F5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "SPMobileCore-iOS"; target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 9DA93970081F4D4CA294298152248329 /* PBXContainerItemProxy */; + targetProxy = 525C6E37FC0D21CD2C7E8FFAFF158083 /* PBXContainerItemProxy */; }; - 63BAC1AE9321D653069F0D6D72756910 /* PBXTargetDependency */ = { + 404E553E56929502E1C60237DBB3AB85 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IQKeyboardReturnManager-IQKeyboardReturnManager"; - target = 88810798DA63A2F6611B0970EA276DEC /* IQKeyboardReturnManager-IQKeyboardReturnManager */; - targetProxy = D7DAA68F89AF66C5C05D847CAF9E4990 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = C8453CFC81D810C739A7F48D4E2F6EC8 /* PBXContainerItemProxy */; }; - 63E8B4FC059B169C360879638CCB0182 /* PBXTargetDependency */ = { + 4083C4025BB84E2744C04CFD201BE86A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "FirebaseCore-FirebaseCore_Privacy"; - target = 1001C16510D946B47CFF8B19DBC0B787 /* FirebaseCore-FirebaseCore_Privacy */; - targetProxy = 937E2CDB57B3052E0E66CF8EBCA04F5F /* PBXContainerItemProxy */; + name = "Nimble-iOS"; + target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; + targetProxy = 77B280E6B1664E4AA79FEE84CD9CB53E /* PBXContainerItemProxy */; }; - 6758E0FF37C141481887E230A5841984 /* PBXTargetDependency */ = { + 42C670F8C291E587DBE85E898DDDD04A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 1C222E47762509062DEBA50FCD0C05D1 /* PBXContainerItemProxy */; + name = "ConsentViewController-tvOS"; + target = 94DAD332BFFC672BBE92726504A716F8 /* ConsentViewController-tvOS */; + targetProxy = E16C80EFE192250EF585CF511C59C267 /* PBXContainerItemProxy */; }; - 67C61EFD048BD9AB10A298B1F431CFF5 /* PBXTargetDependency */ = { + 453CE114AE61603BD1959B7C9F8DB1F2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SwiftLint; - target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; - targetProxy = ABE73CA57F09CF94D996B8F045A8BBA5 /* PBXContainerItemProxy */; + name = "Quick-iOS"; + target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; + targetProxy = 2BE65A7908A0B6180A8AB38FA9617BB6 /* PBXContainerItemProxy */; }; - 685270C17043F8E9101F9ABE388E1C12 /* PBXTargetDependency */ = { + 45C1F43982D53D25F36EEEE3E0E53846 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "ConsentViewController-tvOS-ConsentViewController"; + target = 5D0718052BFEE502C9D9BEC44BDCFA76 /* ConsentViewController-tvOS-ConsentViewController */; + targetProxy = 0EE636C2FA4D05A98EACBC984CEC807C /* PBXContainerItemProxy */; + }; + 4666D6DCFEB248078BF7AE6F58CDBC88 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "ConsentViewController-iOS"; target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 61677C3CECD104AA289000BA64AC6ABC /* PBXContainerItemProxy */; + targetProxy = D82D5E55C7B2BE153F1262B778BFD486 /* PBXContainerItemProxy */; }; - 68928AE805950B7A5518B33BE9B34A30 /* PBXTargetDependency */ = { + 484C717E000430738249C255273CCB23 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = EA663784F318E984C585CEEB2E40E40D /* PBXContainerItemProxy */; + name = "Nimble-iOS"; + target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; + targetProxy = 5EFE1BFB885B7168B00CA5A572BE3959 /* PBXContainerItemProxy */; }; - 69E3DD12C4992257E731274E0B75B936 /* PBXTargetDependency */ = { + 49034156139168F55506A1C8F08FC154 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IQKeyboardCore-IQKeyboardCore"; - target = EEE261386011CDF271BE289F73FF5959 /* IQKeyboardCore-IQKeyboardCore */; - targetProxy = BA3BF3DD7C10C7486A47E40ECEBC9B5B /* PBXContainerItemProxy */; + name = "ConsentViewController-tvOS"; + target = 94DAD332BFFC672BBE92726504A716F8 /* ConsentViewController-tvOS */; + targetProxy = DCFE29988E2D059C9456CB14EA454F87 /* PBXContainerItemProxy */; }; - 6B231096D4A422DA8B8E70567CA5D392 /* PBXTargetDependency */ = { + 490B76BE728BCE388C1704AD89628935 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 8159B704290E2B8357787C192C3DA257 /* PBXContainerItemProxy */; + name = CwlMachBadInstructionHandler; + target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; + targetProxy = 25220B2488B02EE04D97088C750E5366 /* PBXContainerItemProxy */; }; - 6EC736537EE291CF0F8206BF44510F47 /* PBXTargetDependency */ = { + 4950CB0D090DC7A1B2EFC61B50973238 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IQTextView-IQTextView"; - target = A6602BCAA6F4F932A586C41D0B7E019C /* IQTextView-IQTextView */; - targetProxy = D37B2F2CA837BF037759592532AF14CB /* PBXContainerItemProxy */; + name = IQKeyboardReturnManager; + target = 0981F89DB5DA3FFCFFEBDE1F56287054 /* IQKeyboardReturnManager */; + targetProxy = CD9D3B7549559402D706CA07D936A2A7 /* PBXContainerItemProxy */; }; - 6F298E8B51C5871D7763B2913525D806 /* PBXTargetDependency */ = { + 496CB72D766E14FB1415D814AA1C4DC6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-tvOS"; - target = 0010F36F9D103AAE441EA8E1058A19BC /* SPMobileCore-tvOS */; - targetProxy = 82078A5936913E3D0869DEF7C2DEE511 /* PBXContainerItemProxy */; + name = IQTextView; + target = 12890DE3ABBC2CA295E108358D85EE69 /* IQTextView */; + targetProxy = CF83A55C41CF2C4A7A2A9706E7386091 /* PBXContainerItemProxy */; }; - 710BD21371A58B7B2D0B689CE2DAA2F3 /* PBXTargetDependency */ = { + 4AED70B3157D5E677F47C1FEF7549487 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 707B3A153BA6F062173D44E510B6466A /* PBXContainerItemProxy */; + name = "SPMobileCore-iOS"; + target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; + targetProxy = 6AD4055A450FFA7C0F2F4CB788F179E6 /* PBXContainerItemProxy */; }; - 7131FBEA23D9F4C07004AE03A9A6E799 /* PBXTargetDependency */ = { + 4D30CAB7A72A43925B7482224C17D90D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-tvOS"; - target = 94DAD332BFFC672BBE92726504A716F8 /* ConsentViewController-tvOS */; - targetProxy = 37847D31F88F459FA4A0C9E4E299C45E /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = C5FDE0C3DF2D8ECEBDA7BF7C9EBDCC20 /* PBXContainerItemProxy */; }; - 7250460E38604B9E9175D668D1DBB153 /* PBXTargetDependency */ = { + 50E2FBD45DFB71F3477C6507B4738827 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 54C5B98E83087D72DCCF85D25B93A6C1 /* PBXContainerItemProxy */; + name = CwlCatchExceptionSupport; + target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; + targetProxy = 28EC4B09E9E2EB7A9C9814A38077225D /* PBXContainerItemProxy */; }; - 7282941714C4A830CF6E17C6AE6B01FB /* PBXTargetDependency */ = { + 547753A2BB52A4FAE78DF08E9D2A66A5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Wormholy; - target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; - targetProxy = 523E9C78BE82A2257BA4C71500DEAF67 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 5B10C2A8DD5F0F2DA94D92AFCC4FA3AE /* PBXContainerItemProxy */; }; - 7344889E5C09170C9600A78EAC0E35D6 /* PBXTargetDependency */ = { + 549E803CF8AC3B97AFC095FB7EFB3F9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IQKeyboardToolbar-IQKeyboardToolbar"; - target = B247F77A0CD5E19C8187A9BA1EB58C09 /* IQKeyboardToolbar-IQKeyboardToolbar */; - targetProxy = C638CE3B02A304280C51B2743320FB6D /* PBXContainerItemProxy */; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = 801175A2ED0423C850F0DCEDB9A3306E /* PBXContainerItemProxy */; }; - 74E437E375B3DEAD110B98AF12E52EDD /* PBXTargetDependency */ = { + 54CD8C4DDCADD7D3F3B9568FC3DBC3AC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 90990F6C5A6228518E9E48594D35F142 /* PBXContainerItemProxy */; + name = CwlPosixPreconditionTesting; + target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; + targetProxy = 6697F15A7A9CA6746E47DC803F8DF689 /* PBXContainerItemProxy */; }; - 74ED27BB1B61DC4A02C08536999878BA /* PBXTargetDependency */ = { + 56E6B2FE158AF5399DE266D405BF66FE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "nanopb-nanopb_Privacy"; - target = 55522A91938FF505CFEBEAD2DD85AE2D /* nanopb-nanopb_Privacy */; - targetProxy = 5A8E40850A7126C6B3105FACF877EE71 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 77451331D464318CB13AD370527555BE /* PBXContainerItemProxy */; }; - 75495D0ED5E9CC9AA516482936F2FF7A /* PBXTargetDependency */ = { + 575E0100BE19865CD7868774B175B742 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Wormholy; - target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; - targetProxy = 9682CA15E9FDCC422ED2DB1CAE6FE471 /* PBXContainerItemProxy */; + name = "FirebaseCore-FirebaseCore_Privacy"; + target = 1001C16510D946B47CFF8B19DBC0B787 /* FirebaseCore-FirebaseCore_Privacy */; + targetProxy = D7E5055E23ADA2BC1DC47F6D1576B851 /* PBXContainerItemProxy */; }; - 78ED0262FEFA3E08E34B29E26BD6DA29 /* PBXTargetDependency */ = { + 5A68C486375EB3F183E2C95D168367A1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-tvOS"; - target = 0010F36F9D103AAE441EA8E1058A19BC /* SPMobileCore-tvOS */; - targetProxy = AB17BDED04CFB6D3737A4ED92DF8E94E /* PBXContainerItemProxy */; + name = CwlCatchExceptionSupport; + target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; + targetProxy = 11C9C25E0473553D7CFE0450F4D214A7 /* PBXContainerItemProxy */; + }; + 5AE1945BF6F4DD72C7A3B84E594ED88C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwiftLint; + target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; + targetProxy = 17B4F131F8F82FD8B18852BBBC568276 /* PBXContainerItemProxy */; }; - 7907FFDA17DA6C0B42962F7930E2C4D0 /* PBXTargetDependency */ = { + 5DDD4CB22B521340839000410AF418E4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = B1072587762149EFA80C4145549FFC91 /* PBXContainerItemProxy */; + targetProxy = B89C9B03AFFE36E69590C5B538656597 /* PBXContainerItemProxy */; + }; + 5F2A125CFA47561B0F62D11EFA31FBDD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardManagerSwift; + target = B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */; + targetProxy = 624D91C6260CD9651380487E54ED619F /* PBXContainerItemProxy */; }; - 7AA4BFB773297B44DCF818FE3720DB9F /* PBXTargetDependency */ = { + 6216F8ED2C5D0A78114A0A251C624980 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Quick-iOS"; + target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; + targetProxy = 8D124951CF81FD75BEC49D5C024DAF5D /* PBXContainerItemProxy */; + }; + 62279DBE6BC0FF881DD2E63E2FCB720D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Nimble-iOS"; target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; - targetProxy = EA273B90179E7D432BB012E2F2D4F0E5 /* PBXContainerItemProxy */; + targetProxy = C2CA7B3DB095F2EB3994928872729DDC /* PBXContainerItemProxy */; + }; + 66F0797D445AE35B4E25F2ADF9E6079F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 20734BD6C49559CF00C22388E6B079FF /* PBXContainerItemProxy */; }; - 7B25402904B9C4FBFB410B9B8EFDD33C /* PBXTargetDependency */ = { + 6941983619C754F210B3F425CFA5D1F2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 2F06C6F635C43E3BA483D64B13690E3F /* PBXContainerItemProxy */; + }; + 6C164BDD3C6E1BFF076088C7C22237E6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "SPMobileCore-iOS"; target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = F9DADE581765EFA0F501F474560156E7 /* PBXContainerItemProxy */; + targetProxy = 95C817AF29EAB0D639DF8A6EBE7533E4 /* PBXContainerItemProxy */; }; - 7C2F7C277A83A3D72913109C557EBEDA /* PBXTargetDependency */ = { + 6C3AFB25DD0F253AA4CB180AF8DB5064 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardToolbarManager; - target = 020993F16DA5986DACE118349EBCE9E5 /* IQKeyboardToolbarManager */; - targetProxy = 644B163BA9FE83CF911FE5CC80E331A6 /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 9EF159B1F1FBF554B75D427B2CE3CBE4 /* PBXContainerItemProxy */; }; - 7D1A274345DD99569966272E49016D42 /* PBXTargetDependency */ = { + 6DD3333F4FD7151B39E82F6706B6A016 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardToolbar; - target = F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */; - targetProxy = 92D84965B7558F01C19571F7BEB50127 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 74BD9B859C1431673A91CBA9751080C1 /* PBXContainerItemProxy */; }; - 858C67D8145D7035EA1EB1640551E220 /* PBXTargetDependency */ = { + 7032018AD9BFD6D39C2EA5B4FCA5FCAD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardCore; - target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; - targetProxy = 5294743D73F6A857444E09F6A2B36E51 /* PBXContainerItemProxy */; + name = CwlCatchException; + target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; + targetProxy = A11A3A6F580C2A051D5AF85750A39877 /* PBXContainerItemProxy */; }; - 865B717FE1316B1B268321DD012DEFAC /* PBXTargetDependency */ = { + 71CE48A48037F7A6FA98F928A2D324C8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 69E6F5BB7146501E3E61AF50CE423EB5 /* PBXContainerItemProxy */; + name = "IQTextView-IQTextView"; + target = A6602BCAA6F4F932A586C41D0B7E019C /* IQTextView-IQTextView */; + targetProxy = CD09572B177D8E265C14F55F3DA223C1 /* PBXContainerItemProxy */; }; - 8B5C1D62515F0665433BDA672D1862F4 /* PBXTargetDependency */ = { + 7258FCF7646056D29B9AF7B053ECAAB1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 0B6416BC0176F63A3AE5601C6E11114A /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = D60BBAFAACC2E57A719D3A141B2B48E0 /* PBXContainerItemProxy */; }; - 8C7AB2F2B17E52C2F91D55C41B2BC164 /* PBXTargetDependency */ = { + 74751C64182586356164453C1CF1EAB1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreInternal; - target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; - targetProxy = 540548EED472CD444484258D601A4549 /* PBXContainerItemProxy */; + name = IQKeyboardReturnManager; + target = 0981F89DB5DA3FFCFFEBDE1F56287054 /* IQKeyboardReturnManager */; + targetProxy = 8508BDC0E41FC1A2CF3F983079225396 /* PBXContainerItemProxy */; }; - 8CA4F9EBD4E6F637DB4CD770CBB56E4C /* PBXTargetDependency */ = { + 755757EDC74EA82F8AB151F66BD1C99A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreInternal; - target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; - targetProxy = 516D9909DF0F6E65DBD3F485404E79A8 /* PBXContainerItemProxy */; + name = "Quick-iOS"; + target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; + targetProxy = FE9D585024E690528E6862C30F5DA314 /* PBXContainerItemProxy */; }; - 9162658E6066AE43EB402AF01419052B /* PBXTargetDependency */ = { + 79A01E215082614E3EA6081C65EA6D96 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Nimble-iOS"; + target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; + targetProxy = D88B81E7B2D49D2DDF8573C1E3552971 /* PBXContainerItemProxy */; + }; + 79BDA129000B20C1AE3443DFD88F80E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 87097481734C65F5B41996493CDF78F5 /* PBXContainerItemProxy */; + targetProxy = 720C6623FC6291C2B0B35CB40E6D64A2 /* PBXContainerItemProxy */; }; - 9174A9B74BF3147399FA13F60CAC8217 /* PBXTargetDependency */ = { + 7A6E00C1559043F39108C9D1DB7BF17A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardNotification; - target = A26E6FD851C20D652B2755C1464A9990 /* IQKeyboardNotification */; - targetProxy = EC74425675756FB672667C2A465C3D9A /* PBXContainerItemProxy */; + name = CwlPosixPreconditionTesting; + target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; + targetProxy = 3BAD20ECC8B5877DE171BFAD6A053A4E /* PBXContainerItemProxy */; }; - 91CE4F14853E55BC9BD7CCC0E173D6B7 /* PBXTargetDependency */ = { + 7B649A0E652D7DF3E544B5ECAAB3CE60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = F45CCDE79A0037F85653C4F362333764 /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 7D9C2EA1E0342EFF8B972FAAEF84830F /* PBXContainerItemProxy */; }; - 93FD4A3BB04FAFA3F99D86D7E88B309F /* PBXTargetDependency */ = { + 7D013335DA189539A44003240C49AAFE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Quick-iOS"; - target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; - targetProxy = 0123AAABFD8AAC85BBB6FCDC36AA99A4 /* PBXContainerItemProxy */; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = 3857853DE2B27221542735EE51A8544A /* PBXContainerItemProxy */; }; - 9421BFD6BD977C5476C9577A4B729B8B /* PBXTargetDependency */ = { + 7D70047FEF4AF8EF89C230CD7D042917 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "PromisesObjC-FBLPromises_Privacy"; - target = 1BFBEDBF7E03729D43C96530EE190825 /* PromisesObjC-FBLPromises_Privacy */; - targetProxy = 17AD8CFF20CCCD706F5F476D2F974578 /* PBXContainerItemProxy */; + name = CwlPreconditionTesting; + target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; + targetProxy = 06F4990EDDCB3BE98DF4C29889233EFA /* PBXContainerItemProxy */; }; - 944F4BA3112760F4F275ACCB09246884 /* PBXTargetDependency */ = { + 7DECD9B7973A8DF5C0D6D7FCCC08518A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQTextView; - target = 12890DE3ABBC2CA295E108358D85EE69 /* IQTextView */; - targetProxy = 77213E3F2E9BE54F41816DC6123955A2 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 1324369D380C47FFB65D4F4BB693D76E /* PBXContainerItemProxy */; }; - 97C2ED3B1B601C1BE346DFB21A65D90B /* PBXTargetDependency */ = { + 7DF74A0D4BCBD66D308685DBA015ADB1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreInternal; - target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; - targetProxy = F8F5BFEE937211AD7E8E020796EC7CF4 /* PBXContainerItemProxy */; + name = CwlPosixPreconditionTesting; + target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; + targetProxy = C838431BB933BB2D249A9A5EB0157B4B /* PBXContainerItemProxy */; }; - 99511F785047A0D916CDFF8DA55D2B89 /* PBXTargetDependency */ = { + 80456ED01B0F1704445BA7C87ED43165 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 9EBECF6EC399A873BAC9CE8461EF333C /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = A8EF7497D8CD728D36E2B3AD6BC6A3D7 /* PBXContainerItemProxy */; }; - 99BF9BB2A9E4B625BB861D67D98BC0A3 /* PBXTargetDependency */ = { + 81BACD5CA40B5EABDCBE6C869C417327 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Nimble-iOS"; - target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; - targetProxy = 2610C2A0FACB0AE1B7A3777368C5000A /* PBXContainerItemProxy */; + name = IQKeyboardToolbar; + target = F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */; + targetProxy = 3016450C3E34CD5FC448043985879A6A /* PBXContainerItemProxy */; }; - 9CEC375A5D2217D9F2DD2B2D1543BB1B /* PBXTargetDependency */ = { + 81DD8805EDD1A7BD63EF56065A775858 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Quick-iOS"; - target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; - targetProxy = 2399B50626B23212CDFF15CD931DCAFB /* PBXContainerItemProxy */; + name = SwiftLint; + target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; + targetProxy = BA52EAD9B3333D6A057A8CEBCE7C1BCF /* PBXContainerItemProxy */; }; - 9E1FA52888D52082C190656F8D5D12CC /* PBXTargetDependency */ = { + 82013F84F60B192A87EEBAFF3B1581D0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 3A85311872207310457263E2C45D17C7 /* PBXContainerItemProxy */; + name = IQKeyboardCore; + target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; + targetProxy = CB37DE5A9ABA8979B7007E32C88795B2 /* PBXContainerItemProxy */; }; - A458BE6EC02F614FCDDE7FA951935349 /* PBXTargetDependency */ = { + 846AD3C7FFE7DB3914DE04A8FD630E06 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = B9D7D1DE731AFDE447F27E58CE0C186D /* PBXContainerItemProxy */; + name = "nanopb-nanopb_Privacy"; + target = 55522A91938FF505CFEBEAD2DD85AE2D /* nanopb-nanopb_Privacy */; + targetProxy = B992746E7B787DCF3A3360A8759F91BE /* PBXContainerItemProxy */; }; - A63D45D1A3AB1CE5FC4259A315A03E08 /* PBXTargetDependency */ = { + 85E2177EBD209109CEB948E95736955D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Quick-iOS"; - target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; - targetProxy = 4B87D2E861481B6A350F5F8F1CEF841A /* PBXContainerItemProxy */; + name = CwlPreconditionTesting; + target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; + targetProxy = A66ADA97829817BAB40953CE434BC02F /* PBXContainerItemProxy */; }; - A800C05A21729E3699A4FD09C056E809 /* PBXTargetDependency */ = { + 87263114BA9323CC6816962316F8CCEA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Quick-tvOS"; - target = 28BE3303E3F4ECC2BDF79B1D886D2E74 /* Quick-tvOS */; - targetProxy = 7FA4056A11A248B15934EABC50B2C374 /* PBXContainerItemProxy */; + name = "SPMobileCore-iOS"; + target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; + targetProxy = 3EF6386C03BC285F92D970959534872E /* PBXContainerItemProxy */; }; - A987F953A0490112A1605EC8FA572323 /* PBXTargetDependency */ = { + 873D9B19C821ADD71579ECE2BB496BC5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 3823B2DB5DF1EB1AF029D8FA197A16B4 /* PBXContainerItemProxy */; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = 4204CFA1FE861EFADF04EEF8881C74A6 /* PBXContainerItemProxy */; }; - AA0D1302F37181F9C28FDB4B6CDBA670 /* PBXTargetDependency */ = { + 87C64CDADEE5F0FECF6B2C644DEFA914 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Quick-iOS"; target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; - targetProxy = A0C55E879CE39F35AAB68201D7FCC50E /* PBXContainerItemProxy */; + targetProxy = BF1F10B98849207EFA42A3D79359B46D /* PBXContainerItemProxy */; + }; + 88D8F4DD66BEC836ACB70044D5AC2BAB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = C19C73BE61DB2F13A5C20069F180CF42 /* PBXContainerItemProxy */; }; - AAD24B8A44E7037E09F99777E9718C11 /* PBXTargetDependency */ = { + 8A366EA391A40C331C0480265A5BE22C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Wormholy; target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; - targetProxy = 1976E390840B8FF87526479C770DB4C7 /* PBXContainerItemProxy */; + targetProxy = B52146CF9A9C90B03FEDEE4900F5B597 /* PBXContainerItemProxy */; }; - ABCC7084BB38D290392FDE60B5C8D69A /* PBXTargetDependency */ = { + 8C8E627C9047D0BF7A3FB53C70C1DC96 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IQKeyboardNotification-IQKeyboardNotification"; - target = 2B8FF445A5162845FAB9EC00FC92B694 /* IQKeyboardNotification-IQKeyboardNotification */; - targetProxy = 7C85434852EBB8688E2A21120AFAAC2E /* PBXContainerItemProxy */; + name = CwlPreconditionTesting; + target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; + targetProxy = 52F638F1295648F17820014C77803ABB /* PBXContainerItemProxy */; }; - AE2FFAB5ABAF43A39EAB5427956F081E /* PBXTargetDependency */ = { + 8D0137791BB5191E16819E200D368648 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQTextView; - target = 12890DE3ABBC2CA295E108358D85EE69 /* IQTextView */; - targetProxy = AC58123BDA5521EB87C7A4A0AB563E36 /* PBXContainerItemProxy */; + name = "IQKeyboardCore-IQKeyboardCore"; + target = EEE261386011CDF271BE289F73FF5959 /* IQKeyboardCore-IQKeyboardCore */; + targetProxy = 6D088541F9783628EFE31C7CDC4E3441 /* PBXContainerItemProxy */; }; - AFC68C764D15690985C85FA2B17BFA1E /* PBXTargetDependency */ = { + 8D40A19A6E1CC7553F18972ABF08FA35 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 5A1252A26D480092C841ABC643F41862 /* PBXContainerItemProxy */; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = C7E3975C96A9D9FF24DFEA2F113B4E11 /* PBXContainerItemProxy */; + }; + 8D5E509CEF8FA3CD4FDC8FF241F07FFD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQTextInputViewNotification; + target = 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */; + targetProxy = DE267E34EE0FB26D013A5A959E688F17 /* PBXContainerItemProxy */; + }; + 8E078E25D0006D6F3BF60E3FE1D34C8D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = 707E99840BA323B12A33818DB068B9EB /* PBXContainerItemProxy */; + }; + 8E8EBB43284E83DBEEA09348876304E0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IQTextInputViewNotification-IQTextInputViewNotification"; + target = 4502C7427440BEB17A50C0BF6E638A85 /* IQTextInputViewNotification-IQTextInputViewNotification */; + targetProxy = 354471FAC42E5E1A5B4C6141E7E02B37 /* PBXContainerItemProxy */; }; - B33EAFC649C898F76249376EBFDFEA26 /* PBXTargetDependency */ = { + 8F771E89EC8F67F91A6579ECB91ABE57 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = A2052E7244E03F37D031FDC869D22437 /* PBXContainerItemProxy */; + }; + 900A9C1E9BDB433E8DC18415FFA96ABF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "FirebaseCoreInternal-FirebaseCoreInternal_Privacy"; target = 2949783F7EDB27AD4666B5427B63DC79 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */; - targetProxy = 64E742EA08C5776E6B9A6078EBC3EDCC /* PBXContainerItemProxy */; + targetProxy = F30CF4401824E88781A9169E93D25EDE /* PBXContainerItemProxy */; }; - B4CDBD95A7242A6BAE0EC8BD85A44A83 /* PBXTargetDependency */ = { + 90B0A2F0BBAB1040657B72ECED880EEC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 04AD1F75103136C75DCDBFDD743E9950 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 9C0A2D292670C9BDF8EFFBAB0235B144 /* PBXContainerItemProxy */; + }; + 91AB31B827ACEAA6E22FC6ECB706FCF8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreInternal; + target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; + targetProxy = F5768730385A4A56D4008F3BFB1431ED /* PBXContainerItemProxy */; + }; + 930B7FA3E1A7E77FA6D28BDA58395FF4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IQKeyboardNotification-IQKeyboardNotification"; + target = 2B8FF445A5162845FAB9EC00FC92B694 /* IQKeyboardNotification-IQKeyboardNotification */; + targetProxy = C82BCEAF6B993DB2EA7587E7CFAAD257 /* PBXContainerItemProxy */; + }; + 9533827E72C7DBC238911AB6F79F8012 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CwlCatchExceptionSupport; + target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; + targetProxy = 4B5BFE7C60236F4C21D6822C696CFB57 /* PBXContainerItemProxy */; + }; + 967BCBADC2670AEE9B8B52E40529FE3F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CwlPreconditionTesting; + target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; + targetProxy = FF0F0EB85E9B9C6370BB07C1F142F582 /* PBXContainerItemProxy */; + }; + 967CF81DE76D7B163F5977DD694C9B75 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CwlMachBadInstructionHandler; + target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; + targetProxy = CE913B5C5E549B687967E1B93B33ED00 /* PBXContainerItemProxy */; + }; + 98583423E6246338D23B1811BEA3EE47 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwiftLint; + target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; + targetProxy = 41BA2E3A22120A872EF92AD1AF6AC000 /* PBXContainerItemProxy */; + }; + 99824BE02F51D9BF44E6985869648360 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Nimble-iOS"; + target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; + targetProxy = B0ABFE468FD54C51D77150245E3701E3 /* PBXContainerItemProxy */; + }; + 9B9A3D435A8AA8AF3CDAC4F0117A1D8D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CwlMachBadInstructionHandler; + target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; + targetProxy = 32555D83907864D327622D2FE8007A3E /* PBXContainerItemProxy */; + }; + 9E4C2748064983314CBCEFCE8F0C6647 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CwlMachBadInstructionHandler; + target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; + targetProxy = 47460FA62A18E0AC297C0927787DC9C9 /* PBXContainerItemProxy */; }; - B53B1F0E8B7ED639A9B762014C6C41C7 /* PBXTargetDependency */ = { + A0746EDE0E89B9C4AD5B0E1954D5BF44 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IQKeyboardManagerSwift-IQKeyboardManagerSwift"; + target = 982A68D37F5DCBC1FC1FDC0BB2F0EB8E /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */; + targetProxy = 8DCC7DF4FDA0EECF480C21934FE7203C /* PBXContainerItemProxy */; + }; + A3769FB39A9E42F04675DF89D6E18049 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CwlCatchExceptionSupport; + target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; + targetProxy = C4F099590FB3C860EA250717AD117CF3 /* PBXContainerItemProxy */; + }; + A4FBEB25F2C2D0724307D8AF81C08E65 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = A53943D9A778B88157288A9DD85B9C39 /* PBXContainerItemProxy */; + }; + A9D6B724021609737E6DAA0DA19685B6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "ConsentViewController-iOS"; target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 86C8995E69B34491A07B1E446B5F5099 /* PBXContainerItemProxy */; + targetProxy = 025A0C93317103FE52F5D92C9820336C /* PBXContainerItemProxy */; }; - B6F043BD665C0E5E6427F899AA2459CC /* PBXTargetDependency */ = { + AC083F59F100DD403BBEC3C609AB7306 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 3656B6808F77FE26C92DA20A69619317 /* PBXContainerItemProxy */; + name = CwlCatchException; + target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; + targetProxy = 24A7498E4A084043772CD2BE734E1D92 /* PBXContainerItemProxy */; + }; + AD1F26DE2D06E1FD827A2B6BDF011F8A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CwlCatchException; + target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; + targetProxy = 5C9A4EFCCCE749427AC6E2C91C7E8DEC /* PBXContainerItemProxy */; }; - B81DC90CBF3899C4308DABA362285BE5 /* PBXTargetDependency */ = { + AD4700B18A9E64DA2E8FDAE373646150 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Wormholy; target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; - targetProxy = 2232885E610DB0926DE477FDAD43A715 /* PBXContainerItemProxy */; + targetProxy = 256B08D99AFD9ADCE4C77EC5FA05FBFA /* PBXContainerItemProxy */; }; - BA7BAECB6DC86760F706A1F2323256B7 /* PBXTargetDependency */ = { + AFB302B8C634C81748F53D26E73B365C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = DB97A09DF80FF4DC66B9587D8C631311 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 24CDD02B9DA1D0CFE90FB2C4C63CEAD9 /* PBXContainerItemProxy */; }; - BDF8A7982E8CFCC753E09A33C83E65FE /* PBXTargetDependency */ = { + B13E02894AA639BB1E2C96B53FF6E135 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 505A0318DF0A9B2101099012CD9125CE /* PBXContainerItemProxy */; + name = "SPMobileCore-tvOS"; + target = 0010F36F9D103AAE441EA8E1058A19BC /* SPMobileCore-tvOS */; + targetProxy = 5C6E82CCB705BC58971034CFF1B8FDE4 /* PBXContainerItemProxy */; }; - C06313A2780A02C59A4CCD28FBB91961 /* PBXTargetDependency */ = { + B43F4AF5A5D1F56BB4AC18AF3FCE9ED9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "ConsentViewController-iOS"; target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 20976BCA5AA007C2E460B23C75613127 /* PBXContainerItemProxy */; + targetProxy = 3655FD46BA6AD37F8E66FED0F6472063 /* PBXContainerItemProxy */; + }; + B6233E26A39BE257B0C37351E0535B65 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IQKeyboardToolbarManager-IQKeyboardToolbarManager"; + target = 7C5613175BBC4BF67E36DB4FBEBC01D0 /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */; + targetProxy = 0367898ECB58FF05ED6C602215EEFAF5 /* PBXContainerItemProxy */; + }; + B70B9A6931524B857248EAE77DFE096E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 9D522ADD1B7AEEC25ADFD1532B8510D3 /* PBXContainerItemProxy */; }; - C0CDB73F5AF33EC757ADF601CB088C13 /* PBXTargetDependency */ = { + B7FF9F6B30FC809AB60388B77DCA6805 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "SPMobileCore-iOS"; target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = FD0966D6B096CECC0988E09FAA578BE7 /* PBXContainerItemProxy */; + targetProxy = 0119E87051C67CEB2F1B19BBD2FBA79B /* PBXContainerItemProxy */; }; - C3A3999F82DAD77672C78BAF3D3CCB7B /* PBXTargetDependency */ = { + B9E3C3975EBACA25402657897E2C7383 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Nimble-iOS"; - target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; - targetProxy = 4C218E26B39667896AA74126D4B2A59B /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = B435C609D4DD9E1A969FBBCE0D3600B3 /* PBXContainerItemProxy */; }; - C4C09CFD9843806B25D4314B0E105D9E /* PBXTargetDependency */ = { + B9F790FA1204FCB0B6C93531D40E9496 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQTextInputViewNotification; - target = 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */; - targetProxy = BFE1EF3E5024328373B42084BE9DD892 /* PBXContainerItemProxy */; + name = Wormholy; + target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; + targetProxy = 16A2BAB3962A485FF3CFF8158062D735 /* PBXContainerItemProxy */; }; - C4DBA618B4EE4D37FF47FC4910BD7405 /* PBXTargetDependency */ = { + BA5C4071D2425CBC01B32F46B5D0A7F9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = D3D178129BB0DEC0AFA3A5728046513F /* PBXContainerItemProxy */; + name = CwlPosixPreconditionTesting; + target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; + targetProxy = EB8B4AFB98C8AA40E8C6718B4BD12A88 /* PBXContainerItemProxy */; }; - C50304B00884B308AFF48AD95CBE1A6C /* PBXTargetDependency */ = { + BAB82E7223D4D057AAE5DDC0843AC7E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SwiftLint; target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; - targetProxy = 068F2850CAC887244C239D2A41B95ACA /* PBXContainerItemProxy */; + targetProxy = 7ECDB462CC50846ADD2F2FA4CDA95ACC /* PBXContainerItemProxy */; }; - C90416B30225E9F191BBFC2D0276A782 /* PBXTargetDependency */ = { + BAE9A630370F6B02599E9BDE609CC63E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 410DC584D03A32C82D53C406290B8A55 /* PBXContainerItemProxy */; + name = "SPMobileCore-iOS"; + target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; + targetProxy = 6A0F25B1AD4263FEC082DAAEAD369943 /* PBXContainerItemProxy */; }; - CA29DADBFF0D1067966300D328852D05 /* PBXTargetDependency */ = { + BFF0EDAA49180DF0207B3C652889048B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 31ADA1954C68579B8BA60518A0D41404 /* PBXContainerItemProxy */; + name = CwlPreconditionTesting; + target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; + targetProxy = C534401E16F13D0035ABC76DBDB85CA8 /* PBXContainerItemProxy */; }; - CE37172B8A79D9E5CE13AC4B654CBB79 /* PBXTargetDependency */ = { + C2927FA89C466E80FE599BE4DC5DE48A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IQTextInputViewNotification-IQTextInputViewNotification"; - target = 4502C7427440BEB17A50C0BF6E638A85 /* IQTextInputViewNotification-IQTextInputViewNotification */; - targetProxy = 14992DBFF8280ADEBA2D2ECFEA6602F9 /* PBXContainerItemProxy */; + name = CwlPosixPreconditionTesting; + target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; + targetProxy = E62605E5271F28C55F3BE13E7DAC423D /* PBXContainerItemProxy */; }; - CF3E88EC8F4F26EF72FAA126C0D1E4B7 /* PBXTargetDependency */ = { + C37279134AC6E75A0ED23CD60334388A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQTextInputViewNotification; - target = 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */; - targetProxy = D2619C976102C8741FEDEB6328EEC85F /* PBXContainerItemProxy */; + name = IQTextView; + target = 12890DE3ABBC2CA295E108358D85EE69 /* IQTextView */; + targetProxy = 026D88F41B3B306D9B5F6D7DD72C74FB /* PBXContainerItemProxy */; + }; + C4DBE24AD383A405FEA227E58FAC4C3E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CwlCatchException; + target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; + targetProxy = 742920A449B5CE6B1AA135777E1C61A3 /* PBXContainerItemProxy */; }; - D08535D3153E74A94F844E84C9FA2844 /* PBXTargetDependency */ = { + C58604D9F0BC8FAAEE422C8CF5829668 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IQKeyboardReturnManager-IQKeyboardReturnManager"; + target = 88810798DA63A2F6611B0970EA276DEC /* IQKeyboardReturnManager-IQKeyboardReturnManager */; + targetProxy = 2B5E892ACBA3165FEABFF558033B68D7 /* PBXContainerItemProxy */; + }; + C6E6B39797ECED7F922D0C48DA40A09A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Quick-iOS"; + target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; + targetProxy = A7F8F36239C540B80A46DB887E3B753C /* PBXContainerItemProxy */; + }; + C74B1EBA518E93DB92BA3E12B0C54DF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "SPMobileCore-iOS"; target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 984E31B374FA8AFC52FBBE7FC8C2BFD2 /* PBXContainerItemProxy */; + targetProxy = 0DF0911F666CB060D09A4256C32DCCAF /* PBXContainerItemProxy */; }; - D18E21249828E7B712039AADB1B08514 /* PBXTargetDependency */ = { + CC3D1D025804402805AA1086731D259B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Nimble-tvOS"; - target = A897D2D55F6D87795224F846F8ED3A36 /* Nimble-tvOS */; - targetProxy = 1338961AA9AF4ECB818918637C6B0634 /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 84B125CA7BA6D4978D6B3AF2DF387669 /* PBXContainerItemProxy */; }; - D30DE9167547EDC232B6D906D0566DD3 /* PBXTargetDependency */ = { + CD38A3D9AAECFE0FA6882F9BC75CCCB6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = IQKeyboardCore; target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; - targetProxy = 7521EF5DF96FC0DA23E66AD23887A2E2 /* PBXContainerItemProxy */; + targetProxy = DE680BB172537D7CCF3F3E18DD1FFCA6 /* PBXContainerItemProxy */; }; - D69BD4C286F35799599FCE6E0BA1494C /* PBXTargetDependency */ = { + CE28F69F46E29161ED713248736DDDC4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = E6AABDD306ED30EF4837D3C9B232C9DC /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 04704E5ED8B7A67DF7468320D37C8A87 /* PBXContainerItemProxy */; }; - D6B01866B0ACA62C69AFE5EEE8131146 /* PBXTargetDependency */ = { + CF6F5EB013E219A3E0A349448FB19178 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Nimble-iOS"; - target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; - targetProxy = 441E6D6B7C143F108639E25293414A6F /* PBXContainerItemProxy */; + name = CwlCatchExceptionSupport; + target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; + targetProxy = 4CDCBBE7D6C72CF7EDC0CA1B01156E56 /* PBXContainerItemProxy */; }; - D761F1261F4D85114191E0E60256A65E /* PBXTargetDependency */ = { + D152D84C6C9556C5A9FB648B8269F305 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JSONView; - target = 2450D89327C2F3947256DE8768B4B9B9 /* JSONView */; - targetProxy = 048AEC5AC506FA28D27308C34CB44FDC /* PBXContainerItemProxy */; + name = CwlMachBadInstructionHandler; + target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; + targetProxy = 00B4DC3A6714595588257A63DE9E1CF6 /* PBXContainerItemProxy */; }; - D84F69C4D56B12C4C6C44A6246B4E504 /* PBXTargetDependency */ = { + D176F50792D8630DAC4147DAD4CFF5A8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = AAD519933DA16F338D940FB1683FCD35 /* PBXContainerItemProxy */; + name = "GoogleUtilities-GoogleUtilities_Privacy"; + target = 5FF1A58DEEC5DB749FCD6C120B97CC82 /* GoogleUtilities-GoogleUtilities_Privacy */; + targetProxy = 770BE3374263C9EE0E3080C517F0589F /* PBXContainerItemProxy */; + }; + D19C01E5F6FFC0DA727283A5BB9C19EC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Nimble-tvOS"; + target = A897D2D55F6D87795224F846F8ED3A36 /* Nimble-tvOS */; + targetProxy = 46BE2C65B9C2025D100C022BED685CE2 /* PBXContainerItemProxy */; }; - DCAAFC5BC2B96F3C298DB7D66108D3D4 /* PBXTargetDependency */ = { + D4BFFACD854205F7E4CE273B991DDC12 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "SPMobileCore-tvOS"; + target = 0010F36F9D103AAE441EA8E1058A19BC /* SPMobileCore-tvOS */; + targetProxy = CC27C710DF59B5CFD9AC192062E5188B /* PBXContainerItemProxy */; + }; + D6A3563E4F26A5632811F0786A7DEE1C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = FBFF2E4FD384ABE0BEA198CC8AF8A806 /* PBXContainerItemProxy */; + targetProxy = D0789DC0329358B73A75BBD906D2DB4B /* PBXContainerItemProxy */; }; - DCB1ADACEBBE2AD746CFA966EC2AD73D /* PBXTargetDependency */ = { + D93F408C1C76C40F3A5123975F7E1C08 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-tvOS-ConsentViewController"; - target = 5D0718052BFEE502C9D9BEC44BDCFA76 /* ConsentViewController-tvOS-ConsentViewController */; - targetProxy = C9734BC700CBB6B7B2FDAC62C9F7561D /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 4148B3DC7F84A7D245CADBD8252F8298 /* PBXContainerItemProxy */; + }; + D98D2FBBADD6B27CF9ED90BF533C0907 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = 733ACDB862097AD06C660176DDEA8A44 /* PBXContainerItemProxy */; + }; + DA643F744BF74159E4C6C37467ABFA51 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CwlCatchExceptionSupport; + target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; + targetProxy = F463BEFA52E9A14DB0C1075F873B48BA /* PBXContainerItemProxy */; }; - E294F16865FF44DFB6D54F08FE53E224 /* PBXTargetDependency */ = { + DC0FF11DFBDF9B5A47223CE06F12338A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IQKeyboardToolbar-IQKeyboardToolbar"; + target = B247F77A0CD5E19C8187A9BA1EB58C09 /* IQKeyboardToolbar-IQKeyboardToolbar */; + targetProxy = DA71F16A2A56C850FEF28F86DCDA018A /* PBXContainerItemProxy */; + }; + DC7360FCCF34D3F2A63E22632C37194A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Quick-iOS"; target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; - targetProxy = BF7A5AB204FED86ED37F834010115D26 /* PBXContainerItemProxy */; + targetProxy = CC65A0A023780572AE815FC3CA5EF442 /* PBXContainerItemProxy */; }; - E56C132FA64219C25D5AD31E404CC3CA /* PBXTargetDependency */ = { + E089603DED3116AFF0EBF2C6FA807C35 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardReturnManager; - target = 0981F89DB5DA3FFCFFEBDE1F56287054 /* IQKeyboardReturnManager */; - targetProxy = 64A634AE6ED633720F949AC134361556 /* PBXContainerItemProxy */; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = 10FAB31BD8BEF24DC13573D2C64421A4 /* PBXContainerItemProxy */; }; - E585386C811B08B9F3323FDBAE2E26AD /* PBXTargetDependency */ = { + E324064A76F5E58570B5D4A50CA2DBC5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = C39D8F74D951D16082909CF97A9E3857 /* PBXContainerItemProxy */; + name = IQTextInputViewNotification; + target = 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */; + targetProxy = A0CF2C3BA3DE7EE292E3BC119F9E53EB /* PBXContainerItemProxy */; }; - EE850B0DEE5513B0F1CA057625DDE9C2 /* PBXTargetDependency */ = { + E486EB12F857DCB86DC0CA317A75E3A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-tvOS"; - target = 94DAD332BFFC672BBE92726504A716F8 /* ConsentViewController-tvOS */; - targetProxy = 73F37F2277EDBB5E7819C177C5FD5F34 /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 50A8E938347BF128AEB00E9A27D8D7B3 /* PBXContainerItemProxy */; }; - EF3ED247F6A7F7321BBB296EF7A03F8A /* PBXTargetDependency */ = { + E572771101D6FF72FFD6A1A1FDF5F71E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Wormholy; - target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; - targetProxy = FF70C3C692095A35130C1194DC3E18C4 /* PBXContainerItemProxy */; + name = "Nimble-iOS"; + target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; + targetProxy = 1999F1AC0FE9027C893B411CF6093AD5 /* PBXContainerItemProxy */; }; - F031BDDE866677FB3284FF718BF90230 /* PBXTargetDependency */ = { + E8318C296803A62395F983F58CDA6623 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SwiftLint; - target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; - targetProxy = 848F12AA33F606603B38584C385C552C /* PBXContainerItemProxy */; + name = "SPMobileCore-iOS"; + target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; + targetProxy = E8CD705EB1A60482D6484F4B646D2299 /* PBXContainerItemProxy */; }; - F032E4852DD28BE30189EB6E5A4E1D4B /* PBXTargetDependency */ = { + EA8927A71C5FA29DEAAD75720CF0186C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SwiftLint; - target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; - targetProxy = 3C85EDAEA13993FCFF705EA69EB69705 /* PBXContainerItemProxy */; + name = "SPMobileCore-tvOS"; + target = 0010F36F9D103AAE441EA8E1058A19BC /* SPMobileCore-tvOS */; + targetProxy = 1AC8DA3C015CB1B5B4838349305C3FB0 /* PBXContainerItemProxy */; + }; + EBE2B51A1FD6473BE0E259E12F8E3D7C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CwlMachBadInstructionHandler; + target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; + targetProxy = A186CEFA6B63586AB867C7E2CEFD280A /* PBXContainerItemProxy */; + }; + EC1FA60387FB3F7E4F38131FA528719A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 646963F2DBA5B96C434C8CD7B24A1640 /* PBXContainerItemProxy */; }; - F0517C8D42761DF51139CC39B0FA6CFD /* PBXTargetDependency */ = { + EEC418108D97237C57048CDC3C843EE5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Nimble-iOS"; target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; - targetProxy = F87882BD37B943D05710AC661B81F200 /* PBXContainerItemProxy */; + targetProxy = 7081AF037204ADAF56BF7BB5EC850D4F /* PBXContainerItemProxy */; }; - F196BC9AF8ED9C5F10F19A72AA6ED8EB /* PBXTargetDependency */ = { + EFF587BFB42DE66769D5960BCC8D3A94 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQTextInputViewNotification; - target = 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */; - targetProxy = C671426142023C0B2457D1B7E8E79FC4 /* PBXContainerItemProxy */; + name = CwlPosixPreconditionTesting; + target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; + targetProxy = E1445D4B3611816F8DC924C97B7169B3 /* PBXContainerItemProxy */; + }; + F381DED8F54682649181BA2363DF0C44 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 966427EE9DD062D14EE8296DE0B571D5 /* PBXContainerItemProxy */; }; - F27B7781A4A834C51169911EE7709B8D /* PBXTargetDependency */ = { + F45C27804A971C54DE71617F6AB0FEDA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "SPMobileCore-iOS"; + target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; + targetProxy = D85DCC1A22C229E541F3C81ECE959A26 /* PBXContainerItemProxy */; + }; + F69BCFC436DCCA3C222CEBDDA04F4852 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CwlMachBadInstructionHandler; + target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; + targetProxy = 384B9DA761ACF885747AFA8B522B3DB4 /* PBXContainerItemProxy */; + }; + F72A87A5DBA4B896DD5271C188F5AED7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardNotification; + target = A26E6FD851C20D652B2755C1464A9990 /* IQKeyboardNotification */; + targetProxy = 7A76B68FCF0DF209241D59A1781494C3 /* PBXContainerItemProxy */; + }; + F8EEBEBE654D824C629FD4E1C8F2EE21 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SwiftLint; target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; - targetProxy = A13F2A7CEB84266B6631E324104C8E38 /* PBXContainerItemProxy */; + targetProxy = 151397321A1E1D2A743600101E76A4A5 /* PBXContainerItemProxy */; }; - F4E74E7ED18ED8CCCDC5CF282268F9BE /* PBXTargetDependency */ = { + F9344716DAEB6E656DF4111FE4A3A843 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 72D3AC9E94A87B089F99439E509C7919 /* PBXContainerItemProxy */; + name = CwlCatchException; + target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; + targetProxy = 860A9B477E38B5BF941E9645732C0753 /* PBXContainerItemProxy */; }; - F67C48CFBFAAD6990CC12904F3430769 /* PBXTargetDependency */ = { + F94C0393AC538C3562FC79FA0DFCE5A5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 021C3AA32EDC0520D443B2E8B57C356F /* PBXContainerItemProxy */; + name = "Nimble-iOS"; + target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; + targetProxy = 0E809A9680AD4276A1BC32AC3BDF96C4 /* PBXContainerItemProxy */; }; - FBD81F7274DDA1FAB244703CC27BB128 /* PBXTargetDependency */ = { + FA77D4AF9372B865829614D83E36B131 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "GoogleUtilities-GoogleUtilities_Privacy"; - target = 5FF1A58DEEC5DB749FCD6C120B97CC82 /* GoogleUtilities-GoogleUtilities_Privacy */; - targetProxy = EDA6A459679FAF72CF30F3F4A396505C /* PBXContainerItemProxy */; + name = CwlPosixPreconditionTesting; + target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; + targetProxy = BCD76662CC0AA357552F7C748F0057E0 /* PBXContainerItemProxy */; + }; + FA876FA559999F8513DFF7907A6D3F57 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CwlPreconditionTesting; + target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; + targetProxy = 83744F768F6F395B89A6E85F050B2BB1 /* PBXContainerItemProxy */; + }; + FE5734456B2760D22BEA6C779DE58063 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardToolbar; + target = F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */; + targetProxy = 6790E02FC3FC344A8EBB8B66132713DE /* PBXContainerItemProxy */; + }; + FEF95178123BEDB3295192D97057E6E5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = B7E7CC81BEB886C867DCA4669C29730A /* PBXContainerItemProxy */; }; - FDED3DD210228F477413288E16A106EE /* PBXTargetDependency */ = { + FF4B8BC468732C1AECE60414C2B88DBC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-tvOS"; - target = 0010F36F9D103AAE441EA8E1058A19BC /* SPMobileCore-tvOS */; - targetProxy = D66C5DFA7BF61ECC0AA70A1293E20773 /* PBXContainerItemProxy */; + name = JSONView; + target = 2450D89327C2F3947256DE8768B4B9B9 /* JSONView */; + targetProxy = 39AB65FA9D1213F769B4A37EC2DF285C /* PBXContainerItemProxy */; }; - FEE691DBFB5E4A1E224164C70B2933A4 /* PBXTargetDependency */ = { + FFDB195C8B26840623CC1A5018EBAA27 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "SPMobileCore-iOS"; target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = BB9A88D7137DF8A2EB19A260A00FCC0D /* PBXContainerItemProxy */; - }; - FF8B3296875A70022E392ABB74669668 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Wormholy; - target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; - targetProxy = 2C61F49493410080DA07AB8A92EABE47 /* PBXContainerItemProxy */; + targetProxy = 9C2E24C6B93BA69E5378E33134F15FF4 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 01E80027AC25B05C51DA33EF851B5CBE /* Debug */ = { + 00910A45DCE133C0463108831C3E38D7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B05A0A41C358E0B8CC0104BD173FC5D /* IQTextView.debug.xcconfig */; + baseConfigurationReference = B7BDFAB7F2C3D6412FF9E6427BF0BF5E /* nanopb.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextView"; - IBSC_MODULE = IQTextView; - INFOPLIST_FILE = "Target Support Files/IQTextView/ResourceBundle-IQTextView-IQTextView-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQTextView; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = nanopb_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 03C284DCD82A6DB2120ECB795D76D2F8 /* Release */ = { + 02661949AD1B877B467898C4A583050A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D7E1722F5F469B205A5C3074B48B377E /* FirebaseCoreInternal.release.xcconfig */; + baseConfigurationReference = A89672116452AEA51E63CDD4641DF6AC /* IQKeyboardNotification.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -9134,74 +10373,34 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-Info.plist"; + INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCoreInternal; - PRODUCT_NAME = FirebaseCoreInternal; + MODULEMAP_FILE = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardNotification; + PRODUCT_NAME = IQKeyboardNotification; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 06FB9A0D78EC4D64B2E01E913AFC4F3D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = AFB1557A33F666C0A9D83F8FE7C9D111 /* Pods-Examples-ConsentViewController_Example.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 09576C7050EB76645356B9FBBDD8098C /* Debug */ = { + 0359B6E5C81C72F2A836F368541E137C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 58D79CB8A59DDB3B0C1DF4F79342D9C2 /* IQKeyboardManagerSwift.debug.xcconfig */; + baseConfigurationReference = 32F6B838E42284ACF0782FC442FFA5D9 /* CwlPreconditionTesting.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -9213,92 +10412,53 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-prefix.pch"; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist"; + INFOPLIST_FILE = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardManagerSwift; - PRODUCT_NAME = IQKeyboardManagerSwift; + MODULEMAP_FILE = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.modulemap"; + PRODUCT_MODULE_NAME = CwlPreconditionTesting; + PRODUCT_NAME = CwlPreconditionTesting; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; + SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 0AA3186257C363061B9EE59EFAA33B06 /* Release */ = { + 06E89B66603BB3817B6DD4358A37B33C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 967CAFFF493C6FEC1965C15C0DB132C5 /* IQTextView.release.xcconfig */; + baseConfigurationReference = 64C1435AAFD0344CE9E34B6CFFB7E446 /* IQKeyboardCore.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextView"; - IBSC_MODULE = IQTextView; - INFOPLIST_FILE = "Target Support Files/IQTextView/ResourceBundle-IQTextView-IQTextView-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardCore"; + IBSC_MODULE = IQKeyboardCore; + INFOPLIST_FILE = "Target Support Files/IQKeyboardCore/ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQTextView; + PRODUCT_NAME = IQKeyboardCore; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Release; - }; - 0BA694B25A1A32B5C3357DBF55E24E91 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 795CEEAE5E337F0243E5E46D031A5ABD /* Wormholy.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Wormholy/Wormholy-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Wormholy/Wormholy-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Wormholy/Wormholy.modulemap"; - PRODUCT_MODULE_NAME = Wormholy; - PRODUCT_NAME = Wormholy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; + name = Debug; }; - 0BCABF5071E93511CBE83B95C9D5D0D3 /* Debug */ = { + 06FB9A0D78EC4D64B2E01E913AFC4F3D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19A3208713532FEB443BA6C90BF523BC /* Pods-Examples-SourcepointFirebaseDemo.debug.xcconfig */; + baseConfigurationReference = AFB1557A33F666C0A9D83F8FE7C9D111 /* Pods-Examples-ConsentViewController_Example.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -9312,7 +10472,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -9321,7 +10481,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -9335,26 +10495,9 @@ }; name = Debug; }; - 0DCC6ED004FA82036460B8F899659ECF /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A636064211D47B85F3EB7BCDE55DB714 /* IQTextInputViewNotification.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextInputViewNotification"; - IBSC_MODULE = IQTextInputViewNotification; - INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQTextInputViewNotification; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 0DD636FEE499F68411AFE45790D4E541 /* Release */ = { + 09576C7050EB76645356B9FBBDD8098C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 621330E260760ED099CCF53609EF7C50 /* FirebaseCore.release.xcconfig */; + baseConfigurationReference = 2BA16E167D6EF79C689CE7ECBC63430C /* IQKeyboardManagerSwift.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -9366,105 +10509,65 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; + INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/FirebaseCore/FirebaseCore.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCore; - PRODUCT_NAME = FirebaseCore; + MODULEMAP_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardManagerSwift; + PRODUCT_NAME = IQKeyboardManagerSwift; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 0ED3FB489B2F36FB9D45064F1B8E760C /* Release */ = { + 0BA694B25A1A32B5C3357DBF55E24E91 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 331073598098173D1699703CF07AF019 /* ConsentViewController-iOS.release.xcconfig */; + baseConfigurationReference = C71513E560B1CB1D8E9A60A2D72233D9 /* Wormholy.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Wormholy/Wormholy-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Wormholy/Wormholy-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS.modulemap"; - PRODUCT_MODULE_NAME = ConsentViewController; - PRODUCT_NAME = ConsentViewController; + MODULEMAP_FILE = "Target Support Files/Wormholy/Wormholy.modulemap"; + PRODUCT_MODULE_NAME = Wormholy; + PRODUCT_NAME = Wormholy; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 100D0542326720D8D5D2B5B301409A20 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7659A6B7A2DCBEF9F67EF52B4C3237C0 /* Pods-Examples-ConsentViewController_Example.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -9472,9 +10575,9 @@ }; name = Release; }; - 127AF5EE914E400066BBA00020D487F2 /* Debug */ = { + 0BCABF5071E93511CBE83B95C9D5D0D3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 02A196CEB3DFD80618F39736B5983336 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig */; + baseConfigurationReference = 19A3208713532FEB443BA6C90BF523BC /* Pods-Examples-SourcepointFirebaseDemo.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -9488,7 +10591,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -9497,7 +10600,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -9511,48 +10614,49 @@ }; name = Debug; }; - 14DDFCD7D393DF74FC985AA1FE333E5A /* Debug */ = { + 0ED3FB489B2F36FB9D45064F1B8E760C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2A35CC9C7D8AA754363439B2D68134BF /* GoogleUtilities.debug.xcconfig */; + baseConfigurationReference = 331073598098173D1699703CF07AF019 /* ConsentViewController-iOS.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INFOPLIST_FILE = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + MODULEMAP_FILE = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS.modulemap"; + PRODUCT_MODULE_NAME = ConsentViewController; + PRODUCT_NAME = ConsentViewController; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; + SWIFT_VERSION = 5.1; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 15930BD83DB782BFD12AADBE994EAC9E /* Release */ = { + 100D0542326720D8D5D2B5B301409A20 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1209EA6EBCF62A05EE4AF10A38C73B9C /* Pods-Tests-SPGDPRExampleAppUITests.release.xcconfig */; + baseConfigurationReference = 7659A6B7A2DCBEF9F67EF52B4C3237C0 /* Pods-Examples-ConsentViewController_Example.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -9566,7 +10670,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -9575,7 +10679,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -9590,47 +10694,26 @@ }; name = Release; }; - 15F2B064B7E59A89B5466500B3FA78E2 /* Release */ = { + 111B314DEBE9B397D778D90CFAA0DD1A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6353A96B06297E1695D5C0F25332E082 /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = C71513E560B1CB1D8E9A60A2D72233D9 /* Wormholy.release.xcconfig */; buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Wormholy"; + IBSC_MODULE = Wormholy; + INFOPLIST_FILE = "Target Support Files/Wormholy/ResourceBundle-Wormholy-Wormholy-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = Wormholy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Release; }; - 176CE08329BF92BFDE5C76F89C647973 /* Debug */ = { + 168DAAB3547D8A0B537D7695AFC15E59 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4B41A0B5A8F6586597B43EDE1F19EEAC /* Nimble-tvOS.debug.xcconfig */; + baseConfigurationReference = 5393C11706FE1D32CACED7EBDE82926B /* Nimble-tvOS.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -9660,15 +10743,32 @@ SWIFT_INSTALL_OBJC_HEADER = YES; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 9.0; + TVOS_DEPLOYMENT_TARGET = 13.0; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 1845817627C1DF4314CC729D0A910DC7 /* Debug */ = { + 179F02B068D3A949CE974A8A247F5C88 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 312BF46E4E318C049EFD24288B49F860 /* IQTextInputViewNotification.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextInputViewNotification"; + IBSC_MODULE = IQTextInputViewNotification; + INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = IQTextInputViewNotification; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 17B75AFE066BBCE403255328353E64F5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B05A0A41C358E0B8CC0104BD173FC5D /* IQTextView.debug.xcconfig */; + baseConfigurationReference = 1502E63A37330EBB5C1A73A5190D09F5 /* IQTextView.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -9700,14 +10800,15 @@ SWIFT_INSTALL_OBJC_HEADER = YES; SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 1DDC29305721939E0776EF97656F1677 /* Release */ = { + 181CE522775CEF3D1FB2C67A55AE0DD5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2BB705775345ED936727B2B3FEB91464 /* IQKeyboardReturnManager.release.xcconfig */; + baseConfigurationReference = 119BF7600B4B48D0FAF2C547AC752308 /* GoogleUtilities.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -9720,25 +10821,24 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardReturnManager; - PRODUCT_NAME = IQKeyboardReturnManager; + MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilities; + PRODUCT_NAME = GoogleUtilities; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -9746,16 +10846,16 @@ }; name = Release; }; - 1E9C7D9E6F6C46650139F05E27F2864C /* Release */ = { + 198C3997F297ECA1DE780203DB2B9686 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6353A96B06297E1695D5C0F25332E082 /* PromisesObjC.release.xcconfig */; + baseConfigurationReference = 1502E63A37330EBB5C1A73A5190D09F5 /* IQTextView.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = FBLPromises_Privacy; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextView"; + IBSC_MODULE = IQTextView; + INFOPLIST_FILE = "Target Support Files/IQTextView/ResourceBundle-IQTextView-IQTextView-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = IQTextView; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -9763,149 +10863,148 @@ }; name = Release; }; - 206A5D1AD900A40547B7D4FC869AA5C5 /* Debug */ = { + 20ED51BAD5DE05615FFA0AEAAB2301CB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8F1B2B1E2EA16E8AA8C6A4E3DB461D04 /* Pods-Tests-NativeMessageExampleUITests.debug.xcconfig */; + baseConfigurationReference = 57F011CBC15D2E26EA44927B4C29E325 /* FirebaseCoreInternal.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreInternal"; + IBSC_MODULE = FirebaseCoreInternal; + INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = FirebaseCoreInternal_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 2524E26CAC2DB00DAB928076BF7EEE3E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E4269C979DF800C248CEE4EF6E553E03 /* PromisesObjC.release.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-Info.plist"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; + PRODUCT_MODULE_NAME = FBLPromises; + PRODUCT_NAME = FBLPromises; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 2183FFC9DBA62C80D9005F0860653495 /* Debug */ = { + 25586FBC21BF46C33E4CBC0E64352E06 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 42DDA6EA4552D7101BA8815109178F18 /* Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig */; + baseConfigurationReference = 279F88EBA67943FE8DBA4704C9BA2C15 /* ConsentViewController-tvOS.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; + MODULEMAP_FILE = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS.modulemap"; + PRODUCT_MODULE_NAME = ConsentViewController; + PRODUCT_NAME = ConsentViewController; + SDKROOT = appletvos; SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 12.0; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 24D7A68308D2A5218FC847145092A2AD /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8782270ED9BF84A059FC3D44E70B6806 /* SPMobileCore-tvOS.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = appletvos; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 10.0; - }; - name = Debug; - }; - 25586FBC21BF46C33E4CBC0E64352E06 /* Debug */ = { + 283F6E1737D71180AADC0E7185377560 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 279F88EBA67943FE8DBA4704C9BA2C15 /* ConsentViewController-tvOS.debug.xcconfig */; + baseConfigurationReference = C206E48C5FD72701093625C9FEDD1C14 /* IQTextView.debug.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/IQTextView/IQTextView-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-Info.plist"; + INFOPLIST_FILE = "Target Support Files/IQTextView/IQTextView-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS.modulemap"; - PRODUCT_MODULE_NAME = ConsentViewController; - PRODUCT_NAME = ConsentViewController; - SDKROOT = appletvos; + MODULEMAP_FILE = "Target Support Files/IQTextView/IQTextView.modulemap"; + PRODUCT_MODULE_NAME = IQTextView; + PRODUCT_NAME = IQTextView; + SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 12.0; + SWIFT_VERSION = 5.9; + TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 296D9034E96D20DE902AB9BF7932254C /* Debug */ = { + 297792429E20B86846683C49C8A16D19 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C566F234AC40385CD0C09D53D3AC7480 /* nanopb.debug.xcconfig */; + baseConfigurationReference = 6F603B49005B06B768E07C75B6EA395B /* IQKeyboardReturnManager.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = nanopb_Privacy; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardReturnManager"; + IBSC_MODULE = IQKeyboardReturnManager; + INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = IQKeyboardReturnManager; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -9913,23 +11012,45 @@ }; name = Debug; }; - 29E109F3C6C5D190A7890D0F28ECB0A8 /* Debug */ = { + 29E66BD6E2F057F8BA57F5C72FAD6C66 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EFF908F59C1FE27798A96D99142EA4F1 /* SPMobileCore-iOS.debug.xcconfig */; + baseConfigurationReference = 25D4F6A49E547E09FEE315D6A39438D8 /* IQKeyboardToolbarManager.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", + "@loader_path/Frameworks", ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardToolbarManager; + PRODUCT_NAME = IQKeyboardToolbarManager; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; 2B2F298DCDA9EEAF67441F0BE0DCD995 /* Release */ = { isa = XCBuildConfiguration; @@ -9956,41 +11077,24 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 2B4EA833227D4FFCEBEDF2667F017D2E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 480BCA1B0DA65FE06926FA811C94717A /* IQTextInputViewNotification.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextInputViewNotification"; - IBSC_MODULE = IQTextInputViewNotification; - INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQTextInputViewNotification; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 2DD327BCC6F698FB49B4EC880BB4FCC0 /* Release */ = { + 2B3133F528EAD9E9CD2996C313506EB4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 942981443809EDD401F81BC6B79B05F5 /* FirebaseInstallations.release.xcconfig */; + baseConfigurationReference = 4B97AD650825ED664F18595A643EDB28 /* nanopb.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10003,8 +11107,9 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations-Info.plist"; + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -10013,89 +11118,94 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations.modulemap"; - PRODUCT_MODULE_NAME = FirebaseInstallations; - PRODUCT_NAME = FirebaseInstallations; + MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; + PRODUCT_MODULE_NAME = nanopb; + PRODUCT_NAME = nanopb; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; - }; - 2FAEBE7D24D1120BAE08282492A74537 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 58D79CB8A59DDB3B0C1DF4F79342D9C2 /* IQKeyboardManagerSwift.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardManagerSwift"; - IBSC_MODULE = IQKeyboardManagerSwift; - INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardManagerSwift; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; name = Debug; }; - 349E9664D469E58E5D1AF186E30C05D9 /* Release */ = { + 2F9E55DE3E998BAE8B4159A92BB19167 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 929615183E968B3F423B820ECED8845C /* GoogleAppMeasurement.release.xcconfig */; + baseConfigurationReference = CF03731063A8BCF7639F74A1880DBAEF /* CwlCatchExceptionSupport.debug.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", + "@loader_path/Frameworks", ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.modulemap"; + PRODUCT_MODULE_NAME = CwlCatchExceptionSupport; + PRODUCT_NAME = CwlCatchExceptionSupport; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 34EB1790C0E6507F11CD2E1087CD9278 /* Release */ = { + 313E364743B2C52A27C7817D38BBB6F5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1CE3318851B69636B927E30BA8C1E9C0 /* Nimble-iOS.release.xcconfig */; + baseConfigurationReference = 16E26D53D76686D672481814AA43BE6D /* IQKeyboardNotification.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Nimble-iOS/Nimble-iOS-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Nimble-iOS/Nimble-iOS-Info.plist"; + INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Nimble-iOS/Nimble-iOS.modulemap"; - PRODUCT_MODULE_NAME = Nimble; - PRODUCT_NAME = Nimble; + MODULEMAP_FILE = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardNotification; + PRODUCT_NAME = IQKeyboardNotification; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -10103,9 +11213,9 @@ }; name = Release; }; - 38A44FC3167250C483401D020E8FA894 /* Release */ = { + 347C7EB89DA42671D14EE3E09AC284D3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1FEFC5DF623E0B735C831F197EB46676 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig */; + baseConfigurationReference = 8F1B2B1E2EA16E8AA8C6A4E3DB461D04 /* Pods-Tests-NativeMessageExampleUITests.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -10119,7 +11229,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -10128,7 +11238,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -10137,15 +11247,14 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 3B5D70C6658E836308BD6369B370DF86 /* Debug */ = { + 35D642F72B28E1932716FE739CC2899C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46D3E46D67E13B0FBD8CED0A0D68BF35 /* IQKeyboardCore.debug.xcconfig */; + baseConfigurationReference = 19E8DF962E12F5CD09F0C1D4AE5F54AB /* IQKeyboardToolbar.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10158,9 +11267,9 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardCore/IQKeyboardCore-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardCore/IQKeyboardCore-Info.plist"; + INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -10169,9 +11278,9 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardCore/IQKeyboardCore.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardCore; - PRODUCT_NAME = IQKeyboardCore; + MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardToolbar; + PRODUCT_NAME = IQKeyboardToolbar; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -10183,20 +11292,43 @@ }; name = Debug; }; - 3C021A8B8252325EAE43AE91CD33D6EF /* Debug */ = { + 3B5D70C6658E836308BD6369B370DF86 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A381E7922866ACD62FE83FD3C2342456 /* FirebaseInstallations.debug.xcconfig */; + baseConfigurationReference = 64C1435AAFD0344CE9E34B6CFFB7E446 /* IQKeyboardCore.debug.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseInstallations"; - IBSC_MODULE = FirebaseInstallations; - INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = FirebaseInstallations_Privacy; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardCore/IQKeyboardCore-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/IQKeyboardCore/IQKeyboardCore-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/IQKeyboardCore/IQKeyboardCore.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardCore; + PRODUCT_NAME = IQKeyboardCore; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; @@ -10239,50 +11371,67 @@ }; name = Debug; }; - 3EFFB0E6F366EB3175812B9439C9755F /* Debug */ = { + 41779282855C10AEC728B23688CB5127 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E97F8A08BF6E031ECE081242D60B7814 /* FirebaseCore.debug.xcconfig */; + baseConfigurationReference = 7B173ED8DF89128C483E3884E1F880C4 /* FirebaseAnalytics.debug.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 43037CA804A1465AA9A9985EB2AA3503 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F9DA5DD14F328DC15C1B8894F9EBE99A /* Nimble-tvOS.release.xcconfig */; + buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/Nimble-tvOS/Nimble-tvOS-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Nimble-tvOS/Nimble-tvOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/FirebaseCore/FirebaseCore.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCore; - PRODUCT_NAME = FirebaseCore; - SDKROOT = iphoneos; + MODULEMAP_FILE = "Target Support Files/Nimble-tvOS/Nimble-tvOS.modulemap"; + PRODUCT_MODULE_NAME = Nimble; + PRODUCT_NAME = Nimble; + SDKROOT = appletvos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 13.0; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 3F6E811583488B7CF66A553BDB3C7817 /* Debug */ = { + 43375729AABF400BDED4230A9C92CB27 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E3030523C1A187A0F7FB9046B6FD01B /* Pods-Tests-ObjC-ExampleAppUITests.debug.xcconfig */; + baseConfigurationReference = 57F011CBC15D2E26EA44927B4C29E325 /* FirebaseCoreInternal.release.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -10294,49 +11443,35 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCoreInternal; + PRODUCT_NAME = FirebaseCoreInternal; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; - }; - 3FDAB971C5B0A8E5BC396C894DDAA334 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2A35CC9C7D8AA754363439B2D68134BF /* GoogleUtilities.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = GoogleUtilities_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; + name = Release; }; - 40593692464EF2EC20658975775300F2 /* Release */ = { + 436A507E46F0AB10C1F2F4195294C537 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8DC42E314A6A073A8CBEA8D0E051670 /* IQKeyboardToolbarManager.release.xcconfig */; + baseConfigurationReference = D900D75BBBD137EE15A051E0E5E8234A /* FirebaseInstallations.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10348,20 +11483,20 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-prefix.pch"; + ENABLE_USER_SCRIPT_SANDBOXING = NO; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-Info.plist"; + INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardToolbarManager; - PRODUCT_NAME = IQKeyboardToolbarManager; + MODULEMAP_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations.modulemap"; + PRODUCT_MODULE_NAME = FirebaseInstallations; + PRODUCT_NAME = FirebaseInstallations; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -10374,26 +11509,9 @@ }; name = Release; }; - 411408329C99101AE5A2EF5BEB41249E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6C5861E19176ED390054CBED3842109B /* ConsentViewController-iOS.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ConsentViewController-iOS"; - IBSC_MODULE = ConsentViewController; - INFOPLIST_FILE = "Target Support Files/ConsentViewController-iOS/ResourceBundle-ConsentViewController-ConsentViewController-iOS-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = ConsentViewController; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 41779282855C10AEC728B23688CB5127 /* Debug */ = { + 43E0808F6CD0054BEAFD077A49910C25 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4037A93A2FFC8C9D236D1187E49BE34 /* FirebaseAnalytics.debug.xcconfig */; + baseConfigurationReference = 546A5C96B214B4119CD401BBE32E8356 /* GoogleAppMeasurement.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10409,26 +11527,49 @@ }; name = Debug; }; - 41B51BB3EB069DEC201190E385BCE01D /* Release */ = { + 44CEE02C9383267489710B6FB1F13FF3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D28280D3333BCEB4A4F9664245E627BE /* IQKeyboardNotification.release.xcconfig */; + baseConfigurationReference = 0ECA7FAF11E033462E93DA53335F86BB /* FirebaseCore.release.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardNotification"; - IBSC_MODULE = IQKeyboardNotification; - INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardNotification; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/FirebaseCore/FirebaseCore.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCore; + PRODUCT_NAME = FirebaseCore; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; 4691590DDBE1EDA4AC53A2C5A0DF6637 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 88D45DC70925BF740F59B93AED3D881C /* IQKeyboardManagerSwift.release.xcconfig */; + baseConfigurationReference = 72C7BE65FE543570C043A81113E9833F /* IQKeyboardManagerSwift.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10466,28 +11607,47 @@ }; name = Release; }; - 46CDB68B026C0EA3055F0E399C33FB8A /* Debug */ = { + 47BABA8CBA7DCCCE40F2E2614217A764 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 03D300D43238379ED6079E1774E378A9 /* IQKeyboardToolbarManager.debug.xcconfig */; + baseConfigurationReference = CEEF2772E3AD8AFE9DAE3F2083371D77 /* PromisesObjC.debug.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbarManager"; - IBSC_MODULE = IQKeyboardToolbarManager; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardToolbarManager; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; + PRODUCT_MODULE_NAME = FBLPromises; + PRODUCT_NAME = FBLPromises; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 46DACF93CEC7059302B1D40B71355592 /* Debug */ = { + 482333FC5194F316A083B8BD78733009 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 36E1993376CB5E7006909115A0334DE0 /* Pods-Tests-ConsentViewController_ExampleTests.debug.xcconfig */; + baseConfigurationReference = 6F603B49005B06B768E07C75B6EA395B /* IQKeyboardReturnManager.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -10499,7 +11659,9 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -10508,14 +11670,14 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardReturnManager; + PRODUCT_NAME = IQKeyboardReturnManager; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; @@ -10628,38 +11790,96 @@ }; name = Release; }; - 502340E31AA26194EB0FDEF2BC39443A /* Release */ = { + 4BA18A21CB1B4F249E5996AB5DB178D2 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 91621E1BA3A89BE74D1E7D017C175F49 /* IQKeyboardToolbarManager.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbarManager"; + IBSC_MODULE = IQKeyboardToolbarManager; + INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = IQKeyboardToolbarManager; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 4FD6CA0A6B2F796EE0F07A01F371D1EF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C97674DE28752F26BE12E99A268EA4F2 /* Quick-iOS.release.xcconfig */; + baseConfigurationReference = 2CBDA5A98EA670762ABFC2E1D265F305 /* CwlPosixPreconditionTesting.debug.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Quick-iOS/Quick-iOS-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Quick-iOS/Quick-iOS-Info.plist"; + INFOPLIST_FILE = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Quick-iOS/Quick-iOS.modulemap"; - PRODUCT_MODULE_NAME = Quick; - PRODUCT_NAME = Quick; + MODULEMAP_FILE = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.modulemap"; + PRODUCT_MODULE_NAME = CwlPosixPreconditionTesting; + PRODUCT_NAME = CwlPosixPreconditionTesting; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; + SWIFT_VERSION = 5.5; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 4FE5D50BA20AC9B9AC9C1F7141E5ADFE /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6E031F91F1F99C88F5C25D358A8C2080 /* Pods-Tests-AuthExampleUITests.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -10667,10 +11887,80 @@ }; name = Release; }; - 52ED2C3118F9BEA875A93683B6577574 /* Debug */ = { + 50A4210F9241CB6251F85F141507A19C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 985E2F8DBB92E8FF07EB736106587CA2 /* FirebaseCoreInternal.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreInternal"; + IBSC_MODULE = FirebaseCoreInternal; + INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = FirebaseCoreInternal_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 535642C8E96314EC66B8447004397685 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 16E26D53D76686D672481814AA43BE6D /* IQKeyboardNotification.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardNotification"; + IBSC_MODULE = IQKeyboardNotification; + INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = IQKeyboardNotification; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 59619FF05234376C3EAC921AE49A2A96 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9AB91992ADD70EED081100015CB5338E /* SwiftLint.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 59BFADD7238EC69013FF74537A43BDED /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DC2639B1E829A5F90E03607464AF4414 /* GoogleUtilities.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = GoogleUtilities_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 59E6151C17FC8A951AAE628AD5144604 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6502BE34EBE67206A8A933EA20AE5C18 /* IQKeyboardToolbar.debug.xcconfig */; + baseConfigurationReference = 408D31239F9070332AFEAD914F96DFFF /* Pods-Examples-AuthExample.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -10682,9 +11972,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -10693,30 +11981,70 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardToolbar; - PRODUCT_NAME = IQKeyboardToolbar; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 530FAF92AFF864B3F844795729760CAC /* Release */ = { + 5D286BA7A3266AA5C3B4BA1320AFE4CC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 3AB123675C504DBA426F7267B79D3ACD /* Pods-Tests-SourcePointMetaAppUITests.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 5FE628F8135C7922727A4F309A9AC921 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D89E5C002D5CCC712E8E9B86A46E4EA8 /* nanopb.release.xcconfig */; + baseConfigurationReference = 0ECA7FAF11E033462E93DA53335F86BB /* FirebaseCore.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCore"; + IBSC_MODULE = FirebaseCore; + INFOPLIST_FILE = "Target Support Files/FirebaseCore/ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = nanopb_Privacy; + PRODUCT_NAME = FirebaseCore_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -10724,7 +12052,7 @@ }; name = Release; }; - 552A9D715084D83408A0420187F1159A /* Debug */ = { + 61777F39BA975962D7231F5C4FB92C18 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = F4A7C470969D8D9C13E2AC186A25DCCD /* Pods-Tests-AuthExampleUITests.debug.xcconfig */; buildSettings = { @@ -10763,27 +12091,9 @@ }; name = Debug; }; - 59619FF05234376C3EAC921AE49A2A96 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 877CB4CF0203E2819D8718E42FA72530 /* SwiftLint.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 59E6151C17FC8A951AAE628AD5144604 /* Debug */ = { + 619903AF24531B57E8A1EB3205BE7F69 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 408D31239F9070332AFEAD914F96DFFF /* Pods-Examples-AuthExample.debug.xcconfig */; + baseConfigurationReference = 02A196CEB3DFD80618F39736B5983336 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -10797,7 +12107,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -10806,7 +12116,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -10820,114 +12130,63 @@ }; name = Debug; }; - 5A0B27ED649F51A96858AFAB413E3A1C /* Debug */ = { + 62A42620E107148938527ABCD9D55649 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E97F8A08BF6E031ECE081242D60B7814 /* FirebaseCore.debug.xcconfig */; + baseConfigurationReference = B87338A60396DC7C8B9E9C14E50D1517 /* GoogleAppMeasurement.release.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCore"; - IBSC_MODULE = FirebaseCore; - INFOPLIST_FILE = "Target Support Files/FirebaseCore/ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = FirebaseCore_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 5D0AA5948A6229958D679499A44FA006 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E14229DA1BD3D1A260C2C18D5FDAD459 /* IQKeyboardToolbar.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbar"; - IBSC_MODULE = IQKeyboardToolbar; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardToolbar; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 6350114DB9A621C5ACAB1B39414E86BE /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F3C7E3E02E322F52CD58F40E74EF7F61 /* IQKeyboardCore.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardCore"; - IBSC_MODULE = IQKeyboardCore; - INFOPLIST_FILE = "Target Support Files/IQKeyboardCore/ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardCore; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; }; name = Release; }; - 657CAC11827ECFE1621C68649CA2928A /* Debug */ = { + 64193CBACD4A98A9FE55F541B6602744 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 43495BDE101EC35941087F1BF79C5FE1 /* IQKeyboardNotification.debug.xcconfig */; + baseConfigurationReference = C61F8B32B14E4029D7A1CA2DE208A5A5 /* Quick-tvOS.debug.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Quick-tvOS/Quick-tvOS-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Quick-tvOS/Quick-tvOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardNotification; - PRODUCT_NAME = IQKeyboardNotification; - SDKROOT = iphoneos; + MODULEMAP_FILE = "Target Support Files/Quick-tvOS/Quick-tvOS.modulemap"; + PRODUCT_MODULE_NAME = Quick; + PRODUCT_NAME = Quick; + SDKROOT = appletvos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 13.0; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 67A6F072DC6ABA37C2EF2CDE1F119736 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 43495BDE101EC35941087F1BF79C5FE1 /* IQKeyboardNotification.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardNotification"; - IBSC_MODULE = IQKeyboardNotification; - INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardNotification; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; 6AFDE725EECC687BB5377E4E36321BAE /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 921BD04D1137665DAA00C54FD7449ED3 /* Pods-Examples-NativeMessageExample.release.xcconfig */; @@ -10968,87 +12227,68 @@ }; name = Release; }; - 6B47B1EA23AAE2BDE1011A0445DBA8A4 /* Debug */ = { + 6C73A30C3E70AECA49DBA8DA38C654B2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A636064211D47B85F3EB7BCDE55DB714 /* IQTextInputViewNotification.debug.xcconfig */; + baseConfigurationReference = 2BE18B625D19EDDBF19C786FA9C4CD23 /* SPMobileCore-iOS.debug.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", - "@loader_path/Frameworks", ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.modulemap"; - PRODUCT_MODULE_NAME = IQTextInputViewNotification; - PRODUCT_NAME = IQTextInputViewNotification; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 6F5BAEE7BA9F630443963242B66053C9 /* Release */ = { + 6D219CD9F20656CB347F1C55A4D36ED2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5065D717E200F6B2E2112224C745D14D /* Nimble-tvOS.release.xcconfig */; + baseConfigurationReference = B7BDFAB7F2C3D6412FF9E6427BF0BF5E /* nanopb.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Nimble-tvOS/Nimble-tvOS-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Nimble-tvOS/Nimble-tvOS-Info.plist"; + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Nimble-tvOS/Nimble-tvOS.modulemap"; - PRODUCT_MODULE_NAME = Nimble; - PRODUCT_NAME = Nimble; - SDKROOT = appletvos; + MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; + PRODUCT_MODULE_NAME = nanopb; + PRODUCT_NAME = nanopb; + SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 9.0; + TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - 7061D300823B14B879BEB1A0B787270E /* Debug */ = { + 703CB38488CFBC76CD6A8D6225020189 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6502BE34EBE67206A8A933EA20AE5C18 /* IQKeyboardToolbar.debug.xcconfig */; + baseConfigurationReference = 19E8DF962E12F5CD09F0C1D4AE5F54AB /* IQKeyboardToolbar.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbar"; @@ -11063,22 +12303,44 @@ }; name = Debug; }; - 71832A76125FB4B0688E4749E2F8DD79 /* Release */ = { + 73170304D5722E5AB4C389BC25C3C796 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 621330E260760ED099CCF53609EF7C50 /* FirebaseCore.release.xcconfig */; + baseConfigurationReference = A0CA2E223EE61D297A117842655ACF18 /* FirebaseCore.debug.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCore"; - IBSC_MODULE = FirebaseCore; - INFOPLIST_FILE = "Target Support Files/FirebaseCore/ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = FirebaseCore_Privacy; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/FirebaseCore/FirebaseCore.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCore; + PRODUCT_NAME = FirebaseCore; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; 7366331A9E9139D62C5D0BFDF92ACD57 /* Debug */ = { isa = XCBuildConfiguration; @@ -11157,11 +12419,10 @@ }; name = Debug; }; - 745D6B248D65C21A4298CAE033355D4C /* Release */ = { + 7573AFBB8FE07DA5AFB18436786E8FEA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3AB123675C504DBA426F7267B79D3ACD /* Pods-Tests-SourcePointMetaAppUITests.release.xcconfig */; + baseConfigurationReference = 312BF46E4E318C049EFD24288B49F860 /* IQTextInputViewNotification.release.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11172,8 +12433,9 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -11182,14 +12444,14 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.modulemap"; + PRODUCT_MODULE_NAME = IQTextInputViewNotification; + PRODUCT_NAME = IQTextInputViewNotification; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -11197,16 +12459,16 @@ }; name = Release; }; - 75A727E850B81FEFF369A19BAF4EC74D /* Debug */ = { + 793AC32F57CD65C0C24747E3516C1585 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F5DDB6CE9B4FD98DB1C0D219C54244D2 /* PromisesObjC.debug.xcconfig */; + baseConfigurationReference = CC14A8A1A0D472EF58D5491F0B14547E /* IQTextInputViewNotification.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = FBLPromises_Privacy; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextInputViewNotification"; + IBSC_MODULE = IQTextInputViewNotification; + INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = IQTextInputViewNotification; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -11214,9 +12476,45 @@ }; name = Debug; }; - 75BF3CB075FFDCFAA70EE918989CAFFC /* Release */ = { + 7F52C9CAB18B21EF455F8E6691F056CA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6751AA628C9101CE0A38B998514B0423 /* Pods-Tests-ConsentViewController_ExampleTests.release.xcconfig */; + baseConfigurationReference = DEB7328BDFB8614EAD2EAD799824C0FE /* FirebaseAnalytics.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 839B7B41DFF63F5844CD9A1F56FDFC9C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 279F88EBA67943FE8DBA4704C9BA2C15 /* ConsentViewController-tvOS.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ConsentViewController-tvOS"; + IBSC_MODULE = ConsentViewController; + INFOPLIST_FILE = "Target Support Files/ConsentViewController-tvOS/ResourceBundle-ConsentViewController-ConsentViewController-tvOS-Info.plist"; + PRODUCT_NAME = ConsentViewController; + SDKROOT = appletvos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 12.0; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 8542BB23110353B53E23390610CC17DC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 40902E1C1B82C32A82C26838C74E00BD /* Pods-Tests-ObjC-ExampleAppUITests.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -11230,7 +12528,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -11239,7 +12537,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -11254,47 +12552,49 @@ }; name = Release; }; - 773238495A9A2A82ACAAAB0F54A9F378 /* Debug */ = { + 85F3EA07969E1FB2BE878F17A9FC6DE1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 34476D62FD2522230ECF89058BD6AF67 /* Quick-iOS.debug.xcconfig */; + baseConfigurationReference = A25E299620E4156A2638D0F3DE5EC583 /* CwlCatchException.debug.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Quick-iOS/Quick-iOS-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/CwlCatchException/CwlCatchException-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Quick-iOS/Quick-iOS-Info.plist"; + INFOPLIST_FILE = "Target Support Files/CwlCatchException/CwlCatchException-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Quick-iOS/Quick-iOS.modulemap"; - PRODUCT_MODULE_NAME = Quick; - PRODUCT_NAME = Quick; + MODULEMAP_FILE = "Target Support Files/CwlCatchException/CwlCatchException.modulemap"; + PRODUCT_MODULE_NAME = CwlCatchException; + PRODUCT_NAME = CwlCatchException; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; + SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 78EA55F687658609A8E7FA188F364B38 /* Release */ = { + 86CFC7915A12CEAE7456122BB8790D3E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 480BCA1B0DA65FE06926FA811C94717A /* IQTextInputViewNotification.release.xcconfig */; + baseConfigurationReference = 58E0351200843A0258ABD52F8867F39C /* CwlMachBadInstructionHandler.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11306,41 +12606,58 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-prefix.pch"; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-Info.plist"; + INFOPLIST_FILE = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.modulemap"; - PRODUCT_MODULE_NAME = IQTextInputViewNotification; - PRODUCT_NAME = IQTextInputViewNotification; + MODULEMAP_FILE = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.modulemap"; + PRODUCT_MODULE_NAME = CwlMachBadInstructionHandler; + PRODUCT_NAME = CwlMachBadInstructionHandler; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; + SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 7F52C9CAB18B21EF455F8E6691F056CA /* Release */ = { + 88933E87DF5FCC53F1B6CDE3106341B8 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2BA16E167D6EF79C689CE7ECBC63430C /* IQKeyboardManagerSwift.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardManagerSwift"; + IBSC_MODULE = IQKeyboardManagerSwift; + INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = IQKeyboardManagerSwift; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 897248D5D2667E3217EF57232EA1750B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4CC772F0B36821A5DE2CFDFC5433124B /* FirebaseAnalytics.release.xcconfig */; + baseConfigurationReference = 15984851E2434A1A83C71AEAED338F2E /* SPMobileCore-iOS.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -11351,9 +12668,9 @@ }; name = Release; }; - 825E2867879976966DA21BB29B033817 /* Release */ = { + 8F92F524B4505109D827498556153A92 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 979094166C07B4928759772A0019F6B8 /* SPMobileCore-tvOS.release.xcconfig */; + baseConfigurationReference = B2E8B7E8BA00F2628706C0AA85E4F5BB /* SPMobileCore-tvOS.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -11369,60 +12686,88 @@ }; name = Release; }; - 8802487FFF1854E9A6000269AC97D634 /* Release */ = { + 943A7CFA488BFBE271756245EFDD4E71 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 942981443809EDD401F81BC6B79B05F5 /* FirebaseInstallations.release.xcconfig */; + baseConfigurationReference = 8308C54DE95C976F10FACAADA52D2C28 /* JSONView.release.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseInstallations"; - IBSC_MODULE = FirebaseInstallations; - INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = FirebaseInstallations_Privacy; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/JSONView/JSONView-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/JSONView/JSONView-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/JSONView/JSONView.modulemap"; + PRODUCT_MODULE_NAME = JSONView; + PRODUCT_NAME = JSONView; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 8AD199A6F761DB9481969AB958D28097 /* Debug */ = { + 947741EAC317B557FF73926E1CFCE293 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46D3E46D67E13B0FBD8CED0A0D68BF35 /* IQKeyboardCore.debug.xcconfig */; + baseConfigurationReference = E74D488FAB1BF71E1683399DE24561E3 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.debug.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardCore"; - IBSC_MODULE = IQKeyboardCore; - INFOPLIST_FILE = "Target Support Files/IQKeyboardCore/ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist"; + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardCore; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 8AE4C932F356463D403764BBABF929A7 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D7E1722F5F469B205A5C3074B48B377E /* FirebaseCoreInternal.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreInternal"; - IBSC_MODULE = FirebaseCoreInternal; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = FirebaseCoreInternal_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 8C32D0BD63127EC059C059D03866FBE3 /* Release */ = { + 965934B6BCAC23646E20A3B9C8C9C5E5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D28280D3333BCEB4A4F9664245E627BE /* IQKeyboardNotification.release.xcconfig */; + baseConfigurationReference = CC14A8A1A0D472EF58D5491F0B14547E /* IQTextInputViewNotification.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11434,10 +12779,9 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification-Info.plist"; + INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -11446,42 +12790,25 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardNotification; - PRODUCT_NAME = IQKeyboardNotification; + MODULEMAP_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.modulemap"; + PRODUCT_MODULE_NAME = IQTextInputViewNotification; + PRODUCT_NAME = IQTextInputViewNotification; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; - }; - 8D9FEEB11858612A07A666C45DF77992 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B6AA1166CD5E836C9349D4C8FB74D2E5 /* ConsentViewController-tvOS.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ConsentViewController-tvOS"; - IBSC_MODULE = ConsentViewController; - INFOPLIST_FILE = "Target Support Files/ConsentViewController-tvOS/ResourceBundle-ConsentViewController-ConsentViewController-tvOS-Info.plist"; - PRODUCT_NAME = ConsentViewController; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 12.0; - WRAPPER_EXTENSION = bundle; - }; - name = Release; + name = Debug; }; - 930539E85581CA2DA7E98A2B873B0723 /* Release */ = { + 978F720BAB8AECE5494661B4940D124F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 977388C1D2919ECAEA6852A831913198 /* GoogleUtilities.release.xcconfig */; + baseConfigurationReference = 1209EA6EBCF62A05EE4AF10A38C73B9C /* Pods-Tests-SPGDPRExampleAppUITests.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11493,24 +12820,23 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -11518,26 +12844,9 @@ }; name = Release; }; - 940D6EC07D161259907BA6B24838656A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 795CEEAE5E337F0243E5E46D031A5ABD /* Wormholy.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Wormholy"; - IBSC_MODULE = Wormholy; - INFOPLIST_FILE = "Target Support Files/Wormholy/ResourceBundle-Wormholy-Wormholy-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = Wormholy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 943A7CFA488BFBE271756245EFDD4E71 /* Release */ = { + 9D98A7C47587EA934248BF374EB526E9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2982829D6FF01D4B8FBE37474CFAD8F6 /* JSONView.release.xcconfig */; + baseConfigurationReference = A11B05957DEC3AB840DA74DE56267828 /* IQKeyboardToolbar.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11550,9 +12859,9 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/JSONView/JSONView-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/JSONView/JSONView-Info.plist"; + INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -11561,13 +12870,14 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/JSONView/JSONView.modulemap"; - PRODUCT_MODULE_NAME = JSONView; - PRODUCT_NAME = JSONView; + MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardToolbar; + PRODUCT_NAME = IQKeyboardToolbar; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -11575,28 +12885,27 @@ }; name = Release; }; - 97C69CA38ED4083DF7D6AF2A81ACC356 /* Debug */ = { + 9E342C83BAB76D2784E2641DDE39F905 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0D94C00CD889D62A4E627E23098A7E11 /* FirebaseCoreInternal.debug.xcconfig */; + baseConfigurationReference = 331073598098173D1699703CF07AF019 /* ConsentViewController-iOS.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreInternal"; - IBSC_MODULE = FirebaseCoreInternal; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = FirebaseCoreInternal_Privacy; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ConsentViewController-iOS"; + IBSC_MODULE = ConsentViewController; + INFOPLIST_FILE = "Target Support Files/ConsentViewController-iOS/ResourceBundle-ConsentViewController-ConsentViewController-iOS-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = ConsentViewController; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 9901F031F7A52C7D1E236AD34FE5F047 /* Release */ = { + 9EC4CCBDCB5B5BF7C22E557CB35BF1B1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 994E32106A3E483B71224175EE751364 /* Pods-Tests-NativeMessageExampleUITests.release.xcconfig */; + baseConfigurationReference = 985E2F8DBB92E8FF07EB736106587CA2 /* FirebaseCoreInternal.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11608,53 +12917,76 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCoreInternal; + PRODUCT_NAME = FirebaseCoreInternal; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 9B12EB436F1F8187195B311973677589 /* Release */ = { + A0803C08A428BEE8A4C6A01286EA10DF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7ED00E3C96B3FAD3DC6932CC3099A5F8 /* SPMobileCore-iOS.release.xcconfig */; + baseConfigurationReference = 1FEFC5DF623E0B735C831F197EB46676 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", + "@loader_path/Frameworks", ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 9C6573AECDE744A5537DA5E1844D5368 /* Debug */ = { + A1CDF998F23DDEED098F74B9F254879A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0D94C00CD889D62A4E627E23098A7E11 /* FirebaseCoreInternal.debug.xcconfig */; + baseConfigurationReference = 7E3030523C1A187A0F7FB9046B6FD01B /* Pods-Tests-ObjC-ExampleAppUITests.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11666,69 +12998,103 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCoreInternal; - PRODUCT_NAME = FirebaseCoreInternal; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - A4002FD60F73088F27EC8CE2C3481375 /* Debug */ = { + A212979653B3DF61D5E55276F3264040 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2CC2F9E2668781BED5E119E88E4351CE /* Quick-tvOS.debug.xcconfig */; + baseConfigurationReference = 75C4888BF100C27C1D9364F923E8C519 /* CwlPreconditionTesting.debug.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Quick-tvOS/Quick-tvOS-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Quick-tvOS/Quick-tvOS-Info.plist"; + INFOPLIST_FILE = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Quick-tvOS/Quick-tvOS.modulemap"; - PRODUCT_MODULE_NAME = Quick; - PRODUCT_NAME = Quick; - SDKROOT = appletvos; + MODULEMAP_FILE = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.modulemap"; + PRODUCT_MODULE_NAME = CwlPreconditionTesting; + PRODUCT_NAME = CwlPreconditionTesting; + SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 9.0; + SWIFT_VERSION = 5.5; + TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; + A2437AF994C576A0BC09DEB6B358FDCD /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4B97AD650825ED664F18595A643EDB28 /* nanopb.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = nanopb_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + A3C5A2F9180B3B316FFF334621174657 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D900D75BBBD137EE15A051E0E5E8234A /* FirebaseInstallations.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseInstallations"; + IBSC_MODULE = FirebaseInstallations; + INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = FirebaseInstallations_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; A718AA676A35E03FDAEED25DC039F4B0 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { @@ -11792,47 +13158,26 @@ }; name = Release; }; - A94F5F9730BD4BE59A4FDA4BBB3DD8DC /* Debug */ = { + A766D22DD19730841ED43EDD4BFE2E1B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 789D46DB4A82EC56170A8FDABA1B1146 /* Nimble-iOS.debug.xcconfig */; + baseConfigurationReference = B6AA1166CD5E836C9349D4C8FB74D2E5 /* ConsentViewController-tvOS.release.xcconfig */; buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Nimble-iOS/Nimble-iOS-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Nimble-iOS/Nimble-iOS-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Nimble-iOS/Nimble-iOS.modulemap"; - PRODUCT_MODULE_NAME = Nimble; - PRODUCT_NAME = Nimble; - SDKROOT = iphoneos; + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ConsentViewController-tvOS"; + IBSC_MODULE = ConsentViewController; + INFOPLIST_FILE = "Target Support Files/ConsentViewController-tvOS/ResourceBundle-ConsentViewController-ConsentViewController-tvOS-Info.plist"; + PRODUCT_NAME = ConsentViewController; + SDKROOT = appletvos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 12.0; + WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; A96CB34ACBFCEC863EBCA57D6A3AAA36 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A4D17D3E433925C0D124D3772DA86950 /* Wormholy.debug.xcconfig */; + baseConfigurationReference = 090867511CD2BA024093F61173297740 /* Wormholy.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11870,9 +13215,26 @@ }; name = Debug; }; - A9CA72AF30E1ECCC1D054B1C61C30602 /* Debug */ = { + ADE32372A990AB47C803A9023B51AA23 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E74D488FAB1BF71E1683399DE24561E3 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.debug.xcconfig */; + baseConfigurationReference = FC706AD81CC3AB9974F689DF1937213B /* SPMobileCore-tvOS.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = appletvos; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 10.0; + }; + name = Debug; + }; + AE19982F15B79C39EDE47EC5BD56F27D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 983BDF8D0A591D54CB03F4ACB6E58CDA /* Pods-Examples-SourcePointMetaApp.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -11886,7 +13248,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -11895,7 +13257,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -11909,9 +13271,9 @@ }; name = Debug; }; - AE19982F15B79C39EDE47EC5BD56F27D /* Debug */ = { + B06EC718BC1C24E92F905A5541FB6AA6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 983BDF8D0A591D54CB03F4ACB6E58CDA /* Pods-Examples-SourcePointMetaApp.debug.xcconfig */; + baseConfigurationReference = 6751AA628C9101CE0A38B998514B0423 /* Pods-Tests-ConsentViewController_ExampleTests.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -11925,7 +13287,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -11934,7 +13296,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -11943,50 +13305,68 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; + name = Release; + }; + B5D4C2CBA4DED11444D4BF3C630AF3F8 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6C5861E19176ED390054CBED3842109B /* ConsentViewController-iOS.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ConsentViewController-iOS"; + IBSC_MODULE = ConsentViewController; + INFOPLIST_FILE = "Target Support Files/ConsentViewController-iOS/ResourceBundle-ConsentViewController-ConsentViewController-iOS-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = ConsentViewController; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; name = Debug; }; - B4B133F58CC1952A0F51659D04E3A795 /* Debug */ = { + B8934ACA914104F6CAFABAB2B89C286E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C566F234AC40385CD0C09D53D3AC7480 /* nanopb.debug.xcconfig */; + baseConfigurationReference = B3A3D24201B2F1A39E6787ECA7D65505 /* Quick-iOS.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Quick-iOS/Quick-iOS-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Quick-iOS/Quick-iOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; + MODULEMAP_FILE = "Target Support Files/Quick-iOS/Quick-iOS.modulemap"; + PRODUCT_MODULE_NAME = Quick; + PRODUCT_NAME = Quick; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; B9DE5DEF00194D2BAC307903FD5A53EC /* Release */ = { isa = XCBuildConfiguration; @@ -12027,28 +13407,109 @@ }; name = Release; }; - BF1C21E0D229632E183DDBFE8E790878 /* Debug */ = { + C199163ADE41485EE0B58ABA407CA16B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C9391B97E8AE9BB43422D8C5BC9536AC /* CwlMachBadInstructionHandler.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.modulemap"; + PRODUCT_MODULE_NAME = CwlMachBadInstructionHandler; + PRODUCT_NAME = CwlMachBadInstructionHandler; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.5; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + C1C7C501508BB6500786571B4E945137 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A4D17D3E433925C0D124D3772DA86950 /* Wormholy.debug.xcconfig */; + baseConfigurationReference = E9EAAA300C2D6362912AE15C9D01E4CF /* IQKeyboardReturnManager.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Wormholy"; - IBSC_MODULE = Wormholy; - INFOPLIST_FILE = "Target Support Files/Wormholy/ResourceBundle-Wormholy-Wormholy-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = Wormholy; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardReturnManager"; + IBSC_MODULE = IQKeyboardReturnManager; + INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = IQKeyboardReturnManager; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + C265306D8B7880C9F8C3230C6F0D8845 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E9EAAA300C2D6362912AE15C9D01E4CF /* IQKeyboardReturnManager.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardReturnManager; + PRODUCT_NAME = IQKeyboardReturnManager; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - C2FC54122A93D37F421BBEF4D26C81CF /* Release */ = { + C31EFB36C87B453E49617E51D7399B3B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5F0BAEF807330D071BABE9BE7ADD3BE3 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.release.xcconfig */; + baseConfigurationReference = 91621E1BA3A89BE74D1E7D017C175F49 /* IQKeyboardToolbarManager.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12059,8 +13520,9 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -12069,26 +13531,24 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.modulemap"; + PRODUCT_MODULE_NAME = IQKeyboardToolbarManager; + PRODUCT_NAME = IQKeyboardToolbarManager; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - C310BBA6AE51F9F8A09B4F0CC0B86A2E /* Release */ = { + C3AFC6255078B482631F15926FF56A7E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 40902E1C1B82C32A82C26838C74E00BD /* Pods-Tests-ObjC-ExampleAppUITests.release.xcconfig */; + baseConfigurationReference = 60A70F335EE93EADD5D96E8BA805610B /* CwlPosixPreconditionTesting.release.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12100,23 +13560,25 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.modulemap"; + PRODUCT_MODULE_NAME = CwlPosixPreconditionTesting; + PRODUCT_NAME = CwlPosixPreconditionTesting; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -12163,9 +13625,9 @@ }; name = Release; }; - C8AAC979202D1B08BCBDCD515891C68F /* Debug */ = { + C47934DD7A46BFD0CD7470D2F241D9A8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A381E7922866ACD62FE83FD3C2342456 /* FirebaseInstallations.debug.xcconfig */; + baseConfigurationReference = 41BAC8F250BD7588F95DD766836F4A64 /* FirebaseInstallations.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12202,9 +13664,67 @@ }; name = Debug; }; + C50368B0EAA1F717CA3CDFE1FAB81926 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 88E5A68E490D25730B9530B224AC6B05 /* CwlCatchException.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/CwlCatchException/CwlCatchException-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/CwlCatchException/CwlCatchException-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/CwlCatchException/CwlCatchException.modulemap"; + PRODUCT_MODULE_NAME = CwlCatchException; + PRODUCT_NAME = CwlCatchException; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.5; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + C5C2ABCE418FE9B749EBEA45ED1C77EB /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 25D4F6A49E547E09FEE315D6A39438D8 /* IQKeyboardToolbarManager.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbarManager"; + IBSC_MODULE = IQKeyboardToolbarManager; + INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = IQKeyboardToolbarManager; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; CA4609710386965DE58C51431F3CC911 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F3C7E3E02E322F52CD58F40E74EF7F61 /* IQKeyboardCore.release.xcconfig */; + baseConfigurationReference = 1B9F50AC0729A3A5253FB09DBB050D14 /* IQKeyboardCore.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12282,10 +13802,45 @@ }; name = Debug; }; - CD484A8A64BC758F801673D2D49BEDC1 /* Release */ = { + CB64E29ED8083B02079F26CC3D0F9FA8 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1B9F50AC0729A3A5253FB09DBB050D14 /* IQKeyboardCore.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardCore"; + IBSC_MODULE = IQKeyboardCore; + INFOPLIST_FILE = "Target Support Files/IQKeyboardCore/ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = IQKeyboardCore; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + CBBD1EE104455BC781CE71B35418E005 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C206E48C5FD72701093625C9FEDD1C14 /* IQTextView.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextView"; + IBSC_MODULE = IQTextView; + INFOPLIST_FILE = "Target Support Files/IQTextView/ResourceBundle-IQTextView-IQTextView-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = IQTextView; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + CC87F67E5394EE6BE9F4BEB048B508B9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E14229DA1BD3D1A260C2C18D5FDAD459 /* IQKeyboardToolbar.release.xcconfig */; + baseConfigurationReference = 36E1993376CB5E7006909115A0334DE0 /* Pods-Tests-ConsentViewController_ExampleTests.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12297,9 +13852,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -12308,20 +13861,19 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardToolbar; - PRODUCT_NAME = IQKeyboardToolbar; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; CDA4DD10F8F0EE8AA826B1F302D9CFEB /* Release */ = { isa = XCBuildConfiguration; @@ -12363,40 +13915,23 @@ }; name = Release; }; - D11BB27413AC83B9676195B3571FAFBC /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 88D45DC70925BF740F59B93AED3D881C /* IQKeyboardManagerSwift.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardManagerSwift"; - IBSC_MODULE = IQKeyboardManagerSwift; - INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardManagerSwift; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - D33037657C0282755493139219736EFE /* Release */ = { + CE2250ED592B587ACD353234CB7052D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 967CAFFF493C6FEC1965C15C0DB132C5 /* IQTextView.release.xcconfig */; + baseConfigurationReference = 0EDDE07DCB417401246AED370804DA0C /* Nimble-iOS.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQTextView/IQTextView-prefix.pch"; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/Nimble-iOS/Nimble-iOS-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQTextView/IQTextView-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Nimble-iOS/Nimble-iOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -12405,118 +13940,64 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQTextView/IQTextView.modulemap"; - PRODUCT_MODULE_NAME = IQTextView; - PRODUCT_NAME = IQTextView; + MODULEMAP_FILE = "Target Support Files/Nimble-iOS/Nimble-iOS.modulemap"; + PRODUCT_MODULE_NAME = Nimble; + PRODUCT_NAME = Nimble; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - D64FD8B858B988C908880C81851CC20A /* Release */ = { + CEA1C6633D182988DD20C372CC05CB29 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C5AE4F2FE6962D2D5782A193601217D4 /* Pods-Examples-SourcepointFirebaseDemo.release.xcconfig */; + baseConfigurationReference = A70A5FFB77406837B331831AFA067EA9 /* Quick-tvOS.release.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/Quick-tvOS/Quick-tvOS-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/Quick-tvOS/Quick-tvOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; + MODULEMAP_FILE = "Target Support Files/Quick-tvOS/Quick-tvOS.modulemap"; + PRODUCT_MODULE_NAME = Quick; + PRODUCT_NAME = Quick; + SDKROOT = appletvos; SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - D834AEAA334DEA04A1BF19DFA0DD207F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F6074F24366079A141C8F1DBD9CA9423 /* SwiftLint.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 13.0; VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - D89C4F4880923BCC5C5DBBD1265B6D11 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 977388C1D2919ECAEA6852A831913198 /* GoogleUtilities.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = GoogleUtilities_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - D92FFEAE75D7CA3A2248AFBF8963F956 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2BB705775345ED936727B2B3FEB91464 /* IQKeyboardReturnManager.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardReturnManager"; - IBSC_MODULE = IQKeyboardReturnManager; - INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardReturnManager; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - DF874A958004E54155C91F4997FCC011 /* Debug */ = { + D64FD8B858B988C908880C81851CC20A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 141322BAF43813C755A9837A10B8B295 /* IQKeyboardReturnManager.debug.xcconfig */; + baseConfigurationReference = C5AE4F2FE6962D2D5782A193601217D4 /* Pods-Examples-SourcepointFirebaseDemo.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12528,9 +14009,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -12539,41 +14018,43 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardReturnManager; - PRODUCT_NAME = IQKeyboardReturnManager; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - E87470A1848ABC60199D6217D46951F3 /* Debug */ = { + D834AEAA334DEA04A1BF19DFA0DD207F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FBAA18AB5D53716CC24AE5AE7479096E /* GoogleAppMeasurement.debug.xcconfig */; + baseConfigurationReference = 285FA291E715D679D7FE0BA7CA91DB12 /* SwiftLint.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - EB07DF2CD80F049009CBCB270B4F3508 /* Debug */ = { + D90EE8250D7C3B967A693BA986337355 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 27F52904F8E2C67669D2B25113119F8C /* Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig */; + baseConfigurationReference = 5F0BAEF807330D071BABE9BE7ADD3BE3 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -12587,7 +14068,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -12596,7 +14077,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -12605,51 +14086,32 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - EE9790A563FB7BB420B3178942F8617C /* Debug */ = { + D993ADC32508C4F5BC5089E63E193331 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F5DDB6CE9B4FD98DB1C0D219C54244D2 /* PromisesObjC.debug.xcconfig */; + baseConfigurationReference = 119BF7600B4B48D0FAF2C547AC752308 /* GoogleUtilities.release.xcconfig */; buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = GoogleUtilities_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - EFE2E118643E7196A62B5E3039A9A4BA /* Debug */ = { + DC021ABE7E3425E47582BD698A924878 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9240B10CFAEBE33B71A1FB4B8CAA5F5F /* JSONView.debug.xcconfig */; + baseConfigurationReference = D40DAEECEA07B34CD1EA6C66DCEB2C6C /* CwlCatchExceptionSupport.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12662,33 +14124,137 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/JSONView/JSONView-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/JSONView/JSONView-Info.plist"; + INFOPLIST_FILE = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/JSONView/JSONView.modulemap"; - PRODUCT_MODULE_NAME = JSONView; - PRODUCT_NAME = JSONView; + MODULEMAP_FILE = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.modulemap"; + PRODUCT_MODULE_NAME = CwlCatchExceptionSupport; + PRODUCT_NAME = CwlCatchExceptionSupport; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; + name = Release; + }; + DC5E60C1150300E0EE0E5982F5A328D0 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 41BAC8F250BD7588F95DD766836F4A64 /* FirebaseInstallations.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseInstallations"; + IBSC_MODULE = FirebaseInstallations; + INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = FirebaseInstallations_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; name = Debug; }; - F09A6D7CC9773C049C6A39BA034D5C3A /* Release */ = { + E0C4F053C297D2218026DEB75B60D0D5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D31896522ED33BA384049E391718EA8 /* Pods-Examples-AuthExample.release.xcconfig */; + baseConfigurationReference = 090867511CD2BA024093F61173297740 /* Wormholy.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Wormholy"; + IBSC_MODULE = Wormholy; + INFOPLIST_FILE = "Target Support Files/Wormholy/ResourceBundle-Wormholy-Wormholy-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = Wormholy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + E5536B15C895CD5BAAE17ADFAE647264 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E4269C979DF800C248CEE4EF6E553E03 /* PromisesObjC.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = FBLPromises_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + E5B0250E0BD854CD7C13F82F0170B7B9 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 72C7BE65FE543570C043A81113E9833F /* IQKeyboardManagerSwift.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardManagerSwift"; + IBSC_MODULE = IQKeyboardManagerSwift; + INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = IQKeyboardManagerSwift; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + E63CA6603525446F42CE92EC6FA6500F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A89672116452AEA51E63CDD4641DF6AC /* IQKeyboardNotification.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardNotification"; + IBSC_MODULE = IQKeyboardNotification; + INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + PRODUCT_NAME = IQKeyboardNotification; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + E6C672C97A34BF21E86CCE3B0318F11C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A0CA2E223EE61D297A117842655ACF18 /* FirebaseCore.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCore"; + IBSC_MODULE = FirebaseCore; + INFOPLIST_FILE = "Target Support Files/FirebaseCore/ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = FirebaseCore_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + EA9F5298B8B12CE84F42274709A73C7D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 27F52904F8E2C67669D2B25113119F8C /* Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -12702,7 +14268,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -12711,7 +14277,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -12720,29 +14286,28 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - F1A76AD94809588CCC14187B739134A6 /* Debug */ = { + EE17A09E7F83C06669063470286EE4FA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 03D300D43238379ED6079E1774E378A9 /* IQKeyboardToolbarManager.debug.xcconfig */; + baseConfigurationReference = A94D32980FE8EEFD4BF3C5D8AB171AFC /* Quick-iOS.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-prefix.pch"; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/Quick-iOS/Quick-iOS-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Quick-iOS/Quick-iOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -12751,57 +14316,80 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardToolbarManager; - PRODUCT_NAME = IQKeyboardToolbarManager; + MODULEMAP_FILE = "Target Support Files/Quick-iOS/Quick-iOS.modulemap"; + PRODUCT_MODULE_NAME = Quick; + PRODUCT_NAME = Quick; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - F203B6C44570BC9CFDE4194154B27263 /* Release */ = { + EF33553832DCEE23A14321C5539AF5BD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8DC42E314A6A073A8CBEA8D0E051670 /* IQKeyboardToolbarManager.release.xcconfig */; + baseConfigurationReference = CEEF2772E3AD8AFE9DAE3F2083371D77 /* PromisesObjC.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbarManager"; - IBSC_MODULE = IQKeyboardToolbarManager; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardToolbarManager; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = FBLPromises_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - F592A9E8F94FEDD11426981A1FB71BAA /* Release */ = { + EF45C33CF88331E3800EC5AD8762C13F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 331073598098173D1699703CF07AF019 /* ConsentViewController-iOS.release.xcconfig */; + baseConfigurationReference = 994E32106A3E483B71224175EE751364 /* Pods-Tests-NativeMessageExampleUITests.release.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ConsentViewController-iOS"; - IBSC_MODULE = ConsentViewController; - INFOPLIST_FILE = "Target Support Files/ConsentViewController-iOS/ResourceBundle-ConsentViewController-ConsentViewController-iOS-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = ConsentViewController; + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - F758EC07040D864D695A3A201F796057 /* Release */ = { + EFE2E118643E7196A62B5E3039A9A4BA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D89E5C002D5CCC712E8E9B86A46E4EA8 /* nanopb.release.xcconfig */; + baseConfigurationReference = A9F239EB342CD33668E7657BEF9023C2 /* JSONView.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12814,37 +14402,36 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/JSONView/JSONView-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INFOPLIST_FILE = "Target Support Files/JSONView/JSONView-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; + MODULEMAP_FILE = "Target Support Files/JSONView/JSONView.modulemap"; + PRODUCT_MODULE_NAME = JSONView; + PRODUCT_NAME = JSONView; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - F9B692B6D88048DCC6E0542E83CF1D54 /* Debug */ = { + F09A6D7CC9773C049C6A39BA034D5C3A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5CA7BC50BD57C2265DA3CD531E6B596A /* Pods-TVOSExampleApp.debug.xcconfig */; + baseConfigurationReference = 5D31896522ED33BA384049E391718EA8 /* Pods-Examples-AuthExample.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -12855,32 +14442,33 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = appletvos; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 12.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - FA11E5095A337B9D47CF168754877FC7 /* Release */ = { + F11F5864CB133F6CA5B1B102E198C025 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E031F91F1F99C88F5C25D358A8C2080 /* Pods-Tests-AuthExampleUITests.release.xcconfig */; + baseConfigurationReference = 42DDA6EA4552D7101BA8815109178F18 /* Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -12894,7 +14482,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -12903,7 +14491,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -12912,33 +14500,33 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - FA623738B3D30A07BD957C4976A3ABFC /* Debug */ = { + F617B8FBB5B5D681C61CB996746E62F9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 141322BAF43813C755A9837A10B8B295 /* IQKeyboardReturnManager.debug.xcconfig */; + baseConfigurationReference = A11B05957DEC3AB840DA74DE56267828 /* IQKeyboardToolbar.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardReturnManager"; - IBSC_MODULE = IQKeyboardReturnManager; - INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbar"; + IBSC_MODULE = IQKeyboardToolbar; + INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardReturnManager; + PRODUCT_NAME = IQKeyboardToolbar; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - FD768B551E143ECC74DA4AD9E724A912 /* Release */ = { + F782E619EF607753E0F6806CDB1A656C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 966EA30EE46F7616473774CAC3C25E7B /* Quick-tvOS.release.xcconfig */; + baseConfigurationReference = 477405BF4D1FBDEDBF1A82AD3DE52801 /* Nimble-iOS.release.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -12948,147 +14536,243 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Quick-tvOS/Quick-tvOS-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Nimble-iOS/Nimble-iOS-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Quick-tvOS/Quick-tvOS-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Nimble-iOS/Nimble-iOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Quick-tvOS/Quick-tvOS.modulemap"; - PRODUCT_MODULE_NAME = Quick; - PRODUCT_NAME = Quick; - SDKROOT = appletvos; + MODULEMAP_FILE = "Target Support Files/Nimble-iOS/Nimble-iOS.modulemap"; + PRODUCT_MODULE_NAME = Nimble; + PRODUCT_NAME = Nimble; + SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 9.0; + TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - FE0860B8BDC4BE66C85A284F0EDB9FEA /* Debug */ = { + F9B692B6D88048DCC6E0542E83CF1D54 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 279F88EBA67943FE8DBA4704C9BA2C15 /* ConsentViewController-tvOS.debug.xcconfig */; + baseConfigurationReference = 5CA7BC50BD57C2265DA3CD531E6B596A /* Pods-TVOSExampleApp.debug.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ConsentViewController-tvOS"; - IBSC_MODULE = ConsentViewController; - INFOPLIST_FILE = "Target Support Files/ConsentViewController-tvOS/ResourceBundle-ConsentViewController-ConsentViewController-tvOS-Info.plist"; - PRODUCT_NAME = ConsentViewController; + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + INFOPLIST_FILE = "Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = appletvos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = 3; TVOS_DEPLOYMENT_TARGET = 12.0; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + FC4229FB7E572F0F9BBEA2E162011588 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DC2639B1E829A5F90E03607464AF4414 /* GoogleUtilities.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilities; + PRODUCT_NAME = GoogleUtilities; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 07A0C87225A782E68EACDCF8F49D901A /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager-IQKeyboardReturnManager" */ = { + 090BFCBA155B7F3F0E0F283626E85DE0 /* Build configuration list for PBXNativeTarget "IQTextView-IQTextView" */ = { isa = XCConfigurationList; buildConfigurations = ( - FA623738B3D30A07BD957C4976A3ABFC /* Debug */, - D92FFEAE75D7CA3A2248AFBF8963F956 /* Release */, + CBBD1EE104455BC781CE71B35418E005 /* Debug */, + 198C3997F297ECA1DE780203DB2B9686 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 092E9433CBBBE5551E8DCE2D06AA09F6 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar" */ = { + 0D682EBF930B47EF926E9C5D9326DBD0 /* Build configuration list for PBXNativeTarget "Pods-Examples-ObjC-ExampleApp" */ = { isa = XCConfigurationList; buildConfigurations = ( - 52ED2C3118F9BEA875A93683B6577574 /* Debug */, - CD484A8A64BC758F801673D2D49BEDC1 /* Release */, + 3DCD05D7DDE215621D5F61B7BD222598 /* Debug */, + 2B2F298DCDA9EEAF67441F0BE0DCD995 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 09E991F886AC072079C7F8B7E08C5B23 /* Build configuration list for PBXNativeTarget "Quick-tvOS" */ = { + 0DF35521CC8895B60E55B132E01EC6E3 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal-FirebaseCoreInternal_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - A4002FD60F73088F27EC8CE2C3481375 /* Debug */, - FD768B551E143ECC74DA4AD9E724A912 /* Release */, + 50A4210F9241CB6251F85F141507A19C /* Debug */, + 20ED51BAD5DE05615FFA0AEAAB2301CB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0D682EBF930B47EF926E9C5D9326DBD0 /* Build configuration list for PBXNativeTarget "Pods-Examples-ObjC-ExampleApp" */ = { + 0F156227FA0479F5E78F435E91240268 /* Build configuration list for PBXNativeTarget "Nimble-tvOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3DCD05D7DDE215621D5F61B7BD222598 /* Debug */, - 2B2F298DCDA9EEAF67441F0BE0DCD995 /* Release */, + 168DAAB3547D8A0B537D7695AFC15E59 /* Debug */, + 43037CA804A1465AA9A9985EB2AA3503 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 11405934BCFCBD5C2A15D6FFA2644619 /* Build configuration list for PBXNativeTarget "Nimble-iOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + CE2250ED592B587ACD353234CB7052D0 /* Debug */, + F782E619EF607753E0F6806CDB1A656C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 1EBC19BA904E766FE0D14F5786FC3F54 /* Build configuration list for PBXAggregateTarget "SPMobileCore-tvOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + ADE32372A990AB47C803A9023B51AA23 /* Debug */, + 8F92F524B4505109D827498556153A92 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 257CB04BA79C2D718D4AC1E76481EFA7 /* Build configuration list for PBXNativeTarget "Quick-tvOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 64193CBACD4A98A9FE55F541B6602744 /* Debug */, + CEA1C6633D182988DD20C372CC05CB29 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 140A4DF6E4CE7C42153027ABCD3E5371 /* Build configuration list for PBXNativeTarget "Wormholy-Wormholy" */ = { + 2BBC4D609AAC3EB076227051A51C2317 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */ = { isa = XCConfigurationList; buildConfigurations = ( - BF1C21E0D229632E183DDBFE8E790878 /* Debug */, - 940D6EC07D161259907BA6B24838656A /* Release */, + C47934DD7A46BFD0CD7470D2F241D9A8 /* Debug */, + 436A507E46F0AB10C1F2F4195294C537 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2C07945D0D4B6E74A445872213878D99 /* Build configuration list for PBXAggregateTarget "SPMobileCore-tvOS" */ = { + 32105BE899BF4B6FC6BC033DE8A476E8 /* Build configuration list for PBXNativeTarget "Pods-Tests-AuthExampleUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 24D7A68308D2A5218FC847145092A2AD /* Debug */, - 825E2867879976966DA21BB29B033817 /* Release */, + 61777F39BA975962D7231F5C4FB92C18 /* Debug */, + 4FE5D50BA20AC9B9AC9C1F7141E5ADFE /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2E52AB0BF17E4B85E2A263DA4E330547 /* Build configuration list for PBXNativeTarget "Pods-Tests-ConsentViewController_ExampleTests" */ = { + 3B269303E283FB706D3DE1F9407A2030 /* Build configuration list for PBXNativeTarget "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46DACF93CEC7059302B1D40B71355592 /* Debug */, - 75BF3CB075FFDCFAA70EE918989CAFFC /* Release */, + 947741EAC317B557FF73926E1CFCE293 /* Debug */, + D90EE8250D7C3B967A693BA986337355 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 395576034431955DA658B0C4B8BE2043 /* Build configuration list for PBXNativeTarget "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests" */ = { + 401DBC16ED3825ED5C7AC8777548FE91 /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager-IQKeyboardReturnManager" */ = { isa = XCConfigurationList; buildConfigurations = ( - 127AF5EE914E400066BBA00020D487F2 /* Debug */, - 38A44FC3167250C483401D020E8FA894 /* Release */, + 297792429E20B86846683C49C8A16D19 /* Debug */, + C1C7C501508BB6500786571B4E945137 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3AA389CB1EDA9962A6B9D9400F06F349 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar-IQKeyboardToolbar" */ = { + 40F354CEEC0E7EF3EB291A40F327FACE /* Build configuration list for PBXNativeTarget "nanopb" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7061D300823B14B879BEB1A0B787270E /* Debug */, - 5D0AA5948A6229958D679499A44FA006 /* Release */, + 2B3133F528EAD9E9CD2996C313506EB4 /* Debug */, + 6D219CD9F20656CB347F1C55A4D36ED2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 40EBE4D20BFACA90C735122C8EC439E9 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager-IQKeyboardToolbarManager" */ = { + 42523495ED6DDC79EB50B80655F2FAD7 /* Build configuration list for PBXNativeTarget "Wormholy-Wormholy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46CDB68B026C0EA3055F0E399C33FB8A /* Debug */, - F203B6C44570BC9CFDE4194154B27263 /* Release */, + E0C4F053C297D2218026DEB75B60D0D5 /* Debug */, + 111B314DEBE9B397D778D90CFAA0DD1A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 439F7C71F1358FB99A6620B4781415A3 /* Build configuration list for PBXNativeTarget "nanopb" */ = { + 4286674F1ACAAEDD8D0AD9D838746D77 /* Build configuration list for PBXNativeTarget "CwlPreconditionTesting" */ = { isa = XCConfigurationList; buildConfigurations = ( - B4B133F58CC1952A0F51659D04E3A795 /* Debug */, - F758EC07040D864D695A3A201F796057 /* Release */, + A212979653B3DF61D5E55276F3264040 /* Debug */, + 0359B6E5C81C72F2A836F368541E137C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 433737C2FF9F1D1A1916E4C80A7EA0D1 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager-IQKeyboardToolbarManager" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4BA18A21CB1B4F249E5996AB5DB178D2 /* Debug */, + C5C2ABCE418FE9B749EBEA45ED1C77EB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -13102,20 +14786,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4B1F6A48B86F0990C88EB514A2514C1E /* Build configuration list for PBXNativeTarget "Nimble-iOS" */ = { + 486BDD66DBDF5FAB3ACB3C712F8DA481 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification-IQKeyboardNotification" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E63CA6603525446F42CE92EC6FA6500F /* Debug */, + 535642C8E96314EC66B8447004397685 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 57C20D375067F47300EF4A6323715370 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift-IQKeyboardManagerSwift" */ = { isa = XCConfigurationList; buildConfigurations = ( - A94F5F9730BD4BE59A4FDA4BBB3DD8DC /* Debug */, - 34EB1790C0E6507F11CD2E1087CD9278 /* Release */, + 88933E87DF5FCC53F1B6CDE3106341B8 /* Debug */, + E5B0250E0BD854CD7C13F82F0170B7B9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 520CA4C37855E777EDFF7B79C322F698 /* Build configuration list for PBXNativeTarget "ConsentViewController-iOS-ConsentViewController" */ = { + 584139164D6737A69E7A1563180B2BD5 /* Build configuration list for PBXNativeTarget "PromisesObjC-FBLPromises_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 411408329C99101AE5A2EF5BEB41249E /* Debug */, - F592A9E8F94FEDD11426981A1FB71BAA /* Release */, + EF33553832DCEE23A14321C5539AF5BD /* Debug */, + E5536B15C895CD5BAAE17ADFAE647264 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -13129,416 +14822,416 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 58AC7058ED5D4185B9ED5F1C47B0D9E3 /* Build configuration list for PBXNativeTarget "Pods-Tests-NativeMessageExampleUITests" */ = { + 6098B9CDCC5E3B555285349576DFBE48 /* Build configuration list for PBXAggregateTarget "SPMobileCore-iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 206A5D1AD900A40547B7D4FC869AA5C5 /* Debug */, - 9901F031F7A52C7D1E236AD34FE5F047 /* Release */, + 6C73A30C3E70AECA49DBA8DA38C654B2 /* Debug */, + 897248D5D2667E3217EF57232EA1750B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5A32F91CAAA299E14AE16007D70F5BAA /* Build configuration list for PBXNativeTarget "Quick-iOS" */ = { + 6512C9FAD9515EB626377761483824F7 /* Build configuration list for PBXNativeTarget "Pods-Tests-SPGDPRExampleAppUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 773238495A9A2A82ACAAAB0F54A9F378 /* Debug */, - 502340E31AA26194EB0FDEF2BC39443A /* Release */, + F11F5864CB133F6CA5B1B102E198C025 /* Debug */, + 978F720BAB8AECE5494661B4940D124F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6651899ED36477F3E96BA205C11749CC /* Build configuration list for PBXNativeTarget "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests" */ = { + 65C72768F72492115A09FE41F509527D /* Build configuration list for PBXNativeTarget "Pods-Tests-ConsentViewController_ExampleTests" */ = { isa = XCConfigurationList; buildConfigurations = ( - A9CA72AF30E1ECCC1D054B1C61C30602 /* Debug */, - C2FC54122A93D37F421BBEF4D26C81CF /* Release */, + CC87F67E5394EE6BE9F4BEB048B508B9 /* Debug */, + B06EC718BC1C24E92F905A5541FB6AA6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 71FF6A332936CF1934C4BA30A1C18FCC /* Build configuration list for PBXNativeTarget "IQKeyboardNotification-IQKeyboardNotification" */ = { + 6A21E486CD1D6FADF816EDED6A7FF6EF /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { isa = XCConfigurationList; buildConfigurations = ( - 67A6F072DC6ABA37C2EF2CDE1F119736 /* Debug */, - 41B51BB3EB069DEC201190E385BCE01D /* Release */, + 73170304D5722E5AB4C389BC25C3C796 /* Debug */, + 44CEE02C9383267489710B6FB1F13FF3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 73358D41E356A6E42FF0EED50094FC54 /* Build configuration list for PBXNativeTarget "Pods-Tests-ObjC-ExampleAppUITests" */ = { + 6CA6778A211DD4F32331F054CA967EC3 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar-IQKeyboardToolbar" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3F6E811583488B7CF66A553BDB3C7817 /* Debug */, - C310BBA6AE51F9F8A09B4F0CC0B86A2E /* Release */, + 703CB38488CFBC76CD6A8D6225020189 /* Debug */, + F617B8FBB5B5D681C61CB996746E62F9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7536015A8646CCC4479BDD18C4E9F962 /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification" */ = { + 6CE62D9C5C190237F9EDA656415E1F8F /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6B47B1EA23AAE2BDE1011A0445DBA8A4 /* Debug */, - 78EA55F687658609A8E7FA188F364B38 /* Release */, + C31EFB36C87B453E49617E51D7399B3B /* Debug */, + 29E66BD6E2F057F8BA57F5C72FAD6C66 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 75B7CEA4BC69F0A0EC778754D602DB1E /* Build configuration list for PBXNativeTarget "IQTextView-IQTextView" */ = { + 6F6F35FEE6A349E33F085A79DA040D7B /* Build configuration list for PBXNativeTarget "CwlCatchExceptionSupport" */ = { isa = XCConfigurationList; buildConfigurations = ( - 01E80027AC25B05C51DA33EF851B5CBE /* Debug */, - 0AA3186257C363061B9EE59EFAA33B06 /* Release */, + 2F9E55DE3E998BAE8B4159A92BB19167 /* Debug */, + DC021ABE7E3425E47582BD698A924878 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 770CA9938956F6B38BBC9D59B8BD1285 /* Build configuration list for PBXNativeTarget "ConsentViewController-tvOS-ConsentViewController" */ = { + 70380F48246B5923842FDF6A0CE89726 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification" */ = { isa = XCConfigurationList; buildConfigurations = ( - FE0860B8BDC4BE66C85A284F0EDB9FEA /* Debug */, - 8D9FEEB11858612A07A666C45DF77992 /* Release */, + 02661949AD1B877B467898C4A583050A /* Debug */, + 313E364743B2C52A27C7817D38BBB6F5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7CB09BE506701397B736AB7176B621EF /* Build configuration list for PBXNativeTarget "Pods-Examples-SourcepointFirebaseDemo" */ = { + 7271A8AF871EE482A86F0F6A5D5FAF43 /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0BCABF5071E93511CBE83B95C9D5D0D3 /* Debug */, - D64FD8B858B988C908880C81851CC20A /* Release */, + 965934B6BCAC23646E20A3B9C8C9C5E5 /* Debug */, + 7573AFBB8FE07DA5AFB18436786E8FEA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 829ACD64FCFF77F7DA5817E8CFAEBF74 /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */ = { + 73698F5E307483982BBBFFD4EE9A21F0 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */ = { isa = XCConfigurationList; buildConfigurations = ( - 41779282855C10AEC728B23688CB5127 /* Debug */, - 7F52C9CAB18B21EF455F8E6691F056CA /* Release */, + 43E0808F6CD0054BEAFD077A49910C25 /* Debug */, + 62A42620E107148938527ABCD9D55649 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8632C49663D356F5D840C280D0D2378B /* Build configuration list for PBXNativeTarget "Pods-TVOSExampleApp" */ = { + 7373B65621B275793394FC1FDDECFC0C /* Build configuration list for PBXNativeTarget "FirebaseCore-FirebaseCore_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - F9B692B6D88048DCC6E0542E83CF1D54 /* Debug */, - B9DE5DEF00194D2BAC307903FD5A53EC /* Release */, + E6C672C97A34BF21E86CCE3B0318F11C /* Debug */, + 5FE628F8135C7922727A4F309A9AC921 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8E564D619C8616F818D3573B794C886F /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */ = { + 79112FA6765628ED10F3B221D35A2037 /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification-IQTextInputViewNotification" */ = { isa = XCConfigurationList; buildConfigurations = ( - E87470A1848ABC60199D6217D46951F3 /* Debug */, - 349E9664D469E58E5D1AF186E30C05D9 /* Release */, + 793AC32F57CD65C0C24747E3516C1585 /* Debug */, + 179F02B068D3A949CE974A8A247F5C88 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 909DAEB8C13763B66A8D15CBFAABD157 /* Build configuration list for PBXNativeTarget "IQTextView" */ = { + 7CB09BE506701397B736AB7176B621EF /* Build configuration list for PBXNativeTarget "Pods-Examples-SourcepointFirebaseDemo" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1845817627C1DF4314CC729D0A910DC7 /* Debug */, - D33037657C0282755493139219736EFE /* Release */, + 0BCABF5071E93511CBE83B95C9D5D0D3 /* Debug */, + D64FD8B858B988C908880C81851CC20A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 93971A6DD6DB56362395312F11A34F88 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager" */ = { + 8244633BD3A6491EAF9FE7B565296A1D /* Build configuration list for PBXNativeTarget "IQTextView" */ = { isa = XCConfigurationList; buildConfigurations = ( - F1A76AD94809588CCC14187B739134A6 /* Debug */, - 40593692464EF2EC20658975775300F2 /* Release */, + 283F6E1737D71180AADC0E7185377560 /* Debug */, + 17B75AFE066BBCE403255328353E64F5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 98047766BC79DBB6ECA0B0077E4DA165 /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager" */ = { + 829ACD64FCFF77F7DA5817E8CFAEBF74 /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */ = { isa = XCConfigurationList; buildConfigurations = ( - DF874A958004E54155C91F4997FCC011 /* Debug */, - 1DDC29305721939E0776EF97656F1677 /* Release */, + 41779282855C10AEC728B23688CB5127 /* Debug */, + 7F52C9CAB18B21EF455F8E6691F056CA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 983D34EB08914D76B1A22AD1D9EDDAC5 /* Build configuration list for PBXNativeTarget "PromisesObjC-FBLPromises_Privacy" */ = { + 8632C49663D356F5D840C280D0D2378B /* Build configuration list for PBXNativeTarget "Pods-TVOSExampleApp" */ = { isa = XCConfigurationList; buildConfigurations = ( - 75A727E850B81FEFF369A19BAF4EC74D /* Debug */, - 1E9C7D9E6F6C46650139F05E27F2864C /* Release */, + F9B692B6D88048DCC6E0542E83CF1D54 /* Debug */, + B9DE5DEF00194D2BAC307903FD5A53EC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9862551891F2D012AFB451EF931DA639 /* Build configuration list for PBXNativeTarget "Nimble-tvOS" */ = { + 86C2086694666CC28CF9CE092DBA7C04 /* Build configuration list for PBXNativeTarget "IQKeyboardCore-IQKeyboardCore" */ = { isa = XCConfigurationList; buildConfigurations = ( - 176CE08329BF92BFDE5C76F89C647973 /* Debug */, - 6F5BAEE7BA9F630443963242B66053C9 /* Release */, + 06E89B66603BB3817B6DD4358A37B33C /* Debug */, + CB64E29ED8083B02079F26CC3D0F9FA8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 987D8259EF202FAFACC4D7E254C4165E /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */ = { + 8717ED24B5ADB091C4F7A536B88C1955 /* Build configuration list for PBXNativeTarget "Quick-iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9C6573AECDE744A5537DA5E1844D5368 /* Debug */, - 03C284DCD82A6DB2120ECB795D76D2F8 /* Release */, + EE17A09E7F83C06669063470286EE4FA /* Debug */, + B8934ACA914104F6CAFABAB2B89C286E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9B451FD2D8514E4EF5346240450F5803 /* Build configuration list for PBXNativeTarget "Pods-Examples-NativeMessageExample" */ = { + 898CA5EFF2E0150911B41009E0516A20 /* Build configuration list for PBXNativeTarget "FirebaseInstallations-FirebaseInstallations_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7366331A9E9139D62C5D0BFDF92ACD57 /* Debug */, - 6AFDE725EECC687BB5377E4E36321BAE /* Release */, + DC5E60C1150300E0EE0E5982F5A328D0 /* Debug */, + A3C5A2F9180B3B316FFF334621174657 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A7D3250012D37E95618B41252E2FA78C /* Build configuration list for PBXNativeTarget "nanopb-nanopb_Privacy" */ = { + 8A33DEFF72EBF072A7FD92464FADA790 /* Build configuration list for PBXNativeTarget "ConsentViewController-iOS-ConsentViewController" */ = { isa = XCConfigurationList; buildConfigurations = ( - 296D9034E96D20DE902AB9BF7932254C /* Debug */, - 530FAF92AFF864B3F844795729760CAC /* Release */, + B5D4C2CBA4DED11444D4BF3C630AF3F8 /* Debug */, + 9E342C83BAB76D2784E2641DDE39F905 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AA90D24EC2103CDBDE0E4AF5165C771C /* Build configuration list for PBXNativeTarget "ConsentViewController-iOS" */ = { + 8AC46CF02836F734776D62A2C6470190 /* Build configuration list for PBXNativeTarget "CwlMachBadInstructionHandler" */ = { isa = XCConfigurationList; buildConfigurations = ( - CAEE34DBAC93428CEF98F1F637BAF1F0 /* Debug */, - 0ED3FB489B2F36FB9D45064F1B8E760C /* Release */, + 86CFC7915A12CEAE7456122BB8790D3E /* Debug */, + C199163ADE41485EE0B58ABA407CA16B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AC56FF05BC8C596E65C45E159EA59B15 /* Build configuration list for PBXNativeTarget "Pods-Examples-ConsentViewController_Example" */ = { + 961DC382BBC722E5FC6767CB7CEADAB7 /* Build configuration list for PBXNativeTarget "Pods-Tests-ObjC-ExampleAppUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 06FB9A0D78EC4D64B2E01E913AFC4F3D /* Debug */, - 100D0542326720D8D5D2B5B301409A20 /* Release */, + A1CDF998F23DDEED098F74B9F254879A /* Debug */, + 8542BB23110353B53E23390610CC17DC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AE7B4FB01588B9E6DF09CB79FC7CE7BD /* Build configuration list for PBXAggregateTarget "SwiftLint" */ = { + 970202E1E901E13A711396780ADC71A2 /* Build configuration list for PBXNativeTarget "Pods-Tests-SourcePointMetaAppUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 59619FF05234376C3EAC921AE49A2A96 /* Debug */, - D834AEAA334DEA04A1BF19DFA0DD207F /* Release */, + EA9F5298B8B12CE84F42274709A73C7D /* Debug */, + 5D286BA7A3266AA5C3B4BA1320AFE4CC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B71B7EE10E636DCC4A2F895F82A93FBE /* Build configuration list for PBXNativeTarget "Pods-Examples-SourcePointMetaApp" */ = { + 97611EFAC8B8B3108E3DE58450DFEC61 /* Build configuration list for PBXNativeTarget "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( - AE19982F15B79C39EDE47EC5BD56F27D /* Debug */, - CDA4DD10F8F0EE8AA826B1F302D9CFEB /* Release */, + 619903AF24531B57E8A1EB3205BE7F69 /* Debug */, + A0803C08A428BEE8A4C6A01286EA10DF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BACB7AC52B9EADA6FB2025C4D66F178A /* Build configuration list for PBXNativeTarget "FirebaseInstallations-FirebaseInstallations_Privacy" */ = { + 97AA0DB95E30F64CE54BC1BA27D47234 /* Build configuration list for PBXNativeTarget "Pods-Tests-NativeMessageExampleUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3C021A8B8252325EAE43AE91CD33D6EF /* Debug */, - 8802487FFF1854E9A6000269AC97D634 /* Release */, + 347C7EB89DA42671D14EE3E09AC284D3 /* Debug */, + EF45C33CF88331E3800EC5AD8762C13F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BBDF651C446E01EF975956A0ED7286F4 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */ = { + 99E30F74ACFEEF95AE57851BA6C5BF83 /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { isa = XCConfigurationList; buildConfigurations = ( - C8AAC979202D1B08BCBDCD515891C68F /* Debug */, - 2DD327BCC6F698FB49B4EC880BB4FCC0 /* Release */, + 47BABA8CBA7DCCCE40F2E2614217A764 /* Debug */, + 2524E26CAC2DB00DAB928076BF7EEE3E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C499BA1D48C2BFE777E5427B2A6909FF /* Build configuration list for PBXNativeTarget "Pods-Examples-AuthExample" */ = { + 9B451FD2D8514E4EF5346240450F5803 /* Build configuration list for PBXNativeTarget "Pods-Examples-NativeMessageExample" */ = { isa = XCConfigurationList; buildConfigurations = ( - 59E6151C17FC8A951AAE628AD5144604 /* Debug */, - F09A6D7CC9773C049C6A39BA034D5C3A /* Release */, + 7366331A9E9139D62C5D0BFDF92ACD57 /* Debug */, + 6AFDE725EECC687BB5377E4E36321BAE /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CDEC5C3FCE8085803CAB5E815B29B27B /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { + 9B65AE67D78BECCA5304A7B5FA3B7F71 /* Build configuration list for PBXNativeTarget "CwlPosixPreconditionTesting" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3EFFB0E6F366EB3175812B9439C9755F /* Debug */, - 0DD636FEE499F68411AFE45790D4E541 /* Release */, + 4FD6CA0A6B2F796EE0F07A01F371D1EF /* Debug */, + C3AFC6255078B482631F15926FF56A7E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D10EB1FBBFC8F9C9195A3076DF54C577 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification" */ = { + A15181D4FC3350625E622B5721FFEE60 /* Build configuration list for PBXNativeTarget "ConsentViewController-tvOS-ConsentViewController" */ = { isa = XCConfigurationList; buildConfigurations = ( - 657CAC11827ECFE1621C68649CA2928A /* Debug */, - 8C32D0BD63127EC059C059D03866FBE3 /* Release */, + 839B7B41DFF63F5844CD9A1F56FDFC9C /* Debug */, + A766D22DD19730841ED43EDD4BFE2E1B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D43E41F2AB9F1FD4B4432E2D64D744FE /* Build configuration list for PBXNativeTarget "FirebaseCore-FirebaseCore_Privacy" */ = { + A5C3E29C57F267050344FDDC39AA7BE0 /* Build configuration list for PBXNativeTarget "CwlCatchException" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5A0B27ED649F51A96858AFAB413E3A1C /* Debug */, - 71832A76125FB4B0688E4749E2F8DD79 /* Release */, + 85F3EA07969E1FB2BE878F17A9FC6DE1 /* Debug */, + C50368B0EAA1F717CA3CDFE1FAB81926 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D99294984B3379977E6B4F611983318F /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal-FirebaseCoreInternal_Privacy" */ = { + AA90D24EC2103CDBDE0E4AF5165C771C /* Build configuration list for PBXNativeTarget "ConsentViewController-iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 97C69CA38ED4083DF7D6AF2A81ACC356 /* Debug */, - 8AE4C932F356463D403764BBABF929A7 /* Release */, + CAEE34DBAC93428CEF98F1F637BAF1F0 /* Debug */, + 0ED3FB489B2F36FB9D45064F1B8E760C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DA3FFFE83F01DFB3BFB7CBD2A71DEBA9 /* Build configuration list for PBXNativeTarget "IQKeyboardCore" */ = { + AC56FF05BC8C596E65C45E159EA59B15 /* Build configuration list for PBXNativeTarget "Pods-Examples-ConsentViewController_Example" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3B5D70C6658E836308BD6369B370DF86 /* Debug */, - CA4609710386965DE58C51431F3CC911 /* Release */, + 06FB9A0D78EC4D64B2E01E913AFC4F3D /* Debug */, + 100D0542326720D8D5D2B5B301409A20 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DB7B6C16FA90A165B600866E2C1FEF38 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift-IQKeyboardManagerSwift" */ = { + AD8520DF4CD939F3DE9594BB44260177 /* Build configuration list for PBXNativeTarget "GoogleUtilities-GoogleUtilities_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2FAEBE7D24D1120BAE08282492A74537 /* Debug */, - D11BB27413AC83B9676195B3571FAFBC /* Release */, + 59BFADD7238EC69013FF74537A43BDED /* Debug */, + D993ADC32508C4F5BC5089E63E193331 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E02DBD171E54BC4C3C3FE1ADE7A5902E /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { + AE7B4FB01588B9E6DF09CB79FC7CE7BD /* Build configuration list for PBXAggregateTarget "SwiftLint" */ = { isa = XCConfigurationList; buildConfigurations = ( - EE9790A563FB7BB420B3178942F8617C /* Debug */, - 15F2B064B7E59A89B5466500B3FA78E2 /* Release */, + 59619FF05234376C3EAC921AE49A2A96 /* Debug */, + D834AEAA334DEA04A1BF19DFA0DD207F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E1DB9A78E5F2370296AB29D96DA6850E /* Build configuration list for PBXNativeTarget "Pods-Tests-SourcePointMetaAppUITests" */ = { + B30C652DAAE17BC97480108EB67250A0 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { isa = XCConfigurationList; buildConfigurations = ( - EB07DF2CD80F049009CBCB270B4F3508 /* Debug */, - 745D6B248D65C21A4298CAE033355D4C /* Release */, + FC4229FB7E572F0F9BBEA2E162011588 /* Debug */, + 181CE522775CEF3D1FB2C67A55AE0DD5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E501C949B30AE425F88D45B20924B113 /* Build configuration list for PBXAggregateTarget "SPMobileCore-iOS" */ = { + B6F32C337E6985623A8DF177B99BD6F5 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar" */ = { isa = XCConfigurationList; buildConfigurations = ( - 29E109F3C6C5D190A7890D0F28ECB0A8 /* Debug */, - 9B12EB436F1F8187195B311973677589 /* Release */, + 35D642F72B28E1932716FE739CC2899C /* Debug */, + 9D98A7C47587EA934248BF374EB526E9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EA89D444C04C30C7B3983F9BF5177E1D /* Build configuration list for PBXNativeTarget "JSONView" */ = { + B71B7EE10E636DCC4A2F895F82A93FBE /* Build configuration list for PBXNativeTarget "Pods-Examples-SourcePointMetaApp" */ = { isa = XCConfigurationList; buildConfigurations = ( - EFE2E118643E7196A62B5E3039A9A4BA /* Debug */, - 943A7CFA488BFBE271756245EFDD4E71 /* Release */, + AE19982F15B79C39EDE47EC5BD56F27D /* Debug */, + CDA4DD10F8F0EE8AA826B1F302D9CFEB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F126536C3E034489CE5D8F49E465A651 /* Build configuration list for PBXNativeTarget "Pods-Tests-SPGDPRExampleAppUITests" */ = { + C499BA1D48C2BFE777E5427B2A6909FF /* Build configuration list for PBXNativeTarget "Pods-Examples-AuthExample" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2183FFC9DBA62C80D9005F0860653495 /* Debug */, - 15930BD83DB782BFD12AADBE994EAC9E /* Release */, + 59E6151C17FC8A951AAE628AD5144604 /* Debug */, + F09A6D7CC9773C049C6A39BA034D5C3A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F4810002DB77B51144466A59D46D6DB6 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { + C96DD47E92A8BE265E306DE07C36E79B /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager" */ = { isa = XCConfigurationList; buildConfigurations = ( - 14DDFCD7D393DF74FC985AA1FE333E5A /* Debug */, - 930539E85581CA2DA7E98A2B873B0723 /* Release */, + 482333FC5194F316A083B8BD78733009 /* Debug */, + C265306D8B7880C9F8C3230C6F0D8845 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F85D2CA8BD4AF8CF350B63803ADD3CEF /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification-IQTextInputViewNotification" */ = { + D99C2FEB34DC0FFE7CC96B41DE3ECD52 /* Build configuration list for PBXNativeTarget "nanopb-nanopb_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0DCC6ED004FA82036460B8F899659ECF /* Debug */, - 2B4EA833227D4FFCEBEDF2667F017D2E /* Release */, + A2437AF994C576A0BC09DEB6B358FDCD /* Debug */, + 00910A45DCE133C0463108831C3E38D7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FA03436DBF5E9A5AB7D1C9927C448B72 /* Build configuration list for PBXNativeTarget "Pods-TVOSExampleAppUITests" */ = { + DA3FFFE83F01DFB3BFB7CBD2A71DEBA9 /* Build configuration list for PBXNativeTarget "IQKeyboardCore" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7379A3CCDEBFD11E812A0227DB8914B3 /* Debug */, - C42A7EA8BB1FB011AF2FAF2BA99D02FB /* Release */, + 3B5D70C6658E836308BD6369B370DF86 /* Debug */, + CA4609710386965DE58C51431F3CC911 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FC108A54F3AEB26B63215872F6D8EB1F /* Build configuration list for PBXNativeTarget "IQKeyboardCore-IQKeyboardCore" */ = { + EA89D444C04C30C7B3983F9BF5177E1D /* Build configuration list for PBXNativeTarget "JSONView" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8AD199A6F761DB9481969AB958D28097 /* Debug */, - 6350114DB9A621C5ACAB1B39414E86BE /* Release */, + EFE2E118643E7196A62B5E3039A9A4BA /* Debug */, + 943A7CFA488BFBE271756245EFDD4E71 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FD97DC7A1C9AF3E208869382240A78D0 /* Build configuration list for PBXNativeTarget "Wormholy" */ = { + FA03436DBF5E9A5AB7D1C9927C448B72 /* Build configuration list for PBXNativeTarget "Pods-TVOSExampleAppUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( - A96CB34ACBFCEC863EBCA57D6A3AAA36 /* Debug */, - 0BA694B25A1A32B5C3357DBF55E24E91 /* Release */, + 7379A3CCDEBFD11E812A0227DB8914B3 /* Debug */, + C42A7EA8BB1FB011AF2FAF2BA99D02FB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FEB284E8012F3FFD8996CCBC6DBF356D /* Build configuration list for PBXNativeTarget "GoogleUtilities-GoogleUtilities_Privacy" */ = { + FBF2F7551D15B3FBAB05A47254E9F869 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3FDAB971C5B0A8E5BC396C894DDAA334 /* Debug */, - D89C4F4880923BCC5C5DBBD1265B6D11 /* Release */, + 9EC4CCBDCB5B5BF7C22E557CB35BF1B1 /* Debug */, + 43375729AABF400BDED4230A9C92CB27 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FF39A522B38942441F5BDB892784EFD6 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift" */ = { + FD97DC7A1C9AF3E208869382240A78D0 /* Build configuration list for PBXNativeTarget "Wormholy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 09576C7050EB76645356B9FBBDD8098C /* Debug */, - 4691590DDBE1EDA4AC53A2C5A0DF6637 /* Release */, + A96CB34ACBFCEC863EBCA57D6A3AAA36 /* Debug */, + 0BA694B25A1A32B5C3357DBF55E24E91 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FFD993A224362408C8FC8D8FD44A3A3C /* Build configuration list for PBXNativeTarget "Pods-Tests-AuthExampleUITests" */ = { + FF39A522B38942441F5BDB892784EFD6 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift" */ = { isa = XCConfigurationList; buildConfigurations = ( - 552A9D715084D83408A0420187F1159A /* Debug */, - FA11E5095A337B9D47CF168754877FC7 /* Release */, + 09576C7050EB76645356B9FBBDD8098C /* Debug */, + 4691590DDBE1EDA4AC53A2C5A0DF6637 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/Example/Pods/Quick/README.md b/Example/Pods/Quick/README.md index 98dbdec21..af35f2062 100644 --- a/Example/Pods/Quick/README.md +++ b/Example/Pods/Quick/README.md @@ -17,7 +17,7 @@ import Quick import Nimble class TableOfContentsSpec: QuickSpec { - override func spec() { + override class func spec() { describe("the 'Documentation' directory") { it("has everything you need to get started") { let sections = Directory("Documentation").sections @@ -51,7 +51,7 @@ Certain versions of Quick and Nimble only support certain versions of Swift. Dep ## Documentation -All documentation can be found in the [Documentation folder](./Documentation), including [detailed installation instructions](./Documentation/en-us/InstallingQuick.md) for CocoaPods, Carthage, Git submodules, and more. For example, you can install Quick and [Nimble](https://github.com/Quick/Nimble) using CocoaPods by adding the following to your Podfile: +All documentation can be found in the [Documentation folder](./Documentation), including [detailed installation instructions](./Documentation/en-us/InstallingQuick.md) for CocoaPods, Carthage, Git submodules, Swift Package Manager, and more. For example, you can install Quick and [Nimble](https://github.com/Quick/Nimble) using CocoaPods by adding the following to your `Podfile`: ```rb # Podfile @@ -61,10 +61,8 @@ use_frameworks! target "MyApp" do # Normal libraries - abstract_target 'Tests' do + target 'MyApp_Tests' do inherit! :search_paths - target "MyAppTests" - target "MyAppUITests" pod 'Quick' pod 'Nimble' @@ -72,6 +70,15 @@ target "MyApp" do end ``` +You can also install Quick and Nimble using Swift Package Manager by adding the following to the dependencies section your `Package.swift`: + +```swift +dependencies: [ + .package(url: "https://github.com/Quick/Quick.git", from: "7.0.0"), + .package(url: "https://github.com/Quick/Nimble.git", from: "12.0.0"), +], +``` + ## Projects using Quick Over ten-thousand apps use either Quick and Nimble however, as they are not included in the app binary, neither appear in “Top Used Libraries” blog posts. Therefore, it would be greatly appreciated to remind contributors that their efforts are valued by compiling a list of organizations and projects that use them. @@ -84,6 +91,12 @@ Similar to projects using Quick, it would be nice to hear why people use Quick a Have something positive to say about Quick (or Nimble)? If yes, [provide a testimonial here](https://github.com/Quick/Quick/wiki/Who-uses-Quick). +## Privacy Statement + +Quick is a library that is only used for testing and should never be included in the binary submitted to App Store Connect. +Your app will be rejected if you do include Quick in the submitted binary because Quick uses private APIs to better integrate with Xcode. + +Despite not being shipped to Apple, Quick does not and will never collect any kind of analytics or tracking. ## License diff --git a/Example/Pods/Quick/Sources/Quick/Async/AsyncBehavior.swift b/Example/Pods/Quick/Sources/Quick/Async/AsyncBehavior.swift new file mode 100644 index 000000000..6b729455b --- /dev/null +++ b/Example/Pods/Quick/Sources/Quick/Async/AsyncBehavior.swift @@ -0,0 +1,19 @@ +/// A `Behavior` encapsulates a set of examples that can be re-used in several locations using the `itBehavesLike` +/// function with a context instance of the generic type. +open class AsyncBehavior { + + /** + Override this variable if you want to provide custom name for this example group. + */ + open class var name: String { return String(describing: self) } + + /** + Override this method in your behavior to define a set of reusable examples. + + This behaves just like an example group defines using `describe` or `context`--it may contain any number of `beforeEach` + and `afterEach` closures, as well as any number of examples (defined using `it`). + + - parameter aContext: A closure that, when evaluated, returns a `Context` instance that provide the information on the subject. + */ + open class func spec(_ aContext: @escaping () -> Context) {} +} diff --git a/Example/Pods/Quick/Sources/Quick/Async/AsyncExampleGroup.swift b/Example/Pods/Quick/Sources/Quick/Async/AsyncExampleGroup.swift new file mode 100644 index 000000000..122c05bd5 --- /dev/null +++ b/Example/Pods/Quick/Sources/Quick/Async/AsyncExampleGroup.swift @@ -0,0 +1,112 @@ +import Foundation + +private enum ExampleUnit { + case example(AsyncExample) + case group(AsyncExampleGroup) +} + +/** + Example groups are logical groupings of examples, defined with + the `describe` and `context` functions. Example groups can share + setup and teardown code. +*/ +final public class AsyncExampleGroup: CustomStringConvertible { + weak internal var parent: AsyncExampleGroup? + internal let hooks = AsyncExampleHooks() + + internal var phase: HooksPhase = .nothingExecuted + + private let internalDescription: String + private let flags: FilterFlags + private let isInternalRootExampleGroup: Bool + private var childUnits = [ExampleUnit]() + + internal init(description: String, flags: FilterFlags, isInternalRootExampleGroup: Bool = false) { + self.internalDescription = description + self.flags = flags + self.isInternalRootExampleGroup = isInternalRootExampleGroup + } + + public var description: String { + return internalDescription + } + + /** + Returns a list of examples that belong to this example group, + or to any of its descendant example groups. + */ + public var examples: [AsyncExample] { + childUnits.flatMap { unit in + switch unit { + case .example(let example): + return [example] + case .group(let exampleGroup): + return exampleGroup.examples + } + } + } + + internal var name: String? { + guard let parent = parent else { + return isInternalRootExampleGroup ? nil : description + } + + guard let name = parent.name else { return description } + return "\(name), \(description)" + } + + internal var filterFlags: FilterFlags { + var aggregateFlags = flags + walkUp { group in + for (key, value) in group.flags { + aggregateFlags[key] = value + } + } + return aggregateFlags + } + + internal var justBeforeEachStatements: [AroundExampleWithMetadataAsyncClosure] { + var closures = Array(hooks.justBeforeEachStatements.reversed()) + walkUp { group in + closures.append(contentsOf: group.hooks.justBeforeEachStatements.reversed()) + } + return closures + } + + internal var wrappers: [AroundExampleWithMetadataAsyncClosure] { + var closures = Array(hooks.wrappers.reversed()) + walkUp { group in + closures.append(contentsOf: group.hooks.wrappers.reversed()) + } + return closures + } + + internal func walkDownExamples(_ callback: (_ example: AsyncExample) -> Void) { + for unit in childUnits { + switch unit { + case .example(let example): + callback(example) + case .group(let exampleGroup): + exampleGroup.walkDownExamples(callback) + } + } + } + + internal func appendExampleGroup(_ group: AsyncExampleGroup) { + group.parent = self + childUnits.append(.group(group)) + } + + internal func appendExample(_ example: AsyncExample) { + example.group = self + childUnits.append(.example(example)) + } + + private func walkUp(_ callback: (_ group: AsyncExampleGroup) -> Void) { + var group = self + while let parent = group.parent { + callback(parent) + group = parent + } + } +} diff --git a/Example/Pods/Quick/Sources/Quick/Async/AsyncSpec.swift b/Example/Pods/Quick/Sources/Quick/Async/AsyncSpec.swift new file mode 100644 index 000000000..ec2a94598 --- /dev/null +++ b/Example/Pods/Quick/Sources/Quick/Async/AsyncSpec.swift @@ -0,0 +1,152 @@ +import XCTest + +#if canImport(QuickObjCRuntime) +import QuickObjCRuntime + +public typealias AsyncSpecBase = _QuickSpecBase +#else +public typealias AsyncSpecBase = XCTestCase +#endif + +open class AsyncSpec: AsyncSpecBase { + /// Returns the currently executing spec. Use in specs that require XCTestCase + /// methods, e.g. expectation(description:). + /// + /// If you're using `beforeSuite`/`afterSuite`, you should consider the ``currentSpec()`` helper. + public private(set) static var current: AsyncSpec! + + private var example: AsyncExample? { + didSet { + AsyncSpec.current = self + } + } + + open class func spec() {} + +#if canImport(Darwin) + /// This method is used as a hook for the following two purposes + /// + /// 1. Performing all configurations + /// 2. Gathering examples for each spec classes + /// + /// On Linux, those are done in `LinuxMain.swift` and `Quick.QCKMain`. But + /// SwiftPM on macOS does not have the mechanism (test cases are automatically + /// discovered powered by Objective-C runtime), so we needed the alternative + /// way. + override open class var defaultTestSuite: XCTestSuite { + QuickConfiguration.configureSubclassesIfNeeded(world: World.sharedWorld) + + // Let's gather examples for each spec classes. This has the same effect + // as listing spec classes in `LinuxMain.swift` on Linux. + gatherExamplesIfNeeded() + + return super.defaultTestSuite + } + + @objc + class func buildExamplesIfNeeded() { + gatherExamplesIfNeeded() + } + + /// This method is used as a hook for injecting test methods into the + /// Objective-C runtime on individual test runs. + /// + /// When `xctest` runs a test on a single method, it does not call + /// `defaultTestSuite` on the test class but rather calls + /// `instancesRespondToSelector:` to build its own suite. + /// + /// In normal conditions, Quick uses the implicit call to `defaultTestSuite` + /// to both generate examples and inject them as methods by way of + /// `testInvocations`. Under single test conditions, there's no implicit + /// call to `defaultTestSuite` so we make it explicitly here. + open override class func instancesRespond(to aSelector: Selector!) -> Bool { + _ = self.defaultTestSuite + return super.instancesRespond(to: aSelector) + } + +#if SWIFT_PACKAGE + open override class func _qck_testMethodSelectors() -> [String] { + darwinXCTestMethodSelectors() + } +#endif // SWIFT_PACKAGE + + @objc + internal class func darwinXCTestMethodSelectors() -> [String] { + let examples = AsyncWorld.sharedWorld.examples(forSpecClass: self) + + var selectorNames = Set() + return examples.map { test in + let selector = addInstanceMethod(for: test.example, runFullTest: test.runFullTest, classSelectorNames: &selectorNames) + return NSStringFromSelector(selector) + } + } + + private static func addInstanceMethod(for example: AsyncExample, runFullTest: Bool, classSelectorNames selectorNames: inout Set) -> Selector { + let block: @convention(block) (AsyncSpec, @escaping () -> Void) -> Void = { spec, completionHandler in + Task { + spec.example = example + if runFullTest { + await example.run() + } else { + await example.runSkippedTest() + } + AsyncSpec.current = nil + completionHandler() + } + } + let implementation = imp_implementationWithBlock(block as Any) + + let selectorName = TestSelectorNameProvider.testSelectorName(forAsync: example, classSelectorNames: selectorNames) + + selectorNames.insert(selectorName) + + let selector = NSSelectorFromString(selectorName) + class_addMethod(self, selector, implementation, "v@:@?") + + return selector + } +#endif // canImport(Darwin) + +#if !canImport(Darwin) + public required init() { + super.init(name: "", testClosure: { _ in }) + } + + public required init(name: String, testClosure: @escaping (XCTestCase) throws -> Swift.Void) { + super.init(name: name, testClosure: testClosure) + } + + public class var allTests: [(String, (AsyncSpec) -> () throws -> Void)] { + gatherExamplesIfNeeded() + + let tests = AsyncWorld.sharedWorld.examples(forSpecClass: self) + + let result = tests.map { (example, runFullTest) -> (String, (AsyncSpec) -> () throws -> Void) in + return (example.name, asyncTest { spec in + return { + spec.example = example + if runFullTest { + await example.run() + } else { + await example.runSkippedTest() + } + AsyncSpec.current = nil + } + }) + } + return result + } +#endif // !canImport(Darwin) + + internal static func gatherExamplesIfNeeded() { + let world = AsyncWorld.sharedWorld + let rootExampleGroup = world.rootExampleGroup(forSpecClass: self) + guard rootExampleGroup.examples.isEmpty else { + return + } + + world.performWithCurrentExampleGroup(rootExampleGroup) { + self.spec() + } + } +} diff --git a/Example/Pods/Quick/Sources/Quick/Async/AsyncWorld.swift b/Example/Pods/Quick/Sources/Quick/Async/AsyncWorld.swift new file mode 100644 index 000000000..b3ba6441c --- /dev/null +++ b/Example/Pods/Quick/Sources/Quick/Async/AsyncWorld.swift @@ -0,0 +1,233 @@ +import Foundation + +/** + A collection of state Quick builds up in order to work its magic. + + AsyncWorld is primarily responsible for maintaining a mapping of AsyncSpec + classes to root example groups for those classes. + + AsyncWorld is the equivalent of World for AsyncSpec. + + It also maintains a mapping of shared example names to shared + example closures. + + You may configure how Quick behaves by calling the `AsyncWorld.configure(_:)` + method from within an overridden `class QuickConfiguration.configure(_:)` method. +*/ +final internal class AsyncWorld: _WorldBase { + /** + The example group that is currently being run. + The DSL requires that this group is correctly set in order to build a + correct hierarchy of example groups and their examples. + */ + internal var currentExampleGroup: AsyncExampleGroup! + + /** + The example metadata of the test that is currently being run. + This is useful for using the Quick test metadata (like its name) at + runtime. + */ + + internal var currentExampleMetadata: AsyncExampleMetadata? + + internal var numberOfAsyncExamplesRun = 0 + + /** + A flag that indicates whether additional test suites are being run + within this test suite. This is only true within the context of Quick + functional tests. + */ + internal var isRunningAdditionalSuites = false + + private var specs: [String: AsyncExampleGroup] = [:] + private let configuration = QCKConfiguration() + + internal private(set) var isConfigurationFinalized = false + + internal var exampleHooks: AsyncExampleHooks { return World.sharedWorld.asyncExampleHooks } + internal var suiteHooks: SuiteHooks { return World.sharedWorld.suiteHooks } + + // MARK: Singleton Constructor + + private override init() {} + + static private(set) var sharedWorld = AsyncWorld() + + internal static func anotherWorld(block: (AsyncWorld) -> T) -> T { + let previous = sharedWorld + defer { sharedWorld = previous } + return World.anotherWorld { _ in + let newWorld = AsyncWorld() + sharedWorld = newWorld + return block(newWorld) + } + } + + // MARK: Public Interface + + /** + Exposes the World's QCKConfiguration object within the scope of the closure + so that it may be configured. This method must not be called outside of + an overridden `class QuickConfiguration.configure(_:)` method. + + - parameter closure: A closure that takes a Configuration object that can + be mutated to change Quick's behavior. + */ + internal func configure(_ closure: QuickConfigurer) { + assert( + !isConfigurationFinalized, + // swiftlint:disable:next line_length + "Quick cannot be configured outside of a `class QuickConfiguration.configure(_:)` method. You should not call `AsyncWorld.configure(_:)` directly. Instead, subclass QuickConfiguration and override the `class QuickConfiguration.configure(_:)` method." + ) + closure(configuration) + } + + /** + Finalizes the World's configuration. + Any subsequent calls to World.configure() will raise. + */ + internal func finalizeConfiguration() { + isConfigurationFinalized = true + } + + /** + Returns `true` if the root example group for the given spec class has been already initialized. + + - parameter specClass: The QuickSpec class for which is checked for the existing root example group. + - returns: Whether the root example group for the given spec class has been already initialized or not. + */ + internal func isRootExampleGroupInitialized(forSpecClass specClass: AsyncSpec.Type) -> Bool { + let name = String(describing: specClass) + return specs.keys.contains(name) + } + + /** + Returns an internally constructed root example group for the given + AsyncSpec class. + + A root example group with the description "root example group" is lazily + initialized for each AsyncSpec class. This root example group wraps the + top level of a `class AsyncSpec.spec()` method--it's thanks to this group that + users can define beforeEach and it closures at the top level, like so: + + override class func spec() { + // These belong to the root example group + beforeEach {} + it("is at the top level") {} + } + + - parameter specClass: The AsyncSpec class for which to retrieve the root example group. + - returns: The root example group for the class. + */ + internal func rootExampleGroup(forSpecClass specClass: AsyncSpec.Type) -> AsyncExampleGroup { + let name = String(describing: specClass) + + if let group = specs[name] { + return group + } else { + let group = AsyncExampleGroup( + description: "root example group", + flags: [:], + isInternalRootExampleGroup: true + ) + specs[name] = group + return group + } + } + + /** + Returns all examples that should be run for a given spec class. + There are two filtering passes that occur when determining which examples should be run. + That is, these examples are the ones that are included by inclusion filters, and are + not excluded by exclusion filters. + + - parameter specClass: The AsyncSpec subclass for which examples are to be returned. + - returns: A list of examples to be run as test invocations. + */ + internal func examples(forSpecClass specClass: AsyncSpec.Type) -> [(example: AsyncExample, runFullTest: Bool)] { + // 1. Grab all included examples. + let included = includedExamples() + // 2. Grab the intersection of (a) examples for this spec, and (b) included examples. + let spec = rootExampleGroup(forSpecClass: specClass).examples.map { example in + return ( + example: example, + runFullTest: included.first(where: { $0.example == example})?.runFullTest ?? true + ) + } + // 3. Remove all excluded examples. + return spec.map { test in + return ( + test.example, + test.runFullTest && !self.configuration.exclusionFilters.contains { $0(test.example) } + ) + } + } + + // MARK: Internal + + internal var includedExampleCount: Int { + return includedExamples().count + } + + internal lazy var cachedIncludedExampleCount: Int = self.includedExampleCount + + internal var beforesCurrentlyExecuting: Bool { + let suiteBeforesExecuting = suiteHooks.phase == .beforesExecuting + let exampleBeforesExecuting = exampleHooks.phase == .beforesExecuting + var groupBeforesExecuting = false + if let runningExampleGroup = currentExampleMetadata?.group { + groupBeforesExecuting = runningExampleGroup.phase == .beforesExecuting + } + + return suiteBeforesExecuting || exampleBeforesExecuting || groupBeforesExecuting + } + + internal var aftersCurrentlyExecuting: Bool { + let suiteAftersExecuting = suiteHooks.phase == .aftersExecuting + let exampleAftersExecuting = exampleHooks.phase == .aftersExecuting + var groupAftersExecuting = false + if let runningExampleGroup = currentExampleMetadata?.group { + groupAftersExecuting = runningExampleGroup.phase == .aftersExecuting + } + + return suiteAftersExecuting || exampleAftersExecuting || groupAftersExecuting + } + + internal func performWithCurrentExampleGroup(_ group: AsyncExampleGroup, closure: () -> Void) { + let previousExampleGroup = currentExampleGroup + currentExampleGroup = group + + closure() + + currentExampleGroup = previousExampleGroup + } + + private func allExamples() -> [AsyncExample] { + var all: [AsyncExample] = [] + for (_, group) in specs { + group.walkDownExamples { all.append($0) } + } + return all + } + + internal func hasFocusedExamples() -> Bool { + return allExamples().contains { example in + return self.configuration.inclusionFilters.contains { $0(example) } + } + } + + private func includedExamples() -> [(example: AsyncExample, runFullTest: Bool)] { + let all = allExamples() + let hasFocusedExamples = self.hasFocusedExamples() || World.sharedWorld.hasFocusedExamples() + + if !hasFocusedExamples && configuration.runAllWhenEverythingFiltered { + return all.map { example in + return (example, !self.configuration.exclusionFilters.contains { $0(example) }) + } + } else { + return all.map { example in + return (example, self.configuration.inclusionFilters.contains { $0(example) }) + } + } + } +} diff --git a/Example/Pods/Quick/Sources/Quick/Callsite.swift b/Example/Pods/Quick/Sources/Quick/Callsite.swift index 33e732ca5..502a9d5b1 100644 --- a/Example/Pods/Quick/Sources/Quick/Callsite.swift +++ b/Example/Pods/Quick/Sources/Quick/Callsite.swift @@ -14,7 +14,7 @@ public class _CallsiteBase: NSObject {} // stdlib, and because recent versions of the XCTest overlay require `StaticString` // when calling `XCTFail`. Under the Objective-C runtime (i.e. building on macOS), we // have to use `String` instead because StaticString can't be generated from Objective-C -#if SWIFT_PACKAGE +#if !canImport(Darwin) public typealias FileString = StaticString #else public typealias FileString = String diff --git a/Example/Pods/Quick/Sources/Quick/Configuration/QCKConfiguration.swift b/Example/Pods/Quick/Sources/Quick/Configuration/QCKConfiguration.swift index 35735a23c..01de90592 100644 --- a/Example/Pods/Quick/Sources/Quick/Configuration/QCKConfiguration.swift +++ b/Example/Pods/Quick/Sources/Quick/Configuration/QCKConfiguration.swift @@ -10,7 +10,7 @@ public typealias QuickConfigurer = (_ configuration: QCKConfiguration) -> Void A closure that, given metadata about an example, returns a boolean value indicating whether that example should be run. */ -public typealias ExampleFilter = (_ example: Example) -> Bool +public typealias ExampleFilter = (_ example: ExampleBase) -> Bool /** A configuration encapsulates various options you can use @@ -18,6 +18,7 @@ public typealias ExampleFilter = (_ example: Example) -> Bool */ final public class QCKConfiguration: NSObject { internal let exampleHooks = ExampleHooks() + internal let asyncExampleHooks = AsyncExampleHooks() internal let suiteHooks = SuiteHooks() internal var exclusionFilters: [ExampleFilter] = [ { example in // swiftlint:disable:this opening_brace @@ -75,15 +76,37 @@ final public class QCKConfiguration: NSObject { Identical to Quick.QCKConfiguration.beforeEach, except the closure is provided with metadata on the example that the closure is being run prior to. + + - Important: This automatically bridges between async and sync specs. When running on AsyncSpecs, this closure will run on the main actor. */ #if canImport(Darwin) @objc(beforeEachWithMetadata:) + public func objc_beforeEach(_ closure: @escaping BeforeExampleWithMetadataNonThrowingClosure) { + exampleHooks.appendBefore(closure) + asyncExampleHooks.appendBefore { exampleMetadata in + await MainActor.run { + closure(exampleMetadata) + } + } + } + + @nonobjc public func beforeEach(_ closure: @escaping BeforeExampleWithMetadataClosure) { exampleHooks.appendBefore(closure) + asyncExampleHooks.appendBefore { exampleMetadata in + try await MainActor.run { + try closure(exampleMetadata) + } + } } #else public func beforeEach(_ closure: @escaping BeforeExampleWithMetadataClosure) { exampleHooks.appendBefore(closure) + asyncExampleHooks.appendBefore { exampleMetadata in + try await MainActor.run { + try closure(exampleMetadata) + } + } } #endif @@ -103,24 +126,51 @@ final public class QCKConfiguration: NSObject { - parameter closure: The closure to be executed before each example in the test suite. + + - Important: This automatically bridges between async and sync specs. When running on AsyncSpecs, this closure will run on the main actor. */ public func beforeEach(_ closure: @escaping BeforeExampleClosure) { exampleHooks.appendBefore(closure) + asyncExampleHooks.appendBefore { @MainActor in + try closure() + } } /** Identical to Quick.QCKConfiguration.afterEach, except the closure is provided with metadata on the example that the closure is being run after. + + - Important: This automatically bridges between async and sync specs. When running on AsyncSpecs, this closure will run on the main actor. */ #if canImport(Darwin) @objc(afterEachWithMetadata:) + public func objc_afterEach(_ closure: @escaping AfterExampleWithMetadataNonThrowingClosure) { + exampleHooks.appendAfter(closure) + asyncExampleHooks.appendAfter { exampleMetadata in + await MainActor.run { + closure(exampleMetadata) + } + } + } + + @nonobjc public func afterEach(_ closure: @escaping AfterExampleWithMetadataClosure) { exampleHooks.appendAfter(closure) + asyncExampleHooks.appendAfter { exampleMetadata in + try await MainActor.run { + try closure(exampleMetadata) + } + } } #else public func afterEach(_ closure: @escaping AfterExampleWithMetadataClosure) { exampleHooks.appendAfter(closure) + asyncExampleHooks.appendAfter { exampleMetadata in + try await MainActor.run { + try closure(exampleMetadata) + } + } } #endif @@ -140,9 +190,14 @@ final public class QCKConfiguration: NSObject { - parameter closure: The closure to be executed before each example in the test suite. + + - Important: This automatically bridges between async and sync specs. When running on AsyncSpecs, this closure will run on the main actor. */ public func afterEach(_ closure: @escaping AfterExampleClosure) { exampleHooks.appendAfter(closure) + asyncExampleHooks.appendAfter { @MainActor in + try closure() + } } /** @@ -161,23 +216,70 @@ final public class QCKConfiguration: NSObject { - parameter closure: The closure to be executed before each example in the test suite. + + - warning: Unlike ``beforeEach`` and ``afterEach``, aroundEach does not automatically bridge between async and sync expectations. + + - SeeAlso: ``aroundEach(_:)-6ptvt`` for the async version. */ public func aroundEach(_ closure: @escaping AroundExampleClosure) { exampleHooks.appendAround(closure) } /** - Identical to Quick.QCKConfiguration.aroundEach, except the closure receives + Like Quick.DSL.aroundEach, this configures Quick to wrap each example + with the given closure. The closure passed to this method will wrap + all examples globally across the test suite. You may call this method + multiple times across multiple +[QuickConfigure configure:] methods in + order to define several closures to wrap all examples. + + Note that, since Quick makes no guarantee as to the order in which + +[QuickConfiguration configure:] methods are evaluated, there is no + guarantee as to the order in which aroundEach closures are evaluated. + However, aroundEach does always guarantee proper nesting of operations: + cleanup within aroundEach closures will always happen in the reverse order + of setup. + + - parameter closure: The closure to be executed before each example + in the test suite. + + - warning: Unlike ``beforeEach`` and ``afterEach``, aroundEach does not automatically bridge between async and sync expectations. + + - SeeAlso: ``aroundEach(_:)-5z8vj`` for the sync version. + */ + public func aroundEach(_ closure: @escaping AroundExampleAsyncClosure) { + asyncExampleHooks.appendAround(closure) + } + + /** + Identical to ``aroundEach(_:)-5z8vj``, except the closure receives metadata about the example that the closure wraps. + + - warning: Unlike ``beforeEach`` and ``afterEach``, aroundEach does not automatically bridge between async and sync expectations. + + - SeeAlso: ``aroundEach(_:)-2xmgx`` for the async version. */ public func aroundEach(_ closure: @escaping AroundExampleWithMetadataClosure) { exampleHooks.appendAround(closure) } + /** + Identical to ``aroundEach(_:)-6ptvt``, except the closure receives + metadata about the example that the closure wraps. + + - warning: Unlike ``beforeEach`` and ``afterEach``, aroundEach does not automatically bridge between async and sync expectations. + + - SeeAlso: ``aroundEach(_:)-2xmgx`` for the sync version. + */ + public func aroundEach(_ closure: @escaping AroundExampleWithMetadataAsyncClosure) { + asyncExampleHooks.appendAround(closure) + } + /** Like Quick.DSL.beforeSuite, this configures Quick to execute the given closure prior to any and all examples that are run. The two methods are functionally equivalent. + + - Important: This automatically bridges between async and sync specs. When running on AsyncSpecs, this closure will run on the main actor. */ public func beforeSuite(_ closure: @escaping BeforeSuiteClosure) { suiteHooks.appendBefore(closure) @@ -187,6 +289,8 @@ final public class QCKConfiguration: NSObject { Like Quick.DSL.afterSuite, this configures Quick to execute the given closure after all examples have been run. The two methods are functionally equivalent. + + - Important: This automatically bridges between async and sync specs. When running on AsyncSpecs, this closure will run on the main actor. */ public func afterSuite(_ closure: @escaping AfterSuiteClosure) { suiteHooks.appendAfter(closure) diff --git a/Example/Pods/Quick/Sources/Quick/Configuration/QuickConfiguration.swift b/Example/Pods/Quick/Sources/Quick/Configuration/QuickConfiguration.swift index 6cc4481f5..a1e879e95 100644 --- a/Example/Pods/Quick/Sources/Quick/Configuration/QuickConfiguration.swift +++ b/Example/Pods/Quick/Sources/Quick/Configuration/QuickConfiguration.swift @@ -3,51 +3,35 @@ import XCTest #if SWIFT_PACKAGE +/** + Subclass QuickConfiguration and override the `configure(_:)` class + method in order to configure how Quick behaves when running specs, or to define + shared examples that are used across spec files. + */ open class QuickConfiguration: NSObject { + /** + This method is executed on each subclass of this class before Quick runs + any examples. You may override this method on as many subclasses as you like, but + there is no guarantee as to the order in which these methods are executed. + + You can override this method in order to: + + 1. Configure how Quick behaves, by modifying properties on the Configuration object. + Setting the same properties in several methods has undefined behavior. + + 2. Define shared examples using `sharedExamples`. + + - Parameter configuration: A mutable object that is used to configure how Quick behaves on + a framework level. For details on all the options, see the + documentation in QCKConfiguration.swift. + */ open class func configure(_ configuration: QCKConfiguration) {} } #endif extension QuickConfiguration { - #if !canImport(Darwin) private static var configurationSubclasses: [QuickConfiguration.Type] = [] - #endif - - /// Finds all direct subclasses of QuickConfiguration and passes them to the block provided. - /// The classes are iterated over in the order that objc_getClassList returns them. - /// - /// - parameter block: A block that takes a QuickConfiguration.Type. - /// This block will be executed once for each subclass of QuickConfiguration. - private static func enumerateSubclasses(_ block: (QuickConfiguration.Type) -> Void) { - #if canImport(Darwin) - let classesCount = objc_getClassList(nil, 0) - - guard classesCount > 0 else { - return - } - - let classes = UnsafeMutablePointer.allocate(capacity: Int(classesCount)) - defer { free(classes) } - - let autoreleasingClasses = AutoreleasingUnsafeMutablePointer(classes) - objc_getClassList(autoreleasingClasses, classesCount) - - var configurationSubclasses: [QuickConfiguration.Type] = [] - for index in 0.. XCTestCase? { + QuickSpec.current ?? AsyncSpec.current +} diff --git a/Example/Pods/Quick/Sources/Quick/DSL/AsyncDSL.swift b/Example/Pods/Quick/Sources/Quick/DSL/AsyncDSL.swift new file mode 100644 index 000000000..b6f8c7b35 --- /dev/null +++ b/Example/Pods/Quick/Sources/Quick/DSL/AsyncDSL.swift @@ -0,0 +1,289 @@ +// swiftlint:disable line_length + +/// A protocol for defining the synchronous DSL usable from Quick synchronous specs. +public protocol AsyncDSLUser {} + +extension AsyncSpec: AsyncDSLUser {} +extension AsyncBehavior: AsyncDSLUser {} + +extension AsyncDSLUser { + // MARK: - beforeSuite + /** + Defines a closure to be run prior to any examples in the test suite. + You may define an unlimited number of these closures, but there is no + guarantee as to the order in which they're run. + + If the test suite crashes before the first example is run, this closure + will not be executed. + + beforeSuite intentionally does not allow async methods to be called. This is to ensure that in a mixed synchronous & asynchronous environment, beforeSuite hooks are truly called before any tests in the the suite run. + + - parameter closure: The closure to be run prior to any examples in the test suite. + */ + public static func beforeSuite(_ closure: @escaping BeforeSuiteClosure) { + World.sharedWorld.beforeSuite(closure) + } + + // MARK: - afterSuite + /** + Defines a closure to be run after all of the examples in the test suite. + You may define an unlimited number of these closures, but there is no + guarantee as to the order in which they're run. + + If the test suite crashes before all examples are run, this closure + will not be executed. + + afterSuite intentionally does not allow async methods to be called. This is to ensure that in a mixed synchronous & asynchronous environment, beforeSuite hooks are truly called after all tests in the the suite have run. + + - parameter closure: The closure to be run after all of the examples in the test suite. + */ + public static func afterSuite(_ closure: @escaping AfterSuiteClosure) { + World.sharedWorld.afterSuite(closure) + } + + // MARK: - Example groups + /** + Defines an example group. Example groups are logical groupings of examples. + Example groups can share setup and teardown code. + + - parameter description: An arbitrary string describing the example group. + - parameter closure: A closure that can contain other examples. + */ + public static func describe(_ description: String, closure: () -> Void) { + AsyncWorld.sharedWorld.describe(description, closure: closure) + } + + /** + Defines an example group. Equivalent to `describe`. + */ + public static func context(_ description: String, closure: () -> Void) { + AsyncWorld.sharedWorld.context(description, closure: closure) + } + + // MARK: - beforeEach + /** + Defines a closure to be run prior to each example in the current example + group. This closure is not run for pending or otherwise disabled examples. + An example group may contain an unlimited number of beforeEach. They'll be + run in the order they're defined, but you shouldn't rely on that behavior. + + - parameter closure: The closure to be run prior to each example. + */ + public static func beforeEach(_ closure: @escaping BeforeExampleAsyncClosure) { + AsyncWorld.sharedWorld.beforeEach(closure) + } + + /** + Identical to Quick.DSL.beforeEach, except the closure is provided with + metadata on the example that the closure is being run prior to. + */ + public static func beforeEach(_ closure: @escaping BeforeExampleWithMetadataAsyncClosure) { + AsyncWorld.sharedWorld.beforeEach(closure: closure) + } + + // MARK: - AfterEach + /** + Defines a closure to be run after each example in the current example + group. This closure is not run for pending or otherwise disabled examples. + An example group may contain an unlimited number of afterEach. They'll be + run in the order they're defined, but you shouldn't rely on that behavior. + + - parameter closure: The closure to be run after each example. + */ + public static func afterEach(_ closure: @escaping AfterExampleAsyncClosure) { + AsyncWorld.sharedWorld.afterEach(closure) + } + + /** + Identical to Quick.DSL.afterEach, except the closure is provided with + metadata on the example that the closure is being run after. + */ + public static func afterEach(_ closure: @escaping AfterExampleWithMetadataAsyncClosure) { + AsyncWorld.sharedWorld.afterEach(closure: closure) + } + + // MARK: - aroundEach + /** + Defines a closure to that wraps each example in the current example + group. This closure is not run for pending or otherwise disabled examples. + + The closure you pass to aroundEach receives a callback as its argument, which + it MUST call exactly one for the example to run properly: + + aroundEach { runExample in + doSomeSetup() + runExample() + doSomeCleanup() + } + + This callback is particularly useful for test decartions that can’t split + into a separate beforeEach and afterEach. For example, running each example + in its own autorelease pool (provided by Task) requires aroundEach: + + aroundEach { runExample in + autoreleasepool { + runExample() + } + checkObjectsNoLongerRetained() + } + + You can also use aroundEach to guarantee proper nesting of setup and cleanup + operations in situations where their relative order matters. + + An example group may contain an unlimited number of aroundEach callbacks. + They will nest inside each other, with the first declared in the group + nested at the outermost level. + + - parameter closure: The closure that wraps around each example. + */ + public static func aroundEach(_ closure: @escaping AroundExampleAsyncClosure) { + AsyncWorld.sharedWorld.aroundEach(closure) + } + + /** + Identical to Quick.DSL.aroundEach, except the closure receives metadata + about the example that the closure wraps. + */ + public static func aroundEach(_ closure: @escaping AroundExampleWithMetadataAsyncClosure) { + AsyncWorld.sharedWorld.aroundEach(closure) + } + + // MARK: - Examples + /** + Defines a closure to be run prior to each example but after any beforeEach blocks. + This closure is not run for pending or otherwise disabled examples. + An example group may contain an unlimited number of justBeforeEach. They'll be + run in the order they're defined, but you shouldn't rely on that behavior. + + - parameter closure: The closure to be run prior to each example and after any beforeEach blocks + */ + + public static func justBeforeEach(_ closure: @escaping BeforeExampleAsyncClosure) { + AsyncWorld.sharedWorld.justBeforeEach(closure) + } + + /** + Defines an example. Examples use assertions to demonstrate how code should + behave. These are like "tests" in XCTest. + + - parameter description: An arbitrary string describing what the example is meant to specify. + - parameter closure: A closure that can contain assertions. + - parameter file: The absolute path to the file containing the example. A sensible default is provided. + - parameter line: The line containing the example. A sensible default is provided. + */ + public static func it(_ description: String, file: FileString = #file, line: UInt = #line, closure: @escaping () async throws -> Void) { + AsyncWorld.sharedWorld.it(description, file: file, line: line, closure: closure) + } + + // MARK: - Shared Examples + /** + Inserts the examples defined using a ``AsyncBehavior`` into the current example group. + The shared examples are executed at this location, as if they were written out manually. + This function also passes a strongly-typed context that can be evaluated to give the shared examples extra information on the subject of the example. + + - parameter behavior: The type of ``AsyncBehavior`` class defining the example group to be executed. + - parameter context: A closure that, when evaluated, returns an instance of `Behavior`'s context type to provide its example group with extra information on the subject of the example. + - parameter file: The absolute path to the file containing the current example group. A sensible default is provided. + - parameter line: The line containing the current example group. A sensible default is provided. + */ + public static func itBehavesLike(_ behavior: AsyncBehavior.Type, file: FileString = #file, line: UInt = #line, context: @escaping () -> C) { + AsyncWorld.sharedWorld.itBehavesLike(behavior, context: context, file: file, line: line) + } + + /** + In the Synchronous DSL, `sharedExamples` offers an untyped way to define + a group of shared examples that can be re-used in several locations using `itBehavesLike`. + + In Quick 7, we decided to remove support for `sharedExamples` in the Asynchronous DSL. Please use the typed `Behavior` DSL in place of `sharedExamples` + */ + @available(*, unavailable, message: "sharedExamples is unavailable in Quick's Async DSL. Please migrate to the Behvavior DSL, which offers type-safety for the injected configuration.") + public static func sharedExamples(_ name: String, closure: @escaping () -> Void) {} + + /** + In the Synchronous DSL, `sharedExamples` offers an untyped way to define + a group of shared examples that can be re-used in several locations using `itBehavesLike`. + + In Quick 7, we decided to remove support for `sharedExamples` in the Asynchronous DSL. Please use the typed `Behavior` DSL in place of `sharedExamples` + */ + @available(*, unavailable, message: "sharedExamples is unavailable in Quick's Async DSL. Please migrate to the Behvavior DSL, which offers type-safety for the injected configuration.") + public static func sharedExamples(_ name: String, closure: @escaping SharedExampleClosure) {} + + // MARK: - Pending + /** + Defines an example or example group that should not be executed. Use `pending` to temporarily disable + examples or groups that should not be run yet. + + - parameter description: An arbitrary string describing the example or example group. + - parameter closure: A closure that will not be evaluated. + */ + public static func pending(_ description: String, file: FileString = #file, line: UInt = #line, closure: @escaping () async throws -> Void) { + AsyncWorld.sharedWorld.pending(description, file: file, line: line, closure: closure) + } + + // MARK: - Defocused + /** + Use this to quickly mark a `describe` closure as pending. + This disables all examples within the closure. + */ + public static func xdescribe(_ description: String, closure: () -> Void) { + AsyncWorld.sharedWorld.xdescribe(description, closure: closure) + } + + /** + Use this to quickly mark a `context` closure as pending. + This disables all examples within the closure. + */ + public static func xcontext(_ description: String, closure: () -> Void) { + xdescribe(description, closure: closure) + } + + /** + Use this to quickly mark an `it` closure as pending. + This disables the example and ensures the code within the closure is never run. + */ + public static func xit(_ description: String, file: FileString = #file, line: UInt = #line, closure: @escaping () async throws -> Void) { + AsyncWorld.sharedWorld.xit(description, file: file, line: line, closure: closure) + } + + /** + Use this to quickly mark an `itBehavesLike` closure as pending. + This disables the example group defined by this behavior and ensures the code within is never run. + */ + public static func xitBehavesLike(_ behavior: AsyncBehavior.Type, file: FileString = #file, line: UInt = #line, context: @escaping () -> C) { + AsyncWorld.sharedWorld.xitBehavesLike(behavior, context: context, file: file, line: line) + } + + // MARK: - Focused + /** + Use this to quickly focus a `describe` closure, focusing the examples in the closure. + If any examples in the test suite are focused, only those examples are executed. + This trumps any explicitly focused or unfocused examples within the closure--they are all treated as focused. + */ + public static func fdescribe(_ description: String, closure: () -> Void) { + AsyncWorld.sharedWorld.fdescribe(description, closure: closure) + } + + /** + Use this to quickly focus a `context` closure. Equivalent to `fdescribe`. + */ + public static func fcontext(_ description: String, closure: () -> Void) { + fdescribe(description, closure: closure) + } + + /** + Use this to quickly focus an `it` closure, focusing the example. + If any examples in the test suite are focused, only those examples are executed. + */ + public static func fit(_ description: String, file: FileString = #file, line: UInt = #line, closure: @escaping () async throws -> Void) { + AsyncWorld.sharedWorld.fit(description, file: file, line: line, closure: closure) + } + + /** + Use this to quickly focus on `itBehavesLike` closure. + */ + public static func fitBehavesLike(_ behavior: AsyncBehavior.Type, file: FileString = #file, line: UInt = #line, context: @escaping () -> C) { + AsyncWorld.sharedWorld.fitBehavesLike(behavior, context: context, file: file, line: line) + } +} + +// swiftlint:enable line_length diff --git a/Example/Pods/Quick/Sources/Quick/DSL/AsyncWorld+DSL.swift b/Example/Pods/Quick/Sources/Quick/DSL/AsyncWorld+DSL.swift new file mode 100644 index 000000000..d365eb654 --- /dev/null +++ b/Example/Pods/Quick/Sources/Quick/DSL/AsyncWorld+DSL.swift @@ -0,0 +1,163 @@ +import Foundation + +/** + Adds methods to World to support top-level DSL functions. These functions map directly to the DSL that test + writers use in their specs. +*/ +extension AsyncWorld { + // MARK: - Example groups. + @nonobjc + internal func describe(_ description: String, flags: FilterFlags = [:], closure: () -> Void) { + guard currentExampleMetadata == nil else { + raiseError("'describe' cannot be used inside '\(currentPhase)', 'describe' may only be used inside 'context' or 'describe'.") + } + guard currentExampleGroup != nil else { + // swiftlint:disable:next line_length + raiseError("Error: example group was not created by its parent QuickSpec spec. Check that describe() or context() was used in QuickSpec.spec() and not a more general context (i.e. an XCTestCase test)") + } + let group = AsyncExampleGroup(description: description, flags: flags) + currentExampleGroup.appendExampleGroup(group) + performWithCurrentExampleGroup(group, closure: closure) + } + + @nonobjc + internal func context(_ description: String, flags: FilterFlags = [:], closure: () -> Void) { + guard currentExampleMetadata == nil else { + raiseError("'context' cannot be used inside '\(currentPhase)', 'context' may only be used inside 'context' or 'describe'.") + } + self.describe(description, flags: flags, closure: closure) + } + + @nonobjc + internal func fdescribe(_ description: String, closure: () -> Void) { + self.describe(description, flags: [Filter.focused: true], closure: closure) + } + + @nonobjc + internal func xdescribe(_ description: String, closure: () -> Void) { + self.describe(description, flags: [Filter.pending: true], closure: closure) + } + + // MARK: - Just Before Each + internal func justBeforeEach(_ closure: @escaping BeforeExampleAsyncClosure) { + guard currentExampleMetadata == nil else { + raiseError("'justBeforeEach' cannot be used inside '\(currentPhase)', 'justBeforeEach' may only be used inside 'context' or 'describe'.") + } + currentExampleGroup.hooks.appendJustBeforeEach(closure) + } + + // MARK: - Before Each + internal func beforeEach(closure: @escaping BeforeExampleWithMetadataAsyncClosure) { + guard currentExampleMetadata == nil else { + raiseError("'beforeEach' cannot be used inside '\(currentPhase)', 'beforeEach' may only be used inside 'context' or 'describe'.") + } + currentExampleGroup.hooks.appendBefore(closure) + } + + internal func beforeEach(_ closure: @escaping BeforeExampleAsyncClosure) { + guard currentExampleMetadata == nil else { + raiseError("'beforeEach' cannot be used inside '\(currentPhase)', 'beforeEach' may only be used inside 'context' or 'describe'.") + } + currentExampleGroup.hooks.appendBefore(closure) + } + + // MARK: - After Each + internal func afterEach(closure: @escaping AfterExampleWithMetadataAsyncClosure) { + guard currentExampleMetadata == nil else { + raiseError("'afterEach' cannot be used inside '\(currentPhase)', 'afterEach' may only be used inside 'context' or 'describe'.") + } + currentExampleGroup.hooks.appendAfter(closure) + } + + internal func afterEach(_ closure: @escaping AfterExampleAsyncClosure) { + guard currentExampleMetadata == nil else { + raiseError("'afterEach' cannot be used inside '\(currentPhase)', 'afterEach' may only be used inside 'context' or 'describe'.") + } + currentExampleGroup.hooks.appendAfter(closure) + } + + // MARK: - Around Each + internal func aroundEach(_ closure: @escaping AroundExampleAsyncClosure) { + guard currentExampleMetadata == nil else { + raiseError("'aroundEach' cannot be used inside '\(currentPhase)', 'aroundEach' may only be used inside 'context' or 'describe'. ") + } + currentExampleGroup.hooks.appendAround(closure) + } + + internal func aroundEach(_ closure: @escaping AroundExampleWithMetadataAsyncClosure) { + guard currentExampleMetadata == nil else { + raiseError("'aroundEach' cannot be used inside '\(currentPhase)', 'aroundEach' may only be used inside 'context' or 'describe'. ") + } + currentExampleGroup.hooks.appendAround(closure) + } + + // MARK: - Examples (Swift) + @nonobjc + internal func it(_ description: String, flags: FilterFlags = [:], file: FileString, line: UInt, closure: @escaping () async throws -> Void) { + if beforesCurrentlyExecuting { + raiseError("'it' cannot be used inside 'beforeEach', 'it' may only be used inside 'context' or 'describe'.") + } + if aftersCurrentlyExecuting { + raiseError("'it' cannot be used inside 'afterEach', 'it' may only be used inside 'context' or 'describe'.") + } + guard currentExampleMetadata == nil else { + raiseError("'it' cannot be used inside 'it', 'it' may only be used inside 'context' or 'describe'.") + } + let callsite = Callsite(file: file, line: line) + let example = AsyncExample(description: description, callsite: callsite, flags: flags, closure: closure) + currentExampleGroup.appendExample(example) + } + + @nonobjc + internal func fit(_ description: String, file: FileString, line: UInt, closure: @escaping () async throws -> Void) { + self.it(description, flags: [Filter.focused: true], file: file, line: line, closure: closure) + } + + @nonobjc + internal func xit(_ description: String, file: FileString, line: UInt, closure: @escaping () async throws -> Void) { + self.it(description, flags: [Filter.pending: true], file: file, line: line, closure: closure) + } + + // MARK: - Shared Behavior + internal func itBehavesLike(_ behavior: AsyncBehavior.Type, context: @escaping () -> C, flags: FilterFlags = [:], file: FileString, line: UInt) { + guard currentExampleMetadata == nil else { + raiseError("'itBehavesLike' cannot be used inside '\(currentPhase)', 'itBehavesLike' may only be used inside 'context' or 'describe'.") + } + let callsite = Callsite(file: file, line: line) + let closure = behavior.spec + let group = AsyncExampleGroup(description: behavior.name, flags: flags) + currentExampleGroup.appendExampleGroup(group) + performWithCurrentExampleGroup(group) { + closure(context) + } + + group.walkDownExamples { (example: AsyncExample) in + example.isSharedExample = true + example.callsite = callsite + } + } + + internal func fitBehavesLike(_ behavior: AsyncBehavior.Type, context: @escaping () -> C, file: FileString, line: UInt) { + self.itBehavesLike(behavior, context: context, flags: [Filter.focused: true], file: file, line: line) + } + + internal func xitBehavesLike(_ behavior: AsyncBehavior.Type, context: @escaping () -> C, file: FileString, line: UInt) { + self.itBehavesLike(behavior, context: context, flags: [Filter.pending: true], file: file, line: line) + } + + // MARK: - Pending + @nonobjc + internal func pending(_ description: String, file: FileString, line: UInt, closure: @escaping () async throws -> Void) { + self.it(description, flags: [Filter.pending: true], file: file, line: line, closure: closure) + } + + private var currentPhase: String { + if beforesCurrentlyExecuting { + return "beforeEach" + } else if aftersCurrentlyExecuting { + return "afterEach" + } + + return "it" + } +} diff --git a/Example/Pods/Quick/Sources/Quick/DSL/DSL.swift b/Example/Pods/Quick/Sources/Quick/DSL/DSL.swift index a88191237..8552a59dc 100644 --- a/Example/Pods/Quick/Sources/Quick/DSL/DSL.swift +++ b/Example/Pods/Quick/Sources/Quick/DSL/DSL.swift @@ -1,311 +1,367 @@ // swiftlint:disable line_length -/** - Defines a closure to be run prior to any examples in the test suite. - You may define an unlimited number of these closures, but there is no - guarantee as to the order in which they're run. - - If the test suite crashes before the first example is run, this closure - will not be executed. - - - parameter closure: The closure to be run prior to any examples in the test suite. -*/ -public func beforeSuite(_ closure: @escaping BeforeSuiteClosure) { - World.sharedWorld.beforeSuite(closure) -} - -/** - Defines a closure to be run after all of the examples in the test suite. - You may define an unlimited number of these closures, but there is no - guarantee as to the order in which they're run. - - If the test suite crashes before all examples are run, this closure - will not be executed. - - - parameter closure: The closure to be run after all of the examples in the test suite. -*/ -public func afterSuite(_ closure: @escaping AfterSuiteClosure) { - World.sharedWorld.afterSuite(closure) -} - -/** - Defines a group of shared examples. These examples can be re-used in several locations - by using the `itBehavesLike` function. - - - parameter name: The name of the shared example group. This must be unique across all shared example - groups defined in a test suite. - - parameter closure: A closure containing the examples. This behaves just like an example group defined - using `describe` or `context`--the closure may contain any number of `beforeEach` - and `afterEach` closures, as well as any number of examples (defined using `it`). -*/ -public func sharedExamples(_ name: String, closure: @escaping () -> Void) { - World.sharedWorld.sharedExamples(name) { _ in closure() } -} - -/** - Defines a group of shared examples. These examples can be re-used in several locations - by using the `itBehavesLike` function. - - - parameter name: The name of the shared example group. This must be unique across all shared example - groups defined in a test suite. - - parameter closure: A closure containing the examples. This behaves just like an example group defined - using `describe` or `context`--the closure may contain any number of `beforeEach` - and `afterEach` closures, as well as any number of examples (defined using `it`). - - The closure takes a SharedExampleContext as an argument. This context is a function - that can be executed to retrieve parameters passed in via an `itBehavesLike` function. -*/ -public func sharedExamples(_ name: String, closure: @escaping SharedExampleClosure) { - World.sharedWorld.sharedExamples(name, closure: closure) -} - -/** - Defines an example group. Example groups are logical groupings of examples. - Example groups can share setup and teardown code. - - - parameter description: An arbitrary string describing the example group. - - parameter closure: A closure that can contain other examples. -*/ -public func describe(_ description: String, closure: () -> Void) { - World.sharedWorld.describe(description, closure: closure) -} - -/** - Defines an example group. Equivalent to `describe`. -*/ -public func context(_ description: String, closure: () -> Void) { - World.sharedWorld.context(description, closure: closure) -} - -/** - Defines a closure to be run prior to each example in the current example - group. This closure is not run for pending or otherwise disabled examples. - An example group may contain an unlimited number of beforeEach. They'll be - run in the order they're defined, but you shouldn't rely on that behavior. - - - parameter closure: The closure to be run prior to each example. -*/ -public func beforeEach(_ closure: @escaping BeforeExampleClosure) { - World.sharedWorld.beforeEach(closure) -} - -/** - Identical to Quick.DSL.beforeEach, except the closure is provided with - metadata on the example that the closure is being run prior to. -*/ -public func beforeEach(_ closure: @escaping BeforeExampleWithMetadataClosure) { - World.sharedWorld.beforeEach(closure: closure) -} - -/** - Defines a closure to be run after each example in the current example - group. This closure is not run for pending or otherwise disabled examples. - An example group may contain an unlimited number of afterEach. They'll be - run in the order they're defined, but you shouldn't rely on that behavior. - - - parameter closure: The closure to be run after each example. -*/ -public func afterEach(_ closure: @escaping AfterExampleClosure) { - World.sharedWorld.afterEach(closure) -} - -/** - Identical to Quick.DSL.afterEach, except the closure is provided with - metadata on the example that the closure is being run after. -*/ -public func afterEach(_ closure: @escaping AfterExampleWithMetadataClosure) { - World.sharedWorld.afterEach(closure: closure) -} - -/** - Defines a closure to that wraps each example in the current example - group. This closure is not run for pending or otherwise disabled examples. - - The closure you pass to aroundEach receives a callback as its argument, which - it MUST call exactly one for the example to run properly: - - aroundEach { runExample in - doSomeSetup() - runExample() - doSomeCleanup() - } - - This callback is particularly useful for test decartions that can’t split - into a separate beforeEach and afterEach. For example, running each example - in its own autorelease pool requires aroundEach: - - aroundEach { runExample in - autoreleasepool { - runExample() - } - checkObjectsNoLongerRetained() - } - - You can also use aroundEach to guarantee proper nesting of setup and cleanup - operations in situations where their relative order matters. - - An example group may contain an unlimited number of aroundEach callbacks. - They will nest inside each other, with the first declared in the group - nested at the outermost level. - - - parameter closure: The closure that wraps around each example. -*/ -public func aroundEach(_ closure: @escaping AroundExampleClosure) { - World.sharedWorld.aroundEach(closure) -} - -/** - Identical to Quick.DSL.aroundEach, except the closure receives metadata - about the example that the closure wraps. -*/ -public func aroundEach(_ closure: @escaping AroundExampleWithMetadataClosure) { - World.sharedWorld.aroundEach(closure) -} - -/** - Defines an example. Examples use assertions to demonstrate how code should - behave. These are like "tests" in XCTest. - - - parameter description: An arbitrary string describing what the example is meant to specify. - - parameter closure: A closure that can contain assertions. - - parameter file: The absolute path to the file containing the example. A sensible default is provided. - - parameter line: The line containing the example. A sensible default is provided. -*/ -public func it(_ description: String, file: FileString = #file, line: UInt = #line, closure: @escaping () throws -> Void) { - World.sharedWorld.it(description, file: file, line: line, closure: closure) -} - -/** - Inserts the examples defined using a `sharedExamples` function into the current example group. - The shared examples are executed at this location, as if they were written out manually. - - - parameter name: The name of the shared examples group to be executed. This must be identical to the - name of a shared examples group defined using `sharedExamples`. If there are no shared - examples that match the name given, an exception is thrown and the test suite will crash. - - parameter file: The absolute path to the file containing the current example group. A sensible default is provided. - - parameter line: The line containing the current example group. A sensible default is provided. -*/ -public func itBehavesLike(_ name: String, file: FileString = #file, line: UInt = #line) { - itBehavesLike(name, file: file, line: line, sharedExampleContext: { return [:] }) -} - -/** - Inserts the examples defined using a `sharedExamples` function into the current example group. - The shared examples are executed at this location, as if they were written out manually. - This function also passes those shared examples a context that can be evaluated to give the shared - examples extra information on the subject of the example. - - - parameter name: The name of the shared examples group to be executed. This must be identical to the - name of a shared examples group defined using `sharedExamples`. If there are no shared - examples that match the name given, an exception is thrown and the test suite will crash. - - parameter sharedExampleContext: A closure that, when evaluated, returns key-value pairs that provide the - shared examples with extra information on the subject of the example. - - parameter file: The absolute path to the file containing the current example group. A sensible default is provided. - - parameter line: The line containing the current example group. A sensible default is provided. -*/ -public func itBehavesLike(_ name: String, file: FileString = #file, line: UInt = #line, sharedExampleContext: @escaping SharedExampleContext) { - World.sharedWorld.itBehavesLike(name, sharedExampleContext: sharedExampleContext, file: file, line: line) -} - -/** - Inserts the examples defined using a `Behavior` into the current example group. - The shared examples are executed at this location, as if they were written out manually. - This function also passes a strongly-typed context that can be evaluated to give the shared examples extra information on the subject of the example. - - - parameter behavior: The type of `Behavior` class defining the example group to be executed. - - parameter context: A closure that, when evaluated, returns an instance of `Behavior`'s context type to provide its example group with extra information on the subject of the example. - - parameter file: The absolute path to the file containing the current example group. A sensible default is provided. - - parameter line: The line containing the current example group. A sensible default is provided. - */ -public func itBehavesLike(_ behavior: Behavior.Type, file: FileString = #file, line: UInt = #line, context: @escaping () -> C) { - World.sharedWorld.itBehavesLike(behavior, context: context, file: file, line: line) -} - -/** - Defines an example or example group that should not be executed. Use `pending` to temporarily disable - examples or groups that should not be run yet. - - - parameter description: An arbitrary string describing the example or example group. - - parameter closure: A closure that will not be evaluated. -*/ -public func pending(_ description: String, closure: () -> Void) { - World.sharedWorld.pending(description, closure: closure) -} - -/** - Use this to quickly mark a `describe` closure as pending. - This disables all examples within the closure. -*/ -public func xdescribe(_ description: String, closure: () -> Void) { - World.sharedWorld.xdescribe(description, closure: closure) -} - -/** - Use this to quickly mark a `context` closure as pending. - This disables all examples within the closure. -*/ -public func xcontext(_ description: String, closure: () -> Void) { - xdescribe(description, closure: closure) -} - -/** - Use this to quickly mark an `it` closure as pending. - This disables the example and ensures the code within the closure is never run. -*/ -public func xit(_ description: String, file: FileString = #file, line: UInt = #line, closure: @escaping () throws -> Void) { - World.sharedWorld.xit(description, file: file, line: line, closure: closure) -} - -/** - Use this to quickly mark an `itBehavesLike` closure as pending. - This disables the example group defined by this behavior and ensures the code within is never run. -*/ -public func xitBehavesLike(_ behavior: Behavior.Type, file: FileString = #file, line: UInt = #line, context: @escaping () -> C) { - World.sharedWorld.xitBehavesLike(behavior, context: context, file: file, line: line) -} -/** - Use this to quickly focus a `describe` closure, focusing the examples in the closure. - If any examples in the test suite are focused, only those examples are executed. - This trumps any explicitly focused or unfocused examples within the closure--they are all treated as focused. -*/ -public func fdescribe(_ description: String, closure: () -> Void) { - World.sharedWorld.fdescribe(description, closure: closure) -} - -/** - Use this to quickly focus a `context` closure. Equivalent to `fdescribe`. -*/ -public func fcontext(_ description: String, closure: () -> Void) { - fdescribe(description, closure: closure) -} - -/** - Use this to quickly focus an `it` closure, focusing the example. - If any examples in the test suite are focused, only those examples are executed. -*/ -public func fit(_ description: String, file: FileString = #file, line: UInt = #line, closure: @escaping () throws -> Void) { - World.sharedWorld.fit(description, file: file, line: line, closure: closure) -} - -/** - Use this to quickly focus an `itBehavesLike` closure. -*/ -public func fitBehavesLike(_ name: String, file: FileString = #file, line: UInt = #line) { - fitBehavesLike(name, file: file, line: line, sharedExampleContext: { return [:] }) -} - -/** - Use this to quickly focus an `itBehavesLike` closure. -*/ -public func fitBehavesLike(_ name: String, file: FileString = #file, line: UInt = #line, sharedExampleContext: @escaping SharedExampleContext) { - World.sharedWorld.fitBehavesLike(name, sharedExampleContext: sharedExampleContext, file: file, line: line) -} - -/** - Use this to quickly focus on `itBehavesLike` closure. - */ -public func fitBehavesLike(_ behavior: Behavior.Type, file: FileString = #file, line: UInt = #line, context: @escaping () -> C) { - World.sharedWorld.fitBehavesLike(behavior, context: context, file: file, line: line) +/// A protocol for defining the synchronous DSL usable from Quick synchronous specs. +public protocol SyncDSLUser {} + +extension QuickSpec: SyncDSLUser {} +extension Behavior: SyncDSLUser {} +extension QuickConfiguration: SyncDSLUser {} + +extension SyncDSLUser { + + // MARK: - beforeSuite + /** + Defines a closure to be run prior to any examples in the test suite. + You may define an unlimited number of these closures, but there is no + guarantee as to the order in which they're run. + + If the test suite crashes before the first example is run, this closure + will not be executed. + + - parameter closure: The closure to be run prior to any examples in the test suite. + */ + public static func beforeSuite(_ closure: @escaping BeforeSuiteClosure) { + World.sharedWorld.beforeSuite(closure) + } + + // MARK: - afterSuite + /** + Defines a closure to be run after all of the examples in the test suite. + You may define an unlimited number of these closures, but there is no + guarantee as to the order in which they're run. + + If the test suite crashes before all examples are run, this closure + will not be executed. + + - parameter closure: The closure to be run after all of the examples in the test suite. + */ + public static func afterSuite(_ closure: @escaping AfterSuiteClosure) { + World.sharedWorld.afterSuite(closure) + } + + // MARK: - sharedExamples + /** + Defines a group of shared examples. These examples can be re-used in several locations + by using the `itBehavesLike` function. + + - parameter name: The name of the shared example group. This must be unique across all shared example + groups defined in a test suite. + - parameter closure: A closure containing the examples. This behaves just like an example group defined + using `describe` or `context`--the closure may contain any number of `beforeEach` + and `afterEach` closures, as well as any number of examples (defined using `it`). + + - Remark: `sharedExamples` is untyped. Please use ``Behavior`` instead, as it offers type-safety. + */ + public static func sharedExamples(_ name: String, closure: @escaping () -> Void) { + World.sharedWorld.sharedExamples(name) { _ in closure() } + } + + /** + Defines a group of shared examples. These examples can be re-used in several locations + by using the `itBehavesLike` function. + + - parameter name: The name of the shared example group. This must be unique across all shared example + groups defined in a test suite. + - parameter closure: A closure containing the examples. This behaves just like an example group defined + using `describe` or `context`--the closure may contain any number of `beforeEach` + and `afterEach` closures, as well as any number of examples (defined using `it`). + + - Remark: `sharedExamples` and the context passed in to it are untyped. Please use ``Behavior`` instead, as it offers type-safety. + + The closure takes a ``SharedExampleContext`` as an argument. This context is a function + that can be executed to retrieve parameters passed in via an `itBehavesLike` function. + */ + public static func sharedExamples(_ name: String, closure: @escaping SharedExampleClosure) { + World.sharedWorld.sharedExamples(name, closure: closure) + } + + // MARK: - Example groups + /** + Defines an example group. Example groups are logical groupings of examples. + Example groups can share setup and teardown code. + + - parameter description: An arbitrary string describing the example group. + - parameter closure: A closure that can contain other examples. + */ + public static func describe(_ description: String, closure: () -> Void) { + World.sharedWorld.describe(description, closure: closure) + } + + /** + Defines an example group. Equivalent to `describe`. + */ + public static func context(_ description: String, closure: () -> Void) { + World.sharedWorld.context(description, closure: closure) + } + + // MARK: - beforeEach + /** + Defines a closure to be run prior to each example in the current example + group. This closure is not run for pending or otherwise disabled examples. + An example group may contain an unlimited number of beforeEach. They'll be + run in the order they're defined, but you shouldn't rely on that behavior. + + - parameter closure: The closure to be run prior to each example. + */ + public static func beforeEach(_ closure: @escaping BeforeExampleClosure) { + World.sharedWorld.beforeEach(closure) + } + + /** + Identical to Quick.DSL.beforeEach, except the closure is provided with + metadata on the example that the closure is being run prior to. + */ + public static func beforeEach(_ closure: @escaping BeforeExampleWithMetadataClosure) { + World.sharedWorld.beforeEach(closure: closure) + } + + // MARK: - AfterEach + /** + Defines a closure to be run after each example in the current example + group. This closure is not run for pending or otherwise disabled examples. + An example group may contain an unlimited number of afterEach. They'll be + run in the order they're defined, but you shouldn't rely on that behavior. + + - parameter closure: The closure to be run after each example. + */ + public static func afterEach(_ closure: @escaping AfterExampleClosure) { + World.sharedWorld.afterEach(closure) + } + + /** + Identical to Quick.DSL.afterEach, except the closure is provided with + metadata on the example that the closure is being run after. + */ + public static func afterEach(_ closure: @escaping AfterExampleWithMetadataClosure) { + World.sharedWorld.afterEach(closure: closure) + } + + // MARK: - aroundEach + /** + Defines a closure to that wraps each example in the current example + group. This closure is not run for pending or otherwise disabled examples. + + The closure you pass to aroundEach receives a callback as its argument, which + it MUST call exactly one for the example to run properly: + + aroundEach { runExample in + doSomeSetup() + runExample() + doSomeCleanup() + } + + This callback is particularly useful for test decartions that can’t split + into a separate beforeEach and afterEach. For example, running each example + in its own autorelease pool (provided by Task) requires aroundEach: + + aroundEach { runExample in + autoreleasepool { + runExample() + } + checkObjectsNoLongerRetained() + } + + You can also use aroundEach to guarantee proper nesting of setup and cleanup + operations in situations where their relative order matters. + + An example group may contain an unlimited number of aroundEach callbacks. + They will nest inside each other, with the first declared in the group + nested at the outermost level. + + - parameter closure: The closure that wraps around each example. + */ + public static func aroundEach(_ closure: @escaping AroundExampleClosure) { + World.sharedWorld.aroundEach(closure) + } + + /** + Identical to Quick.DSL.aroundEach, except the closure receives metadata + about the example that the closure wraps. + */ + public static func aroundEach(_ closure: @escaping AroundExampleWithMetadataClosure) { + World.sharedWorld.aroundEach(closure) + } + + // MARK: - Examples + /** + Defines a closure to be run prior to each example but after any beforeEach blocks. + This closure is not run for pending or otherwise disabled examples. + An example group may contain an unlimited number of justBeforeEach. They'll be + run in the order they're defined, but you shouldn't rely on that behavior. + + - parameter closure: The closure to be run prior to each example and after any beforeEach blocks + */ + + public static func justBeforeEach(_ closure: @escaping BeforeExampleClosure) { + World.sharedWorld.justBeforeEach(closure) + } + + /** + Defines an example. Examples use assertions to demonstrate how code should + behave. These are like "tests" in XCTest. + + - parameter description: An arbitrary string describing what the example is meant to specify. + - parameter closure: A closure that can contain assertions. + - parameter file: The absolute path to the file containing the example. A sensible default is provided. + - parameter line: The line containing the example. A sensible default is provided. + */ + public static func it(_ description: String, file: FileString = #file, line: UInt = #line, closure: @escaping ExampleClosure) { + World.sharedWorld.it(description, file: file, line: line, closure: closure) + } + + // MARK: - Shared Examples + /** + Inserts the examples defined using a `sharedExamples` function into the current example group. + The shared examples are executed at this location, as if they were written out manually. + + - parameter name: The name of the shared examples group to be executed. This must be identical to the + name of a shared examples group defined using `sharedExamples`. If there are no shared + examples that match the name given, an exception is thrown and the test suite will crash. + - parameter file: The absolute path to the file containing the current example group. A sensible default is provided. + - parameter line: The line containing the current example group. A sensible default is provided. + */ + public static func itBehavesLike(_ name: String, file: FileString = #file, line: UInt = #line) { + itBehavesLike(name, file: file, line: line, sharedExampleContext: { return [:] }) + } + + /** + Inserts the examples defined using a `sharedExamples` function into the current example group. + The shared examples are executed at this location, as if they were written out manually. + This function also passes those shared examples a context that can be evaluated to give the shared + examples extra information on the subject of the example. + + - parameter name: The name of the shared examples group to be executed. This must be identical to the + name of a shared examples group defined using `sharedExamples`. If there are no shared + examples that match the name given, an exception is thrown and the test suite will crash. + - parameter sharedExampleContext: A closure that, when evaluated, returns key-value pairs that provide the + shared examples with extra information on the subject of the example. + - parameter file: The absolute path to the file containing the current example group. A sensible default is provided. + - parameter line: The line containing the current example group. A sensible default is provided. + */ + public static func itBehavesLike(_ name: String, file: FileString = #file, line: UInt = #line, sharedExampleContext: @escaping SharedExampleContext) { + World.sharedWorld.itBehavesLike(name, sharedExampleContext: sharedExampleContext, file: file, line: line) + } + + /** + Inserts the examples defined using a `Behavior` into the current example group. + The shared examples are executed at this location, as if they were written out manually. + This function also passes a strongly-typed context that can be evaluated to give the shared examples extra information on the subject of the example. + + - parameter behavior: The type of `Behavior` class defining the example group to be executed. + - parameter context: A closure that, when evaluated, returns an instance of `Behavior`'s context type to provide its example group with extra information on the subject of the example. + - parameter file: The absolute path to the file containing the current example group. A sensible default is provided. + - parameter line: The line containing the current example group. A sensible default is provided. + */ + public static func itBehavesLike(_ behavior: Behavior.Type, file: FileString = #file, line: UInt = #line, context: @escaping () -> C) { + World.sharedWorld.itBehavesLike(behavior, context: context, file: file, line: line) + } + + // MARK: - Pending + /** + Defines an example or example group that should not be executed. Use `pending` to temporarily disable + examples or groups that should not be run yet. + + - parameter description: An arbitrary string describing the example or example group. + - parameter closure: A closure that will not be evaluated. + */ + public static func pending(_ description: String, file: FileString = #file, line: UInt = #line, closure: @escaping () throws -> Void) { + World.sharedWorld.pending(description, file: file, line: line, closure: closure) + } + + // MARK: - Defocused + /** + Use this to quickly mark a `describe` closure as pending. + This disables all examples within the closure. + */ + public static func xdescribe(_ description: String, closure: () -> Void) { + World.sharedWorld.xdescribe(description, closure: closure) + } + + /** + Use this to quickly mark a `context` closure as pending. + This disables all examples within the closure. + */ + public static func xcontext(_ description: String, closure: () -> Void) { + xdescribe(description, closure: closure) + } + + /** + Use this to quickly mark an `it` closure as pending. + This disables the example and ensures the code within the closure is never run. + */ + public static func xit(_ description: String, file: FileString = #file, line: UInt = #line, closure: @escaping ExampleClosure) { + World.sharedWorld.xit(description, file: file, line: line, closure: closure) + } + + /** + Use this to quickly mark an `itBehavesLike` closure as pending. + This disables the example group defined by this behavior and ensures the code within is never run. + */ + public static func xitBehavesLike(_ behavior: Behavior.Type, file: FileString = #file, line: UInt = #line, context: @escaping () -> C) { + World.sharedWorld.xitBehavesLike(behavior, context: context, file: file, line: line) + } + + /** + Use this to quickly mark an `itBehavesLike` closure as pending. + This disables the example group defined by this behavior and ensures the code within is never run. + */ + public static func xitBehavesLike(_ name: String, file: FileString = #file, line: UInt = #line) { + xitBehavesLike(name, file: file, line: line, sharedExampleContext: { return [:] }) + } + + /** + Use this to quickly mark an `itBehavesLike` closure as pending. + This disables the example group defined by this behavior and ensures the code within is never run. + */ + public static func xitBehavesLike(_ name: String, file: FileString = #file, line: UInt = #line, sharedExampleContext: @escaping SharedExampleContext) { + World.sharedWorld.xitBehavesLike(name, sharedExampleContext: sharedExampleContext, file: file, line: line) + } + + // MARK: - Focused + /** + Use this to quickly focus a `describe` closure, focusing the examples in the closure. + If any examples in the test suite are focused, only those examples are executed. + This trumps any explicitly focused or unfocused examples within the closure--they are all treated as focused. + */ + public static func fdescribe(_ description: String, closure: () -> Void) { + World.sharedWorld.fdescribe(description, closure: closure) + } + + /** + Use this to quickly focus a `context` closure. Equivalent to `fdescribe`. + */ + public static func fcontext(_ description: String, closure: () -> Void) { + fdescribe(description, closure: closure) + } + + /** + Use this to quickly focus an `it` closure, focusing the example. + If any examples in the test suite are focused, only those examples are executed. + */ + public static func fit(_ description: String, file: FileString = #file, line: UInt = #line, closure: @escaping ExampleClosure) { + World.sharedWorld.fit(description, file: file, line: line, closure: closure) + } + + /** + Use this to quickly focus an `itBehavesLike` closure. + */ + public static func fitBehavesLike(_ name: String, file: FileString = #file, line: UInt = #line) { + fitBehavesLike(name, file: file, line: line, sharedExampleContext: { return [:] }) + } + + /** + Use this to quickly focus an `itBehavesLike` closure. + */ + public static func fitBehavesLike(_ name: String, file: FileString = #file, line: UInt = #line, sharedExampleContext: @escaping SharedExampleContext) { + World.sharedWorld.fitBehavesLike(name, sharedExampleContext: sharedExampleContext, file: file, line: line) + } + + /** + Use this to quickly focus on `itBehavesLike` closure. + */ + public static func fitBehavesLike(_ behavior: Behavior.Type, file: FileString = #file, line: UInt = #line, context: @escaping () -> C) { + World.sharedWorld.fitBehavesLike(behavior, context: context, file: file, line: line) + } } // swiftlint:enable line_length diff --git a/Example/Pods/Quick/Sources/Quick/DSL/World+DSL.swift b/Example/Pods/Quick/Sources/Quick/DSL/World+DSL.swift index be7e684db..727524426 100644 --- a/Example/Pods/Quick/Sources/Quick/DSL/World+DSL.swift +++ b/Example/Pods/Quick/Sources/Quick/DSL/World+DSL.swift @@ -6,18 +6,38 @@ import Foundation writers use in their specs. */ extension World { + // MARK: - Before Suite +#if canImport(Darwin) + @objc(beforeSuite:) + internal func objc_beforeSuite(_ closure: @escaping BeforeSuiteNonThrowingClosure) { + suiteHooks.appendBefore(closure) + } +#endif + + @nonobjc internal func beforeSuite(_ closure: @escaping BeforeSuiteClosure) { suiteHooks.appendBefore(closure) } + // MARK: - After Suite +#if canImport(Darwin) + @objc(afterSuite:) + internal func objc_afterSuite(_ closure: @escaping AfterSuiteNonThrowingClosure) { + suiteHooks.appendAfter(closure) + } +#endif + + @nonobjc internal func afterSuite(_ closure: @escaping AfterSuiteClosure) { suiteHooks.appendAfter(closure) } + // MARK: - Specifying shared examples internal func sharedExamples(_ name: String, closure: @escaping SharedExampleClosure) { registerSharedExample(name, closure: closure) } + // MARK: - Example groups. internal func describe(_ description: String, flags: FilterFlags = [:], closure: () -> Void) { guard currentExampleMetadata == nil else { raiseError("'describe' cannot be used inside '\(currentPhase)', 'describe' may only be used inside 'context' or 'describe'.") @@ -46,62 +66,133 @@ extension World { self.describe(description, flags: [Filter.pending: true], closure: closure) } - internal func beforeEach(_ closure: @escaping BeforeExampleClosure) { + // MARK: - Just Before Each +#if canImport(Darwin) + @objc(justBeforeEach:) + internal func objc_justBeforeEach(_ closure: @escaping BeforeExampleNonThrowingClosure) { guard currentExampleMetadata == nil else { - raiseError("'beforeEach' cannot be used inside '\(currentPhase)', 'beforeEach' may only be used inside 'context' or 'describe'.") + raiseError("'justBeforeEach' cannot be used inside '\(currentPhase)', 'justBeforeEach' may only be used inside 'context' or 'describe'.") } - currentExampleGroup.hooks.appendBefore(closure) + currentExampleGroup.hooks.appendJustBeforeEach(closure) + } +#endif + + @nonobjc + internal func justBeforeEach(_ closure: @escaping BeforeExampleClosure) { + guard currentExampleMetadata == nil else { + raiseError("'justBeforeEach' cannot be used inside '\(currentPhase)', 'justBeforeEach' may only be used inside 'context' or 'describe'.") + } + currentExampleGroup.hooks.appendJustBeforeEach(closure) } + // MARK: - Before Each #if canImport(Darwin) @objc(beforeEachWithMetadata:) - internal func beforeEach(closure: @escaping BeforeExampleWithMetadataClosure) { + internal func objc_beforeEach(closure: @escaping BeforeExampleWithMetadataNonThrowingClosure) { + guard currentExampleMetadata == nil else { + raiseError("'beforeEach' cannot be used inside '\(currentPhase)', 'beforeEach' may only be used inside 'context' or 'describe'.") + } currentExampleGroup.hooks.appendBefore(closure) } -#else - internal func beforeEach(closure: @escaping BeforeExampleWithMetadataClosure) { + + @objc(beforeEach:) + internal func objc_beforeEach(closure: @escaping BeforeExampleNonThrowingClosure) { + guard currentExampleMetadata == nil else { + raiseError("'beforeEach' cannot be used inside '\(currentPhase)', 'beforeEach' may only be used inside 'context' or 'describe'.") + } currentExampleGroup.hooks.appendBefore(closure) } #endif - internal func afterEach(_ closure: @escaping AfterExampleClosure) { + @nonobjc + internal func beforeEach(closure: @escaping BeforeExampleWithMetadataClosure) { guard currentExampleMetadata == nil else { - raiseError("'afterEach' cannot be used inside '\(currentPhase)', 'afterEach' may only be used inside 'context' or 'describe'.") + raiseError("'beforeEach' cannot be used inside '\(currentPhase)', 'beforeEach' may only be used inside 'context' or 'describe'.") } - currentExampleGroup.hooks.appendAfter(closure) + currentExampleGroup.hooks.appendBefore(closure) + } + + @nonobjc + internal func beforeEach(_ closure: @escaping BeforeExampleClosure) { + guard currentExampleMetadata == nil else { + raiseError("'beforeEach' cannot be used inside '\(currentPhase)', 'beforeEach' may only be used inside 'context' or 'describe'.") + } + currentExampleGroup.hooks.appendBefore(closure) } + // MARK: - After Each #if canImport(Darwin) @objc(afterEachWithMetadata:) - internal func afterEach(closure: @escaping AfterExampleWithMetadataClosure) { + internal func objc_afterEach(closure: @escaping AfterExampleWithMetadataNonThrowingClosure) { + guard currentExampleMetadata == nil else { + raiseError("'afterEach' cannot be used inside '\(currentPhase)', 'afterEach' may only be used inside 'context' or 'describe'.") + } currentExampleGroup.hooks.appendAfter(closure) } -#else - internal func afterEach(closure: @escaping AfterExampleWithMetadataClosure) { + + @objc(afterEach:) + internal func objc_afterEach(_ closure: @escaping AfterExampleNonThrowingClosure) { + guard currentExampleMetadata == nil else { + raiseError("'afterEach' cannot be used inside '\(currentPhase)', 'afterEach' may only be used inside 'context' or 'describe'.") + } currentExampleGroup.hooks.appendAfter(closure) } #endif - internal func aroundEach(_ closure: @escaping AroundExampleClosure) { + @nonobjc + internal func afterEach(closure: @escaping AfterExampleWithMetadataClosure) { + guard currentExampleMetadata == nil else { + raiseError("'afterEach' cannot be used inside '\(currentPhase)', 'afterEach' may only be used inside 'context' or 'describe'.") + } + currentExampleGroup.hooks.appendAfter(closure) + } + + @nonobjc + internal func afterEach(_ closure: @escaping AfterExampleClosure) { + guard currentExampleMetadata == nil else { + raiseError("'afterEach' cannot be used inside '\(currentPhase)', 'afterEach' may only be used inside 'context' or 'describe'.") + } + currentExampleGroup.hooks.appendAfter(closure) + } + + // MARK: - Around Each + #if canImport(Darwin) + @objc(aroundEach:) + internal func objc_aroundEach(_ closure: @escaping AroundExampleNonThrowingClosure) { guard currentExampleMetadata == nil else { raiseError("'aroundEach' cannot be used inside '\(currentPhase)', 'aroundEach' may only be used inside 'context' or 'describe'. ") } currentExampleGroup.hooks.appendAround(closure) } -#if canImport(Darwin) @objc(aroundEachWithMetadata:) - internal func aroundEach(_ closure: @escaping AroundExampleWithMetadataClosure) { + internal func objc_aroundEach(_ closure: @escaping AroundExampleWithMetadataNonThrowingClosure) { + guard currentExampleMetadata == nil else { + raiseError("'aroundEach' cannot be used inside '\(currentPhase)', 'aroundEach' may only be used inside 'context' or 'describe'. ") + } currentExampleGroup.hooks.appendAround(closure) } -#else + #endif + + @nonobjc + internal func aroundEach(_ closure: @escaping AroundExampleClosure) { + guard currentExampleMetadata == nil else { + raiseError("'aroundEach' cannot be used inside '\(currentPhase)', 'aroundEach' may only be used inside 'context' or 'describe'. ") + } + currentExampleGroup.hooks.appendAround(closure) + } + + @nonobjc internal func aroundEach(_ closure: @escaping AroundExampleWithMetadataClosure) { + guard currentExampleMetadata == nil else { + raiseError("'aroundEach' cannot be used inside '\(currentPhase)', 'aroundEach' may only be used inside 'context' or 'describe'. ") + } currentExampleGroup.hooks.appendAround(closure) } -#endif + // MARK: - Examples (Swift) @nonobjc - internal func it(_ description: String, flags: FilterFlags = [:], file: FileString, line: UInt, closure: @escaping () throws -> Void) { + internal func it(_ description: String, flags: FilterFlags = [:], file: FileString, line: UInt, closure: @escaping ExampleClosure) { if beforesCurrentlyExecuting { raiseError("'it' cannot be used inside 'beforeEach', 'it' may only be used inside 'context' or 'describe'.") } @@ -117,15 +208,16 @@ extension World { } @nonobjc - internal func fit(_ description: String, file: FileString, line: UInt, closure: @escaping () throws -> Void) { + internal func fit(_ description: String, file: FileString, line: UInt, closure: @escaping ExampleClosure) { self.it(description, flags: [Filter.focused: true], file: file, line: line, closure: closure) } @nonobjc - internal func xit(_ description: String, file: FileString, line: UInt, closure: @escaping () throws -> Void) { + internal func xit(_ description: String, file: FileString, line: UInt, closure: @escaping ExampleClosure) { self.it(description, flags: [Filter.pending: true], file: file, line: line, closure: closure) } + // MARK: - Shared Behavior @nonobjc internal func itBehavesLike(_ name: String, sharedExampleContext: @escaping SharedExampleContext, flags: FilterFlags = [:], file: FileString, line: UInt) { guard currentExampleMetadata == nil else { @@ -182,20 +274,37 @@ extension World { self.itBehavesLike(behavior, context: context, flags: [Filter.pending: true], file: file, line: line) } + // MARK: Examples & Shared behavior (objc) #if canImport(Darwin) && !SWIFT_PACKAGE + @nonobjc + internal func syncIt(_ description: String, flags: FilterFlags = [:], file: FileString, line: UInt, closure: @escaping () throws -> Void) { + if beforesCurrentlyExecuting { + raiseError("'it' cannot be used inside 'beforeEach', 'it' may only be used inside 'context' or 'describe'.") + } + if aftersCurrentlyExecuting { + raiseError("'it' cannot be used inside 'afterEach', 'it' may only be used inside 'context' or 'describe'.") + } + guard currentExampleMetadata == nil else { + raiseError("'it' cannot be used inside 'it', 'it' may only be used inside 'context' or 'describe'.") + } + let callsite = Callsite(file: file, line: line) + let example = Example(description: description, callsite: callsite, flags: flags, closure: closure) + currentExampleGroup.appendExample(example) + } + @objc(itWithDescription:file:line:closure:) internal func objc_it(_ description: String, file: FileString, line: UInt, closure: @escaping () -> Void) { - it(description, file: file, line: line, closure: closure) + syncIt(description, file: file, line: line, closure: closure) } @objc(fitWithDescription:file:line:closure:) internal func objc_fit(_ description: String, file: FileString, line: UInt, closure: @escaping () -> Void) { - fit(description, file: file, line: line, closure: closure) + syncIt(description, flags: [Filter.focused: true], file: file, line: line, closure: closure) } @objc(xitWithDescription:file:line:closure:) internal func objc_xit(_ description: String, file: FileString, line: UInt, closure: @escaping () -> Void) { - xit(description, file: file, line: line, closure: closure) + syncIt(description, flags: [Filter.pending: true], file: file, line: line, closure: closure) } @objc(itBehavesLikeSharedExampleNamed:sharedExampleContext:file:line:) @@ -212,10 +321,17 @@ extension World { internal func objc_xitBehavesLike(_ name: String, sharedExampleContext: @escaping SharedExampleContext, file: FileString, line: UInt) { xitBehavesLike(name, sharedExampleContext: sharedExampleContext, file: file, line: line) } + + @objc(pendingWithDescription:file:line:closure:) + internal func objc_pending(_ description: String, file: FileString, line: UInt, closure: @escaping () -> Void) { + self.it(description, flags: [Filter.pending: true], file: file, line: line, closure: closure) + } #endif - internal func pending(_ description: String, closure: () -> Void) { - print("Pending: \(description)") + // MARK: - Pending + @nonobjc + internal func pending(_ description: String, file: FileString, line: UInt, closure: @escaping () throws -> Void) { + self.it(description, flags: [Filter.pending: true], file: file, line: line, closure: closure) } private var currentPhase: String { diff --git a/Example/Pods/Quick/Sources/Quick/Example.swift b/Example/Pods/Quick/Sources/Quick/Example.swift deleted file mode 100644 index 42160b1ae..000000000 --- a/Example/Pods/Quick/Sources/Quick/Example.swift +++ /dev/null @@ -1,154 +0,0 @@ -import Foundation -import XCTest - -#if canImport(Darwin) -// swiftlint:disable type_name -@objcMembers -public class _ExampleBase: NSObject {} -#else -public class _ExampleBase: NSObject {} -// swiftlint:enable type_name -#endif - -/** - Examples, defined with the `it` function, use assertions to - demonstrate how code should behave. These are like "tests" in XCTest. -*/ -final public class Example: _ExampleBase { - /** - A boolean indicating whether the example is a shared example; - i.e.: whether it is an example defined with `itBehavesLike`. - */ - public var isSharedExample = false - - /** - The site at which the example is defined. - This must be set correctly in order for Xcode to highlight - the correct line in red when reporting a failure. - */ - public var callsite: Callsite - - weak internal var group: ExampleGroup? - - private let internalDescription: String - private let closure: () throws -> Void - private let flags: FilterFlags - - internal init(description: String, callsite: Callsite, flags: FilterFlags, closure: @escaping () throws -> Void) { - self.internalDescription = description - self.closure = closure - self.callsite = callsite - self.flags = flags - } - - public override var description: String { - return internalDescription - } - - /** - The example name. A name is a concatenation of the name of - the example group the example belongs to, followed by the - description of the example itself. - - The example name is used to generate a test method selector - to be displayed in Xcode's test navigator. - */ - public var name: String { - guard let groupName = group?.name else { return description } - return "\(groupName), \(description)" - } - - /** - Executes the example closure, as well as all before and after - closures defined in the its surrounding example groups. - */ - public func run() { // swiftlint:disable:this function_body_length - let world = World.sharedWorld - - if world.numberOfExamplesRun == 0 { - world.suiteHooks.executeBefores() - } - - let exampleMetadata = ExampleMetadata(example: self, exampleIndex: world.numberOfExamplesRun) - world.currentExampleMetadata = exampleMetadata - defer { - world.currentExampleMetadata = nil - } - - group!.phase = .beforesExecuting - - let runExample = { [closure, name, callsite] in - self.group!.phase = .beforesFinished - - do { - try closure() - } catch { - let description = "Test \(name) threw unexpected error: \(error.localizedDescription)" - #if SWIFT_PACKAGE - let file = callsite.file.description - #else - let file = callsite.file - #endif - - // XCTIssue is unavailable (not implemented yet) on swift-corelibs-xctest (for non-Apple platforms) - #if canImport(Darwin) - let location = XCTSourceCodeLocation(filePath: file, lineNumber: Int(callsite.line)) - let sourceCodeContext = XCTSourceCodeContext(location: location) - let issue = XCTIssue( - type: .thrownError, - compactDescription: description, - sourceCodeContext: sourceCodeContext - ) - QuickSpec.current.record(issue) - #else - QuickSpec.current.recordFailure( - withDescription: description, - inFile: file, - atLine: Int(callsite.line), - expected: false - ) - #endif - } - - self.group!.phase = .aftersExecuting - } - - let allWrappers = group!.wrappers + world.exampleHooks.wrappers - let wrappedExample = allWrappers.reduce(runExample) { closure, wrapper in - return { wrapper(exampleMetadata, closure) } - } - wrappedExample() - - group!.phase = .aftersFinished - - world.numberOfExamplesRun += 1 - - if !world.isRunningAdditionalSuites && world.numberOfExamplesRun >= world.cachedIncludedExampleCount { - world.suiteHooks.executeAfters() - } - } - - /** - Evaluates the filter flags set on this example and on the example groups - this example belongs to. Flags set on the example are trumped by flags on - the example group it belongs to. Flags on inner example groups are trumped - by flags on outer example groups. - */ - internal var filterFlags: FilterFlags { - var aggregateFlags = flags - for (key, value) in group!.filterFlags { - aggregateFlags[key] = value - } - return aggregateFlags - } -} - -extension Example { - /** - Returns a boolean indicating whether two Example objects are equal. - If two examples are defined at the exact same callsite, they must be equal. - */ - @nonobjc public static func == (lhs: Example, rhs: Example) -> Bool { - return lhs.callsite == rhs.callsite - } -} diff --git a/Example/Pods/Quick/Sources/Quick/ExampleGroup.swift b/Example/Pods/Quick/Sources/Quick/ExampleGroup.swift index d18bcf75b..bb6f86709 100644 --- a/Example/Pods/Quick/Sources/Quick/ExampleGroup.swift +++ b/Example/Pods/Quick/Sources/Quick/ExampleGroup.swift @@ -1,11 +1,20 @@ import Foundation +internal protocol Filterable { + var filterFlags: FilterFlags { get } +} + +private enum ExampleUnit { + case example(Example) + case group(ExampleGroup) +} + /** Example groups are logical groupings of examples, defined with the `describe` and `context` functions. Example groups can share setup and teardown code. */ -final public class ExampleGroup: NSObject { +final public class ExampleGroup: NSObject, Filterable { weak internal var parent: ExampleGroup? internal let hooks = ExampleHooks() @@ -14,8 +23,7 @@ final public class ExampleGroup: NSObject { private let internalDescription: String private let flags: FilterFlags private let isInternalRootExampleGroup: Bool - private var childGroups = [ExampleGroup]() - private var childExamples = [Example]() + private var childUnits = [ExampleUnit]() internal init(description: String, flags: FilterFlags, isInternalRootExampleGroup: Bool = false) { self.internalDescription = description @@ -34,14 +42,25 @@ final public class ExampleGroup: NSObject { #if canImport(Darwin) @objc public var examples: [Example] { - return childExamples + childGroups.flatMap { $0.examples } + _examples } #else public var examples: [Example] { - return childExamples + childGroups.flatMap { $0.examples } + _examples } #endif + private var _examples: [Example] { + childUnits.flatMap { unit in + switch unit { + case .example(let example): + return [example] + case .group(let exampleGroup): + return exampleGroup.examples + } + } + } + internal var name: String? { guard let parent = parent else { return isInternalRootExampleGroup ? nil : description @@ -61,6 +80,14 @@ final public class ExampleGroup: NSObject { return aggregateFlags } + internal var justBeforeEachStatements: [AroundExampleWithMetadataClosure] { + var closures = Array(hooks.justBeforeEachStatements.reversed()) + walkUp { group in + closures.append(contentsOf: group.hooks.justBeforeEachStatements.reversed()) + } + return closures + } + internal var wrappers: [AroundExampleWithMetadataClosure] { var closures = Array(hooks.wrappers.reversed()) walkUp { group in @@ -70,22 +97,24 @@ final public class ExampleGroup: NSObject { } internal func walkDownExamples(_ callback: (_ example: Example) -> Void) { - for example in childExamples { - callback(example) - } - for group in childGroups { - group.walkDownExamples(callback) + for unit in childUnits { + switch unit { + case .example(let example): + callback(example) + case .group(let exampleGroup): + exampleGroup.walkDownExamples(callback) + } } } internal func appendExampleGroup(_ group: ExampleGroup) { group.parent = self - childGroups.append(group) + childUnits.append(.group(group)) } internal func appendExample(_ example: Example) { example.group = self - childExamples.append(example) + childUnits.append(.example(example)) } private func walkUp(_ callback: (_ group: ExampleGroup) -> Void) { diff --git a/Example/Pods/Quick/Sources/Quick/ExampleMetadata.swift b/Example/Pods/Quick/Sources/Quick/ExampleMetadata.swift deleted file mode 100644 index a8f0d7765..000000000 --- a/Example/Pods/Quick/Sources/Quick/ExampleMetadata.swift +++ /dev/null @@ -1,33 +0,0 @@ -import Foundation - -#if canImport(Darwin) -// swiftlint:disable type_name -@objcMembers -public class _ExampleMetadataBase: NSObject {} -#else -public class _ExampleMetadataBase: NSObject {} -// swiftlint:enable type_name -#endif - -/** - A class that encapsulates information about an example, - including the index at which the example was executed, as - well as the example itself. -*/ -final public class ExampleMetadata: _ExampleMetadataBase { - /** - The example for which this metadata was collected. - */ - public let example: Example - - /** - The index at which this example was executed in the - test suite. - */ - public let exampleIndex: Int - - internal init(example: Example, exampleIndex: Int) { - self.example = example - self.exampleIndex = exampleIndex - } -} diff --git a/Example/Pods/Quick/Sources/Quick/Examples/AsyncExample.swift b/Example/Pods/Quick/Sources/Quick/Examples/AsyncExample.swift new file mode 100644 index 000000000..5da96ac9d --- /dev/null +++ b/Example/Pods/Quick/Sources/Quick/Examples/AsyncExample.swift @@ -0,0 +1,279 @@ +import Foundation +import XCTest + +public class AsyncExample: ExampleBase { + weak internal var group: AsyncExampleGroup? + + private let internalDescription: String + private let closure: () async throws -> Void + + internal init(description: String, callsite: Callsite, flags: FilterFlags, closure: @escaping () async throws -> Void) { + self.internalDescription = description + self.closure = closure + super.init(callsite: callsite, flags: flags) + } + + public override var description: String { + return internalDescription + } + + /** + The example name. A name is a concatenation of the name of + the example group the example belongs to, followed by the + description of the example itself. + + The example name is used to generate a test method selector + to be displayed in Xcode's test navigator. + */ + public override var name: String { + guard let groupName = group?.name else { return description } + return "\(groupName), \(description)" + } + + public func run() async { + let asyncWorld = AsyncWorld.sharedWorld + let world = World.sharedWorld + + if world.numberOfExamplesRun == 0 { + await MainActor.run { + world.suiteHooks.executeBefores() + } + } + + let exampleMetadata = AsyncExampleMetadata(group: group!, example: self, exampleIndex: asyncWorld.numberOfAsyncExamplesRun) + asyncWorld.currentExampleMetadata = exampleMetadata + defer { + asyncWorld.currentExampleMetadata = nil + } + + group!.phase = .beforesExecuting + + let runExample: () async -> Void = { [closure, name, callsite] in + self.group!.phase = .beforesFinished + + do { + try await closure() + } catch { + self.handleErrorInTest(error, name: name, callsite: callsite) + } + + self.group!.phase = .aftersExecuting + } + + var cancelTests = false + + let handleThrowingClosure: (@escaping () async throws -> Void) -> () async -> Void = { [name, callsite] (closure: @escaping () async throws -> Void) in + { + if cancelTests { return } + do { + try await closure() + } catch { + self.handleErrorInTest(error, name: name, callsite: callsite) + cancelTests = true + } + } + } + + let allJustBeforeEachStatements = group!.justBeforeEachStatements + asyncWorld.exampleHooks.justBeforeEachStatements + let justBeforeEachExample = allJustBeforeEachStatements.reduce(runExample as () async throws -> Void) { closure, wrapper in + return { try await wrapper(exampleMetadata, handleThrowingClosure(closure)) } + } + + let allWrappers = group!.wrappers + asyncWorld.exampleHooks.wrappers + let wrappedExample = allWrappers.reduce(justBeforeEachExample) { closure, wrapper in + return { try await wrapper(exampleMetadata, handleThrowingClosure(closure)) } + } + do { + try await wrappedExample() + } catch { + self.handleErrorInTest(error, name: name, callsite: callsite) + } + + + group!.phase = .aftersFinished + + asyncWorld.numberOfAsyncExamplesRun += 1 + + if !asyncWorld.isRunningAdditionalSuites && world.numberOfExamplesRun >= world.cachedIncludedExampleCount { + await MainActor.run { + world.suiteHooks.executeAfters() + } + } + } + + public func runSkippedTest() async { + let asyncWorld = AsyncWorld.sharedWorld + let world = World.sharedWorld + + if world.numberOfExamplesRun == 0 { + await MainActor.run { + world.suiteHooks.executeBefores() + } + } + + reportSkippedTest(XCTSkip("Test was filtered out."), name: name, callsite: callsite) + + asyncWorld.numberOfAsyncExamplesRun += 1 + + if !asyncWorld.isRunningAdditionalSuites && world.numberOfExamplesRun >= world.cachedIncludedExampleCount { + await MainActor.run { + world.suiteHooks.executeAfters() + } + } + } + + /** + Evaluates the filter flags set on this example and on the example groups + this example belongs to. Flags set on the example are trumped by flags on + the example group it belongs to. Flags on inner example groups are trumped + by flags on outer example groups. + */ + internal override var filterFlags: FilterFlags { + var aggregateFlags = flags + for (key, value) in group!.filterFlags { + aggregateFlags[key] = value + } + return aggregateFlags + } + + #if canImport(Darwin) + static internal let recordSkipSelector = NSSelectorFromString("recordSkipWithDescription:sourceCodeContext:") + #endif + + internal func handleErrorInTest(_ error: Error, name: String, callsite: Callsite) { + if let stopTestError = error as? StopTest { + self.reportStoppedTest(stopTestError) + } else if let testSkippedError = error as? XCTSkip { + self.reportSkippedTest(testSkippedError, name: name, callsite: callsite) + } else { + self.reportFailedTest(error, name: name, callsite: callsite) + } + } + + internal func reportSkippedTest(_ testSkippedError: XCTSkip, name: String, callsite: Callsite) { + #if !canImport(Darwin) + return // This functionality is only supported by Apple's proprietary XCTest, not by swift-corelibs-xctest + #else // `NSSelectorFromString` requires the Objective-C runtime, which is not available on Linux. + + let messageSuffix = """ + \n + If nobody else has done so yet, please submit an issue to https://github.com/Quick/Quick/issues + + For now, we'll just benignly ignore skipped tests. + """ + + guard let testRun = AsyncSpec.current?.testRun else { + print(""" + [Quick Warning]: `AsyncSpec.current?.testRun` was unexpectededly `nil`. + """ + messageSuffix) + return + } + + guard let skippedTestContextAny = testSkippedError.errorUserInfo["XCTestErrorUserInfoKeySkippedTestContext"] else { + print(""" + [Quick Warning]: The internals of Apple's XCTestCaseRun have changed. + We expected the `errorUserInfo` dictionary of the XCTSKip error to contain a value for the key + "XCTestErrorUserInfoKeySkippedTestContext", but it didn't. + """ + messageSuffix) + return + } + + // Uses an internal type "XCTSkippedTestContext", but "NSObject" will be sufficient for `perform(_:with:_with:)`. + guard let skippedTestContext = skippedTestContextAny as? NSObject else { + print(""" + [Quick Warning]: The internals of Apple's XCTestCaseRun have changed. + We expected `skippedTestContextAny` to have type `NSObject`, + but we got an object of type \(type(of: skippedTestContextAny)) + """ + messageSuffix) + return + } + + guard let sourceCodeContextAny = skippedTestContext.value(forKey: "sourceCodeContext") else { + print(""" + [Quick Warning]: The internals of Apple's XCTestCaseRun have changed. + We expected `XCTSkippedTestContext` to have a `sourceCodeContext` property, but it did not. + """ + messageSuffix) + return + } + + guard let sourceCodeContext = sourceCodeContextAny as? XCTSourceCodeContext else { + print(""" + [Quick Warning]: The internals of Apple's XCTestCaseRun have changed. + We expected `XCTSkippedTestContext.sourceCodeContext` to have type `XCTSourceCodeContext`, + but we got an object of type \(type(of: sourceCodeContextAny)). + """ + messageSuffix) + return + } + + guard testRun.responds(to: Self.recordSkipSelector) else { + print(""" + [Quick Warning]: The internals of Apple's XCTestCaseRun have changed, as it no longer responds to + the -[XCTSkip \(NSStringFromSelector(Self.recordSkipSelector))] message necessary to report skipped tests to Xcode. + """ + messageSuffix) + return + } + + testRun.perform(Self.recordSkipSelector, with: testSkippedError.message, with: sourceCodeContext) + #endif + } + + internal func reportFailedTest(_ error: Error, name: String, callsite: Callsite) { + let description = "Test \(name) threw unexpected error: \(error.localizedDescription)" + + #if canImport(Darwin) + let file = callsite.file + let location = XCTSourceCodeLocation(filePath: file, lineNumber: Int(callsite.line)) + let sourceCodeContext = XCTSourceCodeContext(location: location) + let issue = XCTIssue( + type: .thrownError, + compactDescription: description, + sourceCodeContext: sourceCodeContext + ) + AsyncSpec.current?.record(issue) + #else + let file = callsite.file.description + AsyncSpec.current?.recordFailure( + withDescription: description, + inFile: file, + atLine: Int(callsite.line), + expected: false + ) + #endif + } + + internal func reportStoppedTest(_ stopTestError: StopTest) { + guard stopTestError.reportError else { return } + + let callsite = stopTestError.callsite + + #if canImport(Darwin) + let file = callsite.file + let location = XCTSourceCodeLocation(filePath: file, lineNumber: Int(callsite.line)) + let sourceCodeContext = XCTSourceCodeContext(location: location) + let issue = XCTIssue( + type: .assertionFailure, + compactDescription: stopTestError.failureDescription, + sourceCodeContext: sourceCodeContext + ) + AsyncSpec.current?.record(issue) + #else + let file = callsite.file.description + AsyncSpec.current?.recordFailure( + withDescription: stopTestError.failureDescription, + inFile: file, + atLine: Int(callsite.line), + expected: true + ) + #endif + } +} + +extension AsyncExample { + /** + Returns a boolean indicating whether two Example objects are equal. + If two examples are defined at the exact same callsite, they must be equal. + */ + @nonobjc public static func == (lhs: AsyncExample, rhs: AsyncExample) -> Bool { + return lhs.callsite == rhs.callsite + } +} diff --git a/Example/Pods/Quick/Sources/Quick/Examples/Example.swift b/Example/Pods/Quick/Sources/Quick/Examples/Example.swift new file mode 100644 index 000000000..42d3f4ad5 --- /dev/null +++ b/Example/Pods/Quick/Sources/Quick/Examples/Example.swift @@ -0,0 +1,326 @@ +import Foundation +import XCTest + +#if canImport(Darwin) +// swiftlint:disable type_name +@objcMembers +public class _ExampleBase: NSObject {} +#else +public class _ExampleBase: NSObject {} +// swiftlint:enable type_name +#endif + +/** + The common superclass of both Example and AsyncExample. This is mostly used for + determining filtering (focusing or pending) and other cases where we want to apply + something to any kind of example. + */ +public class ExampleBase: _ExampleBase { + /** + A boolean indicating whether the example is a shared example; + i.e.: whether it is an example defined with `itBehavesLike`. + */ + public var isSharedExample = false + + /** + The site at which the example is defined. + This must be set correctly in order for Xcode to highlight + the correct line in red when reporting a failure. + */ + public var callsite: Callsite + + internal let flags: FilterFlags + + init(callsite: Callsite, flags: FilterFlags) { + self.callsite = callsite + self.flags = flags + } + + /** + Evaluates the filter flags set on this example and on the example groups + this example belongs to. Flags set on the example are trumped by flags on + the example group it belongs to. Flags on inner example groups are trumped + by flags on outer example groups. + */ + internal var filterFlags: FilterFlags { + [:] + } + + /** + The example name. A name is a concatenation of the name of + the example group the example belongs to, followed by the + description of the example itself. + + The example name is used to generate a test method selector + to be displayed in Xcode's test navigator. + */ + public var name: String { "" } +} + +public class Example: ExampleBase { + weak internal var group: ExampleGroup? + + private let internalDescription: String + private let closure: ExampleClosure + + internal init(description: String, callsite: Callsite, flags: FilterFlags, closure: @escaping ExampleClosure) { + self.internalDescription = description + self.closure = closure + super.init(callsite: callsite, flags: flags) + } + + public override var description: String { + return internalDescription + } + + /** + The example name. A name is a concatenation of the name of + the example group the example belongs to, followed by the + description of the example itself. + + The example name is used to generate a test method selector + to be displayed in Xcode's test navigator. + */ + public override var name: String { + guard let groupName = group?.name else { return description } + return "\(groupName), \(description)" + } + + @MainActor + public func run() { + let world = World.sharedWorld + + if world.numberOfExamplesRun == 0 { + world.suiteHooks.executeBefores() + } + + let exampleMetadata = SyncExampleMetadata(group: group!, example: self, exampleIndex: world.numberOfExamplesRun) + world.currentExampleMetadata = exampleMetadata + defer { + world.currentExampleMetadata = nil + } + + group!.phase = .beforesExecuting + + let runExample: () -> Void = { [closure, name, callsite] in + self.group!.phase = .beforesFinished + + do { + try closure() + } catch { + self.handleErrorInTest(error, name: name, callsite: callsite) + } + + self.group!.phase = .aftersExecuting + } + + var cancelTests = false + + let handleThrowingClosure: (@escaping () throws -> Void) -> () -> Void = { [name, callsite] (closure: @escaping () throws -> Void) in + { + if cancelTests { return } + do { + try closure() + } catch { + self.handleErrorInTest(error, name: name, callsite: callsite) + cancelTests = true + } + } + } + + let allJustBeforeEachStatements = group!.justBeforeEachStatements + world.exampleHooks.justBeforeEachStatements + let justBeforeEachExample = allJustBeforeEachStatements.reduce(runExample as () throws -> Void) { closure, wrapper in + return { try wrapper(exampleMetadata, handleThrowingClosure(closure)) } + } + + let allWrappers = group!.wrappers + world.exampleHooks.wrappers + let wrappedExample = allWrappers.reduce(justBeforeEachExample) { closure, wrapper in + return { try wrapper(exampleMetadata, handleThrowingClosure(closure)) } + } + do { + try wrappedExample() + } catch { + self.handleErrorInTest(error, name: name, callsite: callsite) + } + + group!.phase = .aftersFinished + + world.numberOfSyncExamplesRun += 1 + + if !world.isRunningAdditionalSuites && world.numberOfExamplesRun >= world.cachedIncludedExampleCount { + world.suiteHooks.executeAfters() + } + } + + @MainActor + public func runSkippedTest() { + let world = World.sharedWorld + + if world.numberOfExamplesRun == 0 { + world.suiteHooks.executeBefores() + } + + reportSkippedTest(XCTSkip("Test was filtered out."), name: name, callsite: callsite) + + world.numberOfSyncExamplesRun += 1 + + if !world.isRunningAdditionalSuites && world.numberOfExamplesRun >= world.cachedIncludedExampleCount { + world.suiteHooks.executeAfters() + } + } + + /** + Evaluates the filter flags set on this example and on the example groups + this example belongs to. Flags set on the example are trumped by flags on + the example group it belongs to. Flags on inner example groups are trumped + by flags on outer example groups. + */ + internal override var filterFlags: FilterFlags { + var aggregateFlags = flags + for (key, value) in group!.filterFlags { + aggregateFlags[key] = value + } + return aggregateFlags + } + + #if canImport(Darwin) + static internal let recordSkipSelector = NSSelectorFromString("recordSkipWithDescription:sourceCodeContext:") + #endif + + internal func handleErrorInTest(_ error: Error, name: String, callsite: Callsite) { + if let stopTestError = error as? StopTest { + self.reportStoppedTest(stopTestError) + } else if let testSkippedError = error as? XCTSkip { + self.reportSkippedTest(testSkippedError, name: name, callsite: callsite) + } else { + self.reportFailedTest(error, name: name, callsite: callsite) + } + } + + internal func reportSkippedTest(_ testSkippedError: XCTSkip, name: String, callsite: Callsite) { + #if !canImport(Darwin) + return // This functionality is only supported by Apple's proprietary XCTest, not by swift-corelibs-xctest + #else // `NSSelectorFromString` requires the Objective-C runtime, which is not available on Linux. + + let messageSuffix = """ + \n + If nobody else has done so yet, please submit an issue to https://github.com/Quick/Quick/issues + + For now, we'll just benignly ignore skipped tests. + """ + + guard let testRun = QuickSpec.current.testRun else { + print(""" + [Quick Warning]: `QuickSpec.current.testRun` was unexpectededly `nil`. + """ + messageSuffix) + return + } + + guard let skippedTestContextAny = testSkippedError.errorUserInfo["XCTestErrorUserInfoKeySkippedTestContext"] else { + print(""" + [Quick Warning]: The internals of Apple's XCTestCaseRun have changed. + We expected the `errorUserInfo` dictionary of the XCTSKip error to contain a value for the key + "XCTestErrorUserInfoKeySkippedTestContext", but it didn't. + """ + messageSuffix) + return + } + + // Uses an internal type "XCTSkippedTestContext", but "NSObject" will be sufficient for `perform(_:with:_with:)`. + guard let skippedTestContext = skippedTestContextAny as? NSObject else { + print(""" + [Quick Warning]: The internals of Apple's XCTestCaseRun have changed. + We expected `skippedTestContextAny` to have type `NSObject`, + but we got an object of type \(type(of: skippedTestContextAny)) + """ + messageSuffix) + return + } + + guard let sourceCodeContextAny = skippedTestContext.value(forKey: "sourceCodeContext") else { + print(""" + [Quick Warning]: The internals of Apple's XCTestCaseRun have changed. + We expected `XCTSkippedTestContext` to have a `sourceCodeContext` property, but it did not. + """ + messageSuffix) + return + } + + guard let sourceCodeContext = sourceCodeContextAny as? XCTSourceCodeContext else { + print(""" + [Quick Warning]: The internals of Apple's XCTestCaseRun have changed. + We expected `XCTSkippedTestContext.sourceCodeContext` to have type `XCTSourceCodeContext`, + but we got an object of type \(type(of: sourceCodeContextAny)). + """ + messageSuffix) + return + } + + guard testRun.responds(to: Self.recordSkipSelector) else { + print(""" + [Quick Warning]: The internals of Apple's XCTestCaseRun have changed, as it no longer responds to + the -[XCTSkip \(NSStringFromSelector(Self.recordSkipSelector))] message necessary to report skipped tests to Xcode. + """ + messageSuffix) + return + } + + testRun.perform(Self.recordSkipSelector, with: testSkippedError.message, with: sourceCodeContext) + #endif + } + + internal func reportFailedTest(_ error: Error, name: String, callsite: Callsite) { + let description = "Test \(name) threw unexpected error: \(error.localizedDescription)" + + #if canImport(Darwin) + let file = callsite.file + let location = XCTSourceCodeLocation(filePath: file, lineNumber: Int(callsite.line)) + let sourceCodeContext = XCTSourceCodeContext(location: location) + let issue = XCTIssue( + type: .thrownError, + compactDescription: description, + sourceCodeContext: sourceCodeContext + ) + QuickSpec.current.record(issue) + #else + let file = callsite.file.description + QuickSpec.current.recordFailure( + withDescription: description, + inFile: file, + atLine: Int(callsite.line), + expected: false + ) + #endif + } + + internal func reportStoppedTest(_ stopTestError: StopTest) { + guard stopTestError.reportError else { return } + + let callsite = stopTestError.callsite + + #if canImport(Darwin) + let file = callsite.file + let location = XCTSourceCodeLocation(filePath: file, lineNumber: Int(callsite.line)) + let sourceCodeContext = XCTSourceCodeContext(location: location) + let issue = XCTIssue( + type: .assertionFailure, + compactDescription: stopTestError.failureDescription, + sourceCodeContext: sourceCodeContext + ) + QuickSpec.current.record(issue) + #else + let file = callsite.file.description + QuickSpec.current.recordFailure( + withDescription: stopTestError.failureDescription, + inFile: file, + atLine: Int(callsite.line), + expected: true + ) + #endif + } +} + +extension Example { + /** + Returns a boolean indicating whether two Example objects are equal. + If two examples are defined at the exact same callsite, they must be equal. + */ + @nonobjc public static func == (lhs: Example, rhs: Example) -> Bool { + return lhs.callsite == rhs.callsite + } +} diff --git a/Example/Pods/Quick/Sources/Quick/Examples/ExampleMetadata.swift b/Example/Pods/Quick/Sources/Quick/Examples/ExampleMetadata.swift new file mode 100644 index 000000000..484ccf194 --- /dev/null +++ b/Example/Pods/Quick/Sources/Quick/Examples/ExampleMetadata.swift @@ -0,0 +1,51 @@ +import Foundation + +#if canImport(Darwin) +// swiftlint:disable type_name +@objcMembers +public class _ExampleMetadataBase: NSObject {} +#else +public class _ExampleMetadataBase: NSObject {} +// swiftlint:enable type_name +#endif + +/** + A class that encapsulates information about an example, + including the index at which the example was executed, as + well as the example itself. +*/ +public class ExampleMetadata: _ExampleMetadataBase { + /** + The example for which this metadata was collected. + */ + public let example: ExampleBase + + /** + The index at which this example was executed in the + test suite. + */ + public let exampleIndex: Int + + fileprivate init(example: ExampleBase, exampleIndex: Int) { + self.example = example + self.exampleIndex = exampleIndex + } +} + +final class SyncExampleMetadata: ExampleMetadata { + let group: ExampleGroup + + init(group: ExampleGroup, example: ExampleBase, exampleIndex: Int) { + self.group = group + super.init(example: example, exampleIndex: exampleIndex) + } +} + +final class AsyncExampleMetadata: ExampleMetadata { + let group: AsyncExampleGroup + + init(group: AsyncExampleGroup, example: ExampleBase, exampleIndex: Int) { + self.group = group + super.init(example: example, exampleIndex: exampleIndex) + } +} diff --git a/Example/Pods/Quick/Sources/Quick/Filter.swift b/Example/Pods/Quick/Sources/Quick/Filter.swift index a250631af..1a14f74d9 100644 --- a/Example/Pods/Quick/Sources/Quick/Filter.swift +++ b/Example/Pods/Quick/Sources/Quick/Filter.swift @@ -1,14 +1,5 @@ import Foundation -#if canImport(Darwin) -// swiftlint:disable type_name -@objcMembers -internal class _FilterBase: NSObject {} -#else -internal class _FilterBase: NSObject {} -// swiftlint:enable type_name -#endif - /** A mapping of string keys to booleans that can be used to filter examples or example groups. For example, a "focused" @@ -20,12 +11,13 @@ internal typealias FilterFlags = [String: Bool] A namespace for filter flag keys, defined primarily to make the keys available in Objective-C. */ -final internal class Filter: _FilterBase { +final internal class Filter: NSObject { /** Example and example groups with [Focused: true] are included in test runs, excluding all other examples without this flag. Use this to only run one or two tests that you're currently focusing on. */ + @nonobjc internal class var focused: String { return "focused" } @@ -34,6 +26,7 @@ final internal class Filter: _FilterBase { Example and example groups with [Pending: true] are excluded from test runs. Use this to temporarily suspend examples that you know do not pass yet. */ + @nonobjc internal class var pending: String { return "pending" } diff --git a/Example/Pods/Quick/Sources/Quick/Hooks/AsyncExampleHooks.swift b/Example/Pods/Quick/Sources/Quick/Hooks/AsyncExampleHooks.swift new file mode 100644 index 000000000..055d27098 --- /dev/null +++ b/Example/Pods/Quick/Sources/Quick/Hooks/AsyncExampleHooks.swift @@ -0,0 +1,53 @@ +import Foundation + +/** + A container for closures to be executed before and after each example. +*/ +final internal class AsyncExampleHooks { + internal var justBeforeEachStatements: [AroundExampleWithMetadataAsyncClosure] = [] + internal var wrappers: [AroundExampleWithMetadataAsyncClosure] = [] + internal var phase: HooksPhase = .nothingExecuted + + internal func appendJustBeforeEach(_ closure: @escaping BeforeExampleAsyncClosure) { + justBeforeEachStatements.append { _, runExample in + try await closure() + await runExample() + } + } + + internal func appendBefore(_ closure: @escaping BeforeExampleWithMetadataAsyncClosure) { + wrappers.append { exampleMetadata, runExample in + try await closure(exampleMetadata) + await runExample() + } + } + + internal func appendBefore(_ closure: @escaping BeforeExampleAsyncClosure) { + wrappers.append { _, runExample in + try await closure() + await runExample() + } + } + + internal func appendAfter(_ closure: @escaping AfterExampleWithMetadataAsyncClosure) { + wrappers.prepend { exampleMetadata, runExample in + await runExample() + try await closure(exampleMetadata) + } + } + + internal func appendAfter(_ closure: @escaping AfterExampleAsyncClosure) { + wrappers.prepend { _, runExample in + await runExample() + try await closure() + } + } + + internal func appendAround(_ closure: @escaping AroundExampleWithMetadataAsyncClosure) { + wrappers.append(closure) + } + + internal func appendAround(_ closure: @escaping AroundExampleAsyncClosure) { + wrappers.append { _, runExample in try await closure(runExample) } + } +} diff --git a/Example/Pods/Quick/Sources/Quick/Hooks/Closures.swift b/Example/Pods/Quick/Sources/Quick/Hooks/Closures.swift index e70194d2f..5a3e90aea 100644 --- a/Example/Pods/Quick/Sources/Quick/Hooks/Closures.swift +++ b/Example/Pods/Quick/Sources/Quick/Hooks/Closures.swift @@ -1,48 +1,146 @@ // MARK: Example Hooks +/** + An async throwing closure executed before an example is run. +*/ +public typealias BeforeExampleAsyncClosure = () async throws -> Void + +/** + A throwing closure executed before an example is run. + */ +public typealias BeforeExampleClosure = @MainActor () throws -> Void + /** A closure executed before an example is run. + This is only used by ObjC. + */ +public typealias BeforeExampleNonThrowingClosure = @MainActor () -> Void + +/** + An async throwing closure executed before an example is run. The closure is given example metadata, + which contains information about the example that is about to be run. */ -public typealias BeforeExampleClosure = () -> Void +public typealias BeforeExampleWithMetadataAsyncClosure = (_ exampleMetadata: ExampleMetadata) async throws -> Void + +/** + A throwing closure executed before an example is run. The closure is given example metadata, + which contains information about the example that is about to be run. + */ +public typealias BeforeExampleWithMetadataClosure = @MainActor (_ exampleMetadata: ExampleMetadata) throws -> Void /** A closure executed before an example is run. The closure is given example metadata, which contains information about the example that is about to be run. + This is only used by ObjC + */ +public typealias BeforeExampleWithMetadataNonThrowingClosure = @MainActor (_ exampleMetadata: ExampleMetadata) -> Void + +/** + A closure for running an example. + */ +public typealias ExampleClosure = @MainActor () throws -> Void + +/** + An async throwing closure executed after an example is run. */ -public typealias BeforeExampleWithMetadataClosure = (_ exampleMetadata: ExampleMetadata) -> Void +public typealias AfterExampleAsyncClosure = BeforeExampleAsyncClosure /** - A closure executed after an example is run. + A throwing closure executed after an example is run. */ public typealias AfterExampleClosure = BeforeExampleClosure /** - A closure executed after an example is run. The closure is given example metadata, + A closure executed after an example is run. + This is only used by ObjC +*/ +public typealias AfterExampleNonThrowingClosure = BeforeExampleNonThrowingClosure + +/** + An async throwing closure executed after an example is run. The closure is given example metadata, + which contains information about the example that has just finished running. +*/ +public typealias AfterExampleWithMetadataAsyncClosure = BeforeExampleWithMetadataAsyncClosure + +/** + A throwing closure executed after an example is run. The closure is given example metadata, which contains information about the example that has just finished running. */ public typealias AfterExampleWithMetadataClosure = BeforeExampleWithMetadataClosure +/** + A closure executed after an example is run. The closure is given example metadata, + which contains information about the example that has just finished running. +*/ +public typealias AfterExampleWithMetadataNonThrowingClosure = BeforeExampleWithMetadataNonThrowingClosure + +/** + A throwing closure which wraps an example. The closure must call runExample() exactly once. +*/ +public typealias AroundExampleClosure = @MainActor (_ runExample: @escaping () -> Void) throws -> Void + /** A closure which wraps an example. The closure must call runExample() exactly once. */ -public typealias AroundExampleClosure = (_ runExample: @escaping () -> Void) -> Void +public typealias AroundExampleNonThrowingClosure = @MainActor (_ runExample: @escaping () -> Void) -> Void /** - A closure which wraps an example. The closure is given example metadata, + A throwing closure which wraps an example. The closure is given example metadata, which contains information about the example that the wrapper will run. The closure must call runExample() exactly once. */ public typealias AroundExampleWithMetadataClosure = - (_ exampleMetadata: ExampleMetadata, _ runExample: @escaping () -> Void) -> Void +@MainActor (_ exampleMetadata: ExampleMetadata, _ runExample: @escaping () -> Void) throws -> Void + +/** + A throwing closure which wraps an example. The closure is given example metadata, + which contains information about the example that the wrapper will run. + The closure must call runExample() exactly once. +*/ +public typealias AroundExampleWithMetadataNonThrowingClosure = +@MainActor (_ exampleMetadata: ExampleMetadata, _ runExample: @escaping () -> Void) -> Void + +/** + An async throwing closure which wraps an example. The closure must call runExample() exactly once. +*/ +public typealias AroundExampleAsyncClosure = (_ runExample: @escaping () async -> Void) async throws -> Void + +/** + An async throwing closure which wraps an example. The closure is given example metadata, + which contains information about the example that the wrapper will run. + The closure must call runExample() exactly once. +*/ +public typealias AroundExampleWithMetadataAsyncClosure = + (_ exampleMetadata: ExampleMetadata, _ runExample: @escaping () async -> Void) async throws -> Void // MARK: Suite Hooks +/** + An async throwing closure executed before any examples are run. +*/ +public typealias BeforeSuiteAsyncClosure = () async throws -> Void + +/** + A throwing closure executed before any examples are run. +*/ +public typealias BeforeSuiteClosure = @MainActor () throws -> Void + /** A closure executed before any examples are run. */ -public typealias BeforeSuiteClosure = () -> Void +public typealias BeforeSuiteNonThrowingClosure = @MainActor () -> Void /** - A closure executed after all examples have finished running. + An async throwing closure executed after all examples have finished running. +*/ +public typealias AfterSuiteAsyncClosure = BeforeSuiteAsyncClosure + +/** + A throwing closure executed after all examples have finished running. */ public typealias AfterSuiteClosure = BeforeSuiteClosure + +/** + A closure executed after all examples have finished running. +*/ +public typealias AfterSuiteNonThrowingClosure = BeforeSuiteNonThrowingClosure diff --git a/Example/Pods/Quick/Sources/Quick/Hooks/ExampleHooks.swift b/Example/Pods/Quick/Sources/Quick/Hooks/ExampleHooks.swift index 51f004bea..0fc038417 100644 --- a/Example/Pods/Quick/Sources/Quick/Hooks/ExampleHooks.swift +++ b/Example/Pods/Quick/Sources/Quick/Hooks/ExampleHooks.swift @@ -1,20 +1,30 @@ +import Foundation + /** A container for closures to be executed before and after each example. */ final internal class ExampleHooks { + internal var justBeforeEachStatements: [AroundExampleWithMetadataClosure] = [] internal var wrappers: [AroundExampleWithMetadataClosure] = [] internal var phase: HooksPhase = .nothingExecuted + internal func appendJustBeforeEach(_ closure: @escaping BeforeExampleClosure) { + justBeforeEachStatements.append { _, runExample in + try closure() + runExample() + } + } + internal func appendBefore(_ closure: @escaping BeforeExampleWithMetadataClosure) { wrappers.append { exampleMetadata, runExample in - closure(exampleMetadata) + try closure(exampleMetadata) runExample() } } internal func appendBefore(_ closure: @escaping BeforeExampleClosure) { wrappers.append { _, runExample in - closure() + try closure() runExample() } } @@ -22,14 +32,14 @@ final internal class ExampleHooks { internal func appendAfter(_ closure: @escaping AfterExampleWithMetadataClosure) { wrappers.prepend { exampleMetadata, runExample in runExample() - closure(exampleMetadata) + try closure(exampleMetadata) } } internal func appendAfter(_ closure: @escaping AfterExampleClosure) { wrappers.prepend { _, runExample in runExample() - closure() + try closure() } } @@ -38,7 +48,7 @@ final internal class ExampleHooks { } internal func appendAround(_ closure: @escaping AroundExampleClosure) { - wrappers.append { _, runExample in closure(runExample) } + wrappers.append { _, runExample in try closure(runExample) } } } diff --git a/Example/Pods/Quick/Sources/Quick/Hooks/SuiteHooks.swift b/Example/Pods/Quick/Sources/Quick/Hooks/SuiteHooks.swift index b39292b7a..2c7c123bb 100644 --- a/Example/Pods/Quick/Sources/Quick/Hooks/SuiteHooks.swift +++ b/Example/Pods/Quick/Sources/Quick/Hooks/SuiteHooks.swift @@ -14,18 +14,28 @@ final internal class SuiteHooks { afters.append(closure) } + @MainActor internal func executeBefores() { phase = .beforesExecuting for before in befores { - before() + do { + try before() + } catch { + break + } } phase = .beforesFinished } + @MainActor internal func executeAfters() { phase = .aftersExecuting for after in afters { - after() + do { + try after() + } catch { + break + } } phase = .aftersFinished } diff --git a/Example/Pods/Quick/Sources/Quick/QuickTestObservation.swift b/Example/Pods/Quick/Sources/Quick/QuickTestObservation.swift index 8bfc95b45..1c2c033d1 100644 --- a/Example/Pods/Quick/Sources/Quick/QuickTestObservation.swift +++ b/Example/Pods/Quick/Sources/Quick/QuickTestObservation.swift @@ -5,7 +5,7 @@ import XCTest /// A dummy protocol for calling the internal `+[QuickSpec buildExamplesIfNeeded]` method /// which is defined in Objective-C from Swift. -@objc internal protocol _QuickSpecInternal { +@objc internal protocol _QuickSpecInternal { // swiftlint:disable:this type_name static func buildExamplesIfNeeded() } @@ -27,52 +27,11 @@ import XCTest guard !didBuildAllExamples else { return } didBuildAllExamples = true - QuickSpec.enumerateSubclasses { specClass in - // This relies on `_QuickSpecInternal`. - (specClass as AnyClass).buildExamplesIfNeeded() - } - } -} - -// swiftlint:disable:next todo -// TODO: Unify this with QuickConfiguration's equivalent -extension QuickSpec { - internal static func enumerateSubclasses( - subclasses: [QuickSpec.Type]? = nil, - _ block: (QuickSpec.Type) -> Void - ) { - let subjects: [QuickSpec.Type] - if let subclasses = subclasses { - subjects = subclasses - } else { - let classesCount = objc_getClassList(nil, 0) - - guard classesCount > 0 else { - return + allSubclasses(ofType: QuickSpec.self) + .forEach { (specClass: QuickSpec.Type) in + // This relies on `_QuickSpecInternal`. + (specClass as AnyClass).buildExamplesIfNeeded() } - - let classes = UnsafeMutablePointer.allocate(capacity: Int(classesCount)) - defer { free(classes) } - - let autoreleasingClasses = AutoreleasingUnsafeMutablePointer(classes) - objc_getClassList(autoreleasingClasses, classesCount) - - var specSubclasses: [QuickSpec.Type] = [] - for index in 0.. Bool { + /// if property.isValid { + /// return true + /// } else { + /// XCTFail("\(property) is not valid") + /// return false + /// } + /// } + /// + /// guard checkProperty() else { + /// throw StopTest.error + /// } + /// ``` + public static let silently: StopTest = .init("", reportError: false, file: #file, line: #line) +} diff --git a/Example/Pods/Quick/Sources/Quick/SubclassDetection.swift b/Example/Pods/Quick/Sources/Quick/SubclassDetection.swift new file mode 100644 index 000000000..ad93036dd --- /dev/null +++ b/Example/Pods/Quick/Sources/Quick/SubclassDetection.swift @@ -0,0 +1,41 @@ +#if canImport(Darwin) + +import Foundation + +/// Determines if a class is a subclass of another by looping over the superclasses of the given class. +/// Apparently, `isSubclass(of:)` uses a different method to check this, which can cause exceptions to +/// be raised under certain circumstances when used in conjuction with `objc_getClassList`. +/// See https://github.com/Quick/Quick/issues/1155, and https://openradar.appspot.com/FB9854851. +func isClass(_ klass: AnyClass, aSubclassOf targetClass: AnyClass) -> Bool { + var superclass: AnyClass? = klass + while superclass != nil { + superclass = class_getSuperclass(superclass) + if superclass == targetClass { return true } + } + return false +} +#endif + +/// Retrieves the current list of all known classes that are a subtype of the desired type. +/// This uses `objc_copyClassList` instead of `objc_getClassList` because the get function +/// is subject to race conditions and buffer overflow issues. The copy function handles all of that for us. +/// Note: On non-Apple platforms, this will return an empty array. +func allSubclasses(ofType targetType: T.Type) -> [T.Type] { + #if canImport(Darwin) + // See https://developer.apple.com/forums/thread/700770. + var classesCount: UInt32 = 0 + guard let classList = objc_copyClassList(&classesCount) else { return [] } + defer { free(UnsafeMutableRawPointer(classList)) } + let classes = UnsafeBufferPointer(start: classList, count: Int(classesCount)) + + guard classesCount > 0 else { + return [] + } + + return classes.filter { isClass($0, aSubclassOf: targetType) } + // swiftlint:disable:next force_cast + .map { $0 as! T.Type } + #else + return [] + #endif +} diff --git a/Example/Pods/Quick/Sources/Quick/TestSelectorNameProvider.swift b/Example/Pods/Quick/Sources/Quick/TestSelectorNameProvider.swift new file mode 100644 index 000000000..4fad845b1 --- /dev/null +++ b/Example/Pods/Quick/Sources/Quick/TestSelectorNameProvider.swift @@ -0,0 +1,52 @@ +#if canImport(Darwin) +import Foundation + +@objc internal final class TestSelectorNameProvider: NSObject { + @objc static func testSelectorName(for example: Example, classSelectorNames selectorNames: Set) -> String { + if useLegacyStyleTestSelectorNames { + return legacyStyleTestSelectorName(exampleName: example.name, classSelectorNames: selectorNames, isAsync: false) + } else { + return humanReadableTestSelectorName(exampleName: example.name, classSelectorNames: selectorNames) + } + } + + static func testSelectorName(forAsync example: AsyncExample, classSelectorNames selectorNames: Set) -> String { + if useLegacyStyleTestSelectorNames { + return legacyStyleTestSelectorName(exampleName: example.name, classSelectorNames: selectorNames, isAsync: true) + } else { + return humanReadableTestSelectorName(exampleName: example.name, classSelectorNames: selectorNames) + } + } + + internal static var useLegacyStyleTestSelectorNames: Bool = { + ProcessInfo.processInfo.environment["QUICK_USE_ENCODED_TEST_SELECTOR_NAMES"] != nil + }() + + private static func legacyStyleTestSelectorName(exampleName: String, classSelectorNames selectorNames: Set, isAsync: Bool) -> String { + let originalName = exampleName.c99ExtendedIdentifier + var selectorName = originalName + var index: UInt = 2 + + var proposedName = isAsync ? selectorName.appending(":") : selectorName + + while selectorNames.contains(proposedName) { + selectorName = String(format: "%@_%tu", originalName, index) + proposedName = isAsync ? selectorName.appending(":") : selectorName + index += 1 + } + + return proposedName + } + + private static func humanReadableTestSelectorName(exampleName: String, classSelectorNames selectorNames: Set) -> String { + var selectorName = exampleName + var index: UInt = 2 + + while selectorNames.contains(selectorName) { + selectorName = String(format: "%@ (%tu)", exampleName, index) + index += 1 + } + return selectorName + } +} +#endif diff --git a/Example/Pods/Quick/Sources/Quick/TestState.swift b/Example/Pods/Quick/Sources/Quick/TestState.swift new file mode 100644 index 000000000..c66cd388c --- /dev/null +++ b/Example/Pods/Quick/Sources/Quick/TestState.swift @@ -0,0 +1,59 @@ +/// A property wrapper that will automatically reset the contained value after each test. +@propertyWrapper +public struct TestState { + private class Container { + var value: T? + } + + private let container = Container() + + public var wrappedValue: T! { + get { container.value } + set { container.value = newValue } + } + + /// Resets the property to nil after each test. + public init() { + if AsyncWorld.sharedWorld.currentExampleGroup != nil { + AsyncWorld.sharedWorld.beforeEach { [container] in + AsyncSpec.current.addTeardownBlock { + container.value = nil + } + } + } + + if World.sharedWorld.currentExampleGroup != nil { + World.sharedWorld.beforeEach { [container] in + QuickSpec.current.addTeardownBlock { + container.value = nil + } + } + } + } + + public init(wrappedValue: @escaping @autoclosure () -> T?) { + if AsyncWorld.sharedWorld.currentExampleGroup != nil { + AsyncWorld.sharedWorld.beforeEach { [container] in + container.value = wrappedValue() + AsyncSpec.current.addTeardownBlock { + container.value = nil + } + } + } + + if World.sharedWorld.currentExampleGroup != nil { + World.sharedWorld.beforeEach { [container] in + container.value = wrappedValue() + QuickSpec.current.addTeardownBlock { + container.value = nil + } + } + } + } + + /// Sets the property to an initial value before each test and resets it to nil after each test. + /// - Parameter initialValue: An autoclosure to return the initial value to use before the test. + public init(_ initialValue: @escaping @autoclosure () -> T) { + self.init(wrappedValue: initialValue()) + } +} diff --git a/Example/Pods/Quick/Sources/Quick/World.swift b/Example/Pods/Quick/Sources/Quick/World.swift index c14e871aa..3a511325b 100644 --- a/Example/Pods/Quick/Sources/Quick/World.swift +++ b/Example/Pods/Quick/Sources/Quick/World.swift @@ -45,10 +45,12 @@ final internal class World: _WorldBase { This is useful for using the Quick test metadata (like its name) at runtime. */ + internal var currentExampleMetadata: SyncExampleMetadata? - internal var currentExampleMetadata: ExampleMetadata? - - internal var numberOfExamplesRun = 0 + internal var numberOfSyncExamplesRun = 0 + internal var numberOfExamplesRun: Int { + numberOfSyncExamplesRun + AsyncWorld.sharedWorld.numberOfAsyncExamplesRun + } /** A flag that indicates whether additional test suites are being run @@ -69,7 +71,8 @@ final internal class World: _WorldBase { internal private(set) var isConfigurationFinalized = false - internal var exampleHooks: ExampleHooks {return configuration.exampleHooks } + internal var exampleHooks: ExampleHooks { return configuration.exampleHooks } + internal var asyncExampleHooks: AsyncExampleHooks { return configuration.asyncExampleHooks } internal var suiteHooks: SuiteHooks { return configuration.suiteHooks } // MARK: Singleton Constructor @@ -134,7 +137,7 @@ final internal class World: _WorldBase { top level of a -[QuickSpec spec] method--it's thanks to this group that users can define beforeEach and it closures at the top level, like so: - override func spec() { + override class func spec() { // These belong to the root example group beforeEach {} it("is at the top level") {} @@ -166,16 +169,21 @@ final internal class World: _WorldBase { not excluded by exclusion filters. - parameter specClass: The QuickSpec subclass for which examples are to be returned. - - returns: A list of examples to be run as test invocations. + - returns: A list of examples to be run as test invocations, along with whether to run the full test, or just mark it as skipped. */ - internal func examples(forSpecClass specClass: QuickSpec.Type) -> [Example] { + internal func examples(forSpecClass specClass: QuickSpec.Type) -> [ExampleWrapper] { // 1. Grab all included examples. - let included = includedExamples + let included = includedExamples() // 2. Grab the intersection of (a) examples for this spec, and (b) included examples. - let spec = rootExampleGroup(forSpecClass: specClass).examples.filter { included.contains($0) } + let spec = rootExampleGroup(forSpecClass: specClass).examples.map { example in + return ExampleWrapper( + example: example, + runFullTest: included.first(where: { $0.example == example})?.runFullTest ?? false + ) + } // 3. Remove all excluded examples. - return spec.filter { example in - !self.configuration.exclusionFilters.contains { $0(example) } + return spec.map { test -> ExampleWrapper in + ExampleWrapper(example: test.example, runFullTest: test.runFullTest && !self.configuration.exclusionFilters.contains { $0(test.example) }) } } @@ -192,7 +200,7 @@ final internal class World: _WorldBase { } internal var includedExampleCount: Int { - return includedExamples.count + return includedExamples().count } internal lazy var cachedIncludedExampleCount: Int = self.includedExampleCount @@ -201,7 +209,7 @@ final internal class World: _WorldBase { let suiteBeforesExecuting = suiteHooks.phase == .beforesExecuting let exampleBeforesExecuting = exampleHooks.phase == .beforesExecuting var groupBeforesExecuting = false - if let runningExampleGroup = currentExampleMetadata?.example.group { + if let runningExampleGroup = currentExampleMetadata?.group { groupBeforesExecuting = runningExampleGroup.phase == .beforesExecuting } @@ -212,7 +220,7 @@ final internal class World: _WorldBase { let suiteAftersExecuting = suiteHooks.phase == .aftersExecuting let exampleAftersExecuting = exampleHooks.phase == .aftersExecuting var groupAftersExecuting = false - if let runningExampleGroup = currentExampleMetadata?.example.group { + if let runningExampleGroup = currentExampleMetadata?.group { groupAftersExecuting = runningExampleGroup.phase == .aftersExecuting } @@ -228,7 +236,7 @@ final internal class World: _WorldBase { currentExampleGroup = previousExampleGroup } - private var allExamples: [Example] { + private func allExamples() -> [Example] { var all: [Example] = [] for (_, group) in specs { group.walkDownExamples { all.append($0) } @@ -236,20 +244,32 @@ final internal class World: _WorldBase { return all } - private var includedExamples: [Example] { - let all = allExamples - let included = all.filter { example in + internal func hasFocusedExamples() -> Bool { + return allExamples().contains { example in return self.configuration.inclusionFilters.contains { $0(example) } } + } - if included.isEmpty && configuration.runAllWhenEverythingFiltered { - let exceptExcluded = all.filter { example in - return !self.configuration.exclusionFilters.contains { $0(example) } - } + private func includedExamples() -> [ExampleWrapper] { + let all = allExamples() + let hasFocusedExamples = self.hasFocusedExamples() || AsyncWorld.sharedWorld.hasFocusedExamples() - return exceptExcluded + if !hasFocusedExamples && configuration.runAllWhenEverythingFiltered { + return all.map { example in + return ExampleWrapper( + example: example, + runFullTest: !self.configuration.exclusionFilters.contains { $0(example) } + ) + } } else { - return included + return all.map { example in + return ExampleWrapper( + example: example, + runFullTest: self.configuration.inclusionFilters.contains { + $0(example) + } + ) + } } } @@ -265,3 +285,23 @@ final internal class World: _WorldBase { } } } + +#if canImport(Darwin) +// swiftlint:disable type_name +@objcMembers +internal class _ExampleWrapperBase: NSObject {} +#else +internal class _ExampleWrapperBase: NSObject {} +// swiftlint:enable type_name +#endif + +final internal class ExampleWrapper: _ExampleWrapperBase { + private(set) var example: Example + private(set) var runFullTest: Bool + + init(example: Example, runFullTest: Bool) { + self.example = example + self.runFullTest = runFullTest + super.init() + } +} diff --git a/Example/Pods/Quick/Sources/QuickObjCRuntime/include/QuickSpecBase.h b/Example/Pods/Quick/Sources/QuickObjCRuntime/include/QuickSpecBase.h index 2ee00e73d..73344dc1a 100644 --- a/Example/Pods/Quick/Sources/QuickObjCRuntime/include/QuickSpecBase.h +++ b/Example/Pods/Quick/Sources/QuickObjCRuntime/include/QuickSpecBase.h @@ -1,7 +1,11 @@ #import #import +NS_ASSUME_NONNULL_BEGIN + @interface _QuickSpecBase : XCTestCase + (NSArray *)_qck_testMethodSelectors; - (instancetype)init NS_DESIGNATED_INITIALIZER; @end + +NS_ASSUME_NONNULL_END diff --git a/Example/Pods/Quick/Sources/QuickObjectiveC/AsyncSpec+testMethodSelectors.m b/Example/Pods/Quick/Sources/QuickObjectiveC/AsyncSpec+testMethodSelectors.m new file mode 100644 index 000000000..26ef3b1f3 --- /dev/null +++ b/Example/Pods/Quick/Sources/QuickObjectiveC/AsyncSpec+testMethodSelectors.m @@ -0,0 +1,28 @@ +#if __has_include("Quick-Swift.h") +#import "Quick-Swift.h" +#else +#import +#endif + +@interface AsyncSpec (testMethodSelectors) +@end + +@implementation AsyncSpec (testMethodSelectors) + ++ (NSArray *)testInvocations { + NSArray *selectors = [self darwinXCTestMethodSelectors]; + NSMutableArray *invocations = [NSMutableArray arrayWithCapacity:selectors.count]; + + for (NSString *selectorString in selectors) { + SEL selector = NSSelectorFromString(selectorString); + NSMethodSignature *signature = [self instanceMethodSignatureForSelector:selector]; + NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:signature]; + invocation.selector = selector; + + [invocations addObject:invocation]; + } + + return invocations; +} + +@end diff --git a/Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.h b/Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.h index dbd0d80d8..ee8b74807 100644 --- a/Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.h +++ b/Example/Pods/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.h @@ -2,6 +2,8 @@ @class QCKConfiguration; +NS_ASSUME_NONNULL_BEGIN + /** Subclass QuickConfiguration and override the +[QuickConfiguration configure:] method in order to configure how Quick behaves when running specs, or to define @@ -28,3 +30,5 @@ + (void)configure:(QCKConfiguration *)configuration; @end + +NS_ASSUME_NONNULL_END diff --git a/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h b/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h index d3e3f6429..5632f21f5 100644 --- a/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h +++ b/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h @@ -2,6 +2,8 @@ @class ExampleMetadata; +NS_ASSUME_NONNULL_BEGIN + /** Provides a hook for Quick to be configured before any examples are run. Within this scope, override the +[QuickConfiguration configure:] method @@ -35,7 +37,7 @@ #define QuickSpecBegin(name) \ @interface name : QuickSpec; @end \ @implementation name \ - - (void)spec { \ + + (void)spec { \ /** @@ -45,7 +47,7 @@ } \ @end \ -typedef NSDictionary *(^QCKDSLSharedExampleContext)(void); +typedef NSDictionary *_Nonnull(^QCKDSLSharedExampleContext)(void); typedef void (^QCKDSLSharedExampleBlock)(QCKDSLSharedExampleContext); typedef void (^QCKDSLEmptyBlock)(void); typedef void (^QCKDSLExampleMetadataBlock)(ExampleMetadata *exampleMetadata); @@ -65,6 +67,7 @@ QUICK_EXPORT void qck_afterEach(QCKDSLEmptyBlock closure); QUICK_EXPORT void qck_afterEachWithMetadata(QCKDSLExampleMetadataBlock closure); QUICK_EXPORT void qck_aroundEach(QCKDSLAroundExampleBlock closure); QUICK_EXPORT void qck_aroundEachWithMetadata(QCKDSLAroundExampleMetadataBlock closure); +QUICK_EXPORT void qck_justBeforeEach(QCKDSLEmptyBlock closure); QUICK_EXPORT void qck_pending(NSString *description, QCKDSLEmptyBlock closure); QUICK_EXPORT void qck_xdescribe(NSString *description, QCKDSLEmptyBlock closure); QUICK_EXPORT void qck_xcontext(NSString *description, QCKDSLEmptyBlock closure); @@ -73,193 +76,178 @@ QUICK_EXPORT void qck_fcontext(NSString *description, QCKDSLEmptyBlock closure); #ifndef QUICK_DISABLE_SHORT_SYNTAX /** - Defines a closure to be run prior to any examples in the test suite. - You may define an unlimited number of these closures, but there is no - guarantee as to the order in which they're run. + Defines a closure to be run prior to any examples in the test suite. + You may define an unlimited number of these closures, but there is no + guarantee as to the order in which they're run. - If the test suite crashes before the first example is run, this closure - will not be executed. + If the test suite crashes before the first example is run, this closure + will not be executed. - @param closure The closure to be run prior to any examples in the test suite. + @param closure The closure to be run prior to any examples in the test suite. */ static inline void beforeSuite(QCKDSLEmptyBlock closure) { qck_beforeSuite(closure); -} +} NS_SWIFT_UNAVAILABLE("") /** - Defines a closure to be run after all of the examples in the test suite. - You may define an unlimited number of these closures, but there is no - guarantee as to the order in which they're run. + Defines a closure to be run after all of the examples in the test suite. + You may define an unlimited number of these closures, but there is no + guarantee as to the order in which they're run. - If the test suite crashes before all examples are run, this closure - will not be executed. + If the test suite crashes before all examples are run, this closure + will not be executed. - @param closure The closure to be run after all of the examples in the test suite. + @param closure The closure to be run after all of the examples in the test suite. */ static inline void afterSuite(QCKDSLEmptyBlock closure) { qck_afterSuite(closure); -} +} NS_SWIFT_UNAVAILABLE("") /** - Defines a group of shared examples. These examples can be re-used in several locations - by using the `itBehavesLike` function. - - @param name The name of the shared example group. This must be unique across all shared example - groups defined in a test suite. - @param closure A closure containing the examples. This behaves just like an example group defined - using `describe` or `context`--the closure may contain any number of `beforeEach` - and `afterEach` closures, as well as any number of examples (defined using `it`). + Defines a group of shared examples. These examples can be re-used in several locations + by using the ``itBehavesLike`` function. + + @param name The name of the shared example group. This must be unique across all shared example + groups defined in a test suite. + @param closure A closure containing the examples. This behaves just like an example group defined + using `describe` or `context`--the closure may contain any number of `beforeEach` + and `afterEach` closures, as well as any number of examples (defined using `it`). */ static inline void sharedExamples(NSString *name, QCKDSLSharedExampleBlock closure) { qck_sharedExamples(name, closure); -} +} NS_SWIFT_UNAVAILABLE("") /** - Defines an example group. Example groups are logical groupings of examples. - Example groups can share setup and teardown code. + Defines an example group. Example groups are logical groupings of examples. + Example groups can share setup and teardown code. - @param description An arbitrary string describing the example group. - @param closure A closure that can contain other examples. + @param description An arbitrary string describing the example group. + @param closure A closure that can contain other examples. */ static inline void describe(NSString *description, QCKDSLEmptyBlock closure) { qck_describe(description, closure); -} +} NS_SWIFT_UNAVAILABLE("") /** - Defines an example group. Equivalent to `describe`. + Defines an example group. Equivalent to ``describe(description, closure)``. */ static inline void context(NSString *description, QCKDSLEmptyBlock closure) { qck_context(description, closure); -} +} NS_SWIFT_UNAVAILABLE("") /** - Defines a closure to be run prior to each example in the current example - group. This closure is not run for pending or otherwise disabled examples. - An example group may contain an unlimited number of beforeEach. They'll be - run in the order they're defined, but you shouldn't rely on that behavior. + Defines a closure to be run prior to each example in the current example + group. This closure is not run for pending or otherwise disabled examples. + An example group may contain an unlimited number of beforeEach. They'll be + run in the order they're defined, but you shouldn't rely on that behavior. - @param closure The closure to be run prior to each example. + @param closure The closure to be run prior to each example. */ static inline void beforeEach(QCKDSLEmptyBlock closure) { qck_beforeEach(closure); -} +} NS_SWIFT_UNAVAILABLE("") /** - Identical to QCKDSL.beforeEach, except the closure is provided with - metadata on the example that the closure is being run prior to. + Identical to ``beforeEach(closure)``, except the closure is provided with + metadata on the example that the closure is being run prior to. */ static inline void beforeEachWithMetadata(QCKDSLExampleMetadataBlock closure) { qck_beforeEachWithMetadata(closure); -} +} NS_SWIFT_UNAVAILABLE("") /** - Defines a closure to be run after each example in the current example - group. This closure is not run for pending or otherwise disabled examples. - An example group may contain an unlimited number of afterEach. They'll be - run in the order they're defined, but you shouldn't rely on that behavior. - - @param closure The closure to be run after each example. + Defines a closure to be run after each example in the current example + group. This closure is not run for pending or otherwise disabled examples. + An example group may contain an unlimited number of afterEach. They'll be + run in the order they're defined, but you shouldn't rely on that behavior. + + @param closure The closure to be run after each example. */ static inline void afterEach(QCKDSLEmptyBlock closure) { qck_afterEach(closure); -} +} NS_SWIFT_UNAVAILABLE("") /** - Identical to QCKDSL.afterEach, except the closure is provided with - metadata on the example that the closure is being run after. + Identical to ``afterEach(closure)``, except the closure is provided with + metadata on the example that the closure is being run after. */ static inline void afterEachWithMetadata(QCKDSLExampleMetadataBlock closure) { qck_afterEachWithMetadata(closure); -} +} NS_SWIFT_UNAVAILABLE("") /** - Defines a closure to that wraps each example in the current example - group. This closure is not run for pending or otherwise disabled examples. - - The closure you pass to aroundEach receives a callback as its argument, which - it MUST call exactly one for the example to run properly: - - aroundEach(^(QCKDSLEmptyBlock runExample) { - [self doSomeSetup]; - runExample(); - [self doSomeCleanup]; - }); - - This callback is particularly useful for test decartions that can’t split - into a separate beforeEach and afterEach. For example, running each example - in its own autorelease pool requires aroundEach: - - aroundEach(^(QCKDSLEmptyBlock runExample) { - @autoreleasepool { - runExample(); - } - [self checkObjectsNoLongerRetained]; - }); - - You can also use aroundEach to guarantee proper nesting of setup and cleanup - operations in situations where their relative order matters. - - An example group may contain an unlimited number of aroundEach callbacks. - They will nest inside each other, with the first declared in the group - nested at the outermost level. - - - parameter closure: The closure that wraps around each example. -*/ + Defines a closure to be run around each example in the currente example group. + You must call the passed-in `runClosure` argument at least once in order to + run the example. This closure is not run for pending or otherwise disabled example. + An example group may contain an unlimited number of `aroundEach`. They'll be + run in the order they're defined, but you shouldn't rely on that behavior. + + @param closure The closure to run around each example. This closure itself takes + in a closure: the before-mentioned `runClosure` argument. The `runClosure` argument + must be called at once and only once. + */ static inline void aroundEach(QCKDSLAroundExampleBlock closure) { qck_aroundEach(closure); -} +} NS_SWIFT_UNAVAILABLE("") /** - Identical to Quick.DSL.aroundEach, except the closure receives metadata - about the example that the closure wraps. + Identical to ``aroundEach(closure)``, except the closure is provided with + metadata on the example that the closure is being run around. + + @param closure The closure to run around each example. This closure itself takes + in an ``ExampleMetadata-swift.class`` object and a closure. + The ``ExampleMetadata-swift.class`` provides information about the example being run around. + The closure is the example to run, and must be called at once and only once. */ static inline void aroundEachWithMetadata(QCKDSLAroundExampleMetadataBlock closure) { qck_aroundEachWithMetadata(closure); -} +} NS_SWIFT_UNAVAILABLE("") /** - Defines an example or example group that should not be executed. Use `pending` to temporarily disable - examples or groups that should not be run yet. - - @param description An arbitrary string describing the example or example group. - @param closure A closure that will not be evaluated. + Defines a closure to be run prior to each example but after any beforeEach blocks. + This closure is not run for pending or otherwise disabled examples. + An example group may contain an unlimited number of justBeforeEach. They'll be + run in the order they're defined, but you shouldn't rely on that behavior. + + @param closure The closure to be run prior to each example but before any beforeEach blocks in the test suite. */ -static inline void pending(NSString *description, QCKDSLEmptyBlock closure) { - qck_pending(description, closure); -} +static inline void justBeforeEach(QCKDSLEmptyBlock closure) { + qck_justBeforeEach(closure); +} NS_SWIFT_UNAVAILABLE("") /** - Use this to quickly mark a `describe` block as pending. - This disables all examples within the block. + Use this to quickly mark a ``describe(description, closure)`` block as pending. + This disables all examples within the block. */ static inline void xdescribe(NSString *description, QCKDSLEmptyBlock closure) { qck_xdescribe(description, closure); -} +} NS_SWIFT_UNAVAILABLE("") /** - Use this to quickly mark a `context` block as pending. - This disables all examples within the block. + Use this to quickly mark a ``context(description, closure)`` block as pending. + This disables all examples within the block. */ static inline void xcontext(NSString *description, QCKDSLEmptyBlock closure) { qck_xcontext(description, closure); -} +} NS_SWIFT_UNAVAILABLE("") /** - Use this to quickly focus a `describe` block, focusing the examples in the block. - If any examples in the test suite are focused, only those examples are executed. - This trumps any explicitly focused or unfocused examples within the block--they are all treated as focused. + Use this to quickly focus a ``describe(description, closure)`` block, focusing the examples in the block. + If any examples in the test suite are focused, only those examples are executed. + This trumps any explicitly focused or unfocused examples within the block--they are all treated as focused. */ static inline void fdescribe(NSString *description, QCKDSLEmptyBlock closure) { qck_fdescribe(description, closure); -} +} NS_SWIFT_UNAVAILABLE("") /** - Use this to quickly focus a `context` block. Equivalent to `fdescribe`. + Use this to quickly focus a ``context(description, closure)`` block. + Equivalent to ``fdescribe(description, closure)``. */ static inline void fcontext(NSString *description, QCKDSLEmptyBlock closure) { qck_fcontext(description, closure); -} +} NS_SWIFT_UNAVAILABLE("") #define it qck_it #define xit qck_xit @@ -267,6 +255,7 @@ static inline void fcontext(NSString *description, QCKDSLEmptyBlock closure) { #define itBehavesLike qck_itBehavesLike #define xitBehavesLike qck_xitBehavesLike #define fitBehavesLike qck_fitBehavesLike +#define pending qck_pending #endif #define qck_it qck_it_builder(@(__FILE__), __LINE__) @@ -275,13 +264,18 @@ static inline void fcontext(NSString *description, QCKDSLEmptyBlock closure) { #define qck_itBehavesLike qck_itBehavesLike_builder(@(__FILE__), __LINE__) #define qck_xitBehavesLike qck_xitBehavesLike_builder(@(__FILE__), __LINE__) #define qck_fitBehavesLike qck_fitBehavesLike_builder(@(__FILE__), __LINE__) +#define qck_pending qck_pending_builder(@(__FILE__), __LINE__) typedef void (^QCKItBlock)(NSString *description, QCKDSLEmptyBlock closure); typedef void (^QCKItBehavesLikeBlock)(NSString *description, QCKDSLSharedExampleContext context); -QUICK_EXPORT QCKItBlock qck_it_builder(NSString *file, NSUInteger line); -QUICK_EXPORT QCKItBlock qck_xit_builder(NSString *file, NSUInteger line); -QUICK_EXPORT QCKItBlock qck_fit_builder(NSString *file, NSUInteger line); -QUICK_EXPORT QCKItBehavesLikeBlock qck_itBehavesLike_builder(NSString *file, NSUInteger line); -QUICK_EXPORT QCKItBehavesLikeBlock qck_xitBehavesLike_builder(NSString *file, NSUInteger line); -QUICK_EXPORT QCKItBehavesLikeBlock qck_fitBehavesLike_builder(NSString *file, NSUInteger line); +QUICK_EXPORT QCKItBlock qck_it_builder(NSString *file, NSUInteger line) NS_SWIFT_UNAVAILABLE(""); +QUICK_EXPORT QCKItBlock qck_xit_builder(NSString *file, NSUInteger line) NS_SWIFT_UNAVAILABLE(""); +QUICK_EXPORT QCKItBlock qck_fit_builder(NSString *file, NSUInteger line) NS_SWIFT_UNAVAILABLE(""); +QUICK_EXPORT QCKItBehavesLikeBlock qck_itBehavesLike_builder(NSString *file, NSUInteger line) NS_SWIFT_UNAVAILABLE(""); +QUICK_EXPORT QCKItBehavesLikeBlock qck_xitBehavesLike_builder(NSString *file, NSUInteger line) NS_SWIFT_UNAVAILABLE(""); +QUICK_EXPORT QCKItBehavesLikeBlock qck_fitBehavesLike_builder(NSString *file, NSUInteger line) NS_SWIFT_UNAVAILABLE(""); +QUICK_EXPORT QCKItBlock qck_pending_builder(NSString *file, NSUInteger line) NS_SWIFT_UNAVAILABLE(""); + +NS_ASSUME_NONNULL_END + diff --git a/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m b/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m index 928526567..ba3041049 100644 --- a/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m +++ b/Example/Pods/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m @@ -42,6 +42,10 @@ void qck_afterEachWithMetadata(QCKDSLExampleMetadataBlock closure) { [[World sharedWorld] afterEachWithMetadata:closure]; } +void qck_justBeforeEach(QCKDSLEmptyBlock closure) { + [[World sharedWorld] justBeforeEach:closure]; +} + void qck_aroundEach(QCKDSLAroundExampleBlock closure) { [[World sharedWorld] aroundEach:closure]; } @@ -104,16 +108,10 @@ QCKItBehavesLikeBlock qck_fitBehavesLike_builder(NSString *file, NSUInteger line }; } -void qck_pending(NSString *description, QCKDSLEmptyBlock closure) { - [[World sharedWorld] pending:description closure:closure]; -} - -void qck_xdescribe(NSString *description, QCKDSLEmptyBlock closure) { - [[World sharedWorld] xdescribe:description closure:closure]; -} - -void qck_xcontext(NSString *description, QCKDSLEmptyBlock closure) { - qck_xdescribe(description, closure); +QCKItBlock qck_pending_builder(NSString *file, NSUInteger line) { + return ^(NSString *description, QCKDSLEmptyBlock closure) { + [[World sharedWorld] pendingWithDescription:description file:file line:line closure:closure]; + }; } void qck_fdescribe(NSString *description, QCKDSLEmptyBlock closure) { diff --git a/Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.h b/Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.h index ccf006e90..e4d3e5e53 100644 --- a/Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.h +++ b/Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.h @@ -34,7 +34,7 @@ and examples. @code - override func spec() { + override class func spec() { describe("winter") { it("is coming") { // ... @@ -45,11 +45,13 @@ See DSL.swift for more information on what syntax is available. */ -- (void)spec; ++ (void)spec; /** Returns the currently executing spec. Use in specs that require XCTestCase methods, e.g. expectationWithDescription. + + If you're using `beforeSuite`/`afterSuite`, you should consider the ``currentSpec()`` helper. */ @property (class, nonatomic, readonly) QuickSpec *current; diff --git a/Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.m b/Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.m index 2d6b1fc63..a7d83a165 100644 --- a/Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.m +++ b/Example/Pods/Quick/Sources/QuickObjectiveC/QuickSpec.m @@ -28,13 +28,13 @@ + (NSArray *)testInvocations { // In case of fix in later versions next line can be removed [[QuickTestObservation sharedInstance] buildAllExamplesIfNeeded]; - NSArray *examples = [[World sharedWorld] examplesForSpecClass:[self class]]; + NSArray *examples = [[World sharedWorld] examplesForSpecClass:[self class]]; NSMutableArray *invocations = [NSMutableArray arrayWithCapacity:[examples count]]; NSMutableSet *selectorNames = [NSMutableSet set]; - for (Example *example in examples) { - SEL selector = [self addInstanceMethodForExample:example classSelectorNames:selectorNames]; + for (ExampleWrapper *exampleWrapper in examples) { + SEL selector = [self addInstanceMethodForExample:exampleWrapper.example runFullTest:exampleWrapper.runFullTest classSelectorNames:selectorNames]; NSMethodSignature *signature = [self instanceMethodSignatureForSelector:selector]; NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:signature]; @@ -46,9 +46,27 @@ + (NSArray *)testInvocations { return invocations; } +/** + This method is used as a hook for injecting test methods into the + Objective-C runtime on individual test runs. + + When `xctest` runs a test on a single method, it does not call + `defaultTestSuite` on the test class but rather calls + `instancesRespondToSelector:` to build its own suite. + + In normal conditions, Quick uses the implicit call to `defaultTestSuite` + to both generate examples and inject them as methods by way of + `testInvocations`. Under single test conditions, there's no implicit + call to `defaultTestSuite` so we make it explicitly here. + */ ++ (BOOL)instancesRespondToSelector:(SEL)aSelector { + [self defaultTestSuite]; + return [super instancesRespondToSelector:aSelector]; +} + #pragma mark - Public Interface -- (void)spec { } ++ (void)spec { } + (QuickSpec*) current { return currentSpec; @@ -73,10 +91,8 @@ + (void)buildExamplesIfNeeded { ExampleGroup *rootExampleGroup = [world rootExampleGroupForSpecClass:[self class]]; [world performWithCurrentExampleGroup:rootExampleGroup closure:^{ - QuickSpec *spec = [self new]; - @try { - [spec spec]; + [self spec]; } @catch (NSException *exception) { [NSException raise:NSInternalInconsistencyException @@ -108,25 +124,24 @@ + (void)buildExamplesIfNeeded { @return The selector of the newly defined instance method. */ -+ (SEL)addInstanceMethodForExample:(Example *)example classSelectorNames:(NSMutableSet *)selectorNames { ++ (SEL)addInstanceMethodForExample:(Example *)example runFullTest:(BOOL)runFullTest classSelectorNames:(NSMutableSet *)selectorNames { IMP implementation = imp_implementationWithBlock(^(QuickSpec *self){ self.example = example; currentSpec = self; - [example run]; + if (runFullTest) { + [example run]; + } else { + [example runSkippedTest]; + } + currentSpec = nil; }); const char *types = [[NSString stringWithFormat:@"%s%s%s", @encode(void), @encode(id), @encode(SEL)] UTF8String]; - NSString *originalName = [QCKObjCStringUtils c99ExtendedIdentifierFrom:example.name]; - NSString *selectorName = originalName; - NSUInteger i = 2; - - while ([selectorNames containsObject:selectorName]) { - selectorName = [NSString stringWithFormat:@"%@_%tu", originalName, i++]; - } - + NSString *selectorName = [TestSelectorNameProvider testSelectorNameFor:example classSelectorNames:selectorNames]; + [selectorNames addObject:selectorName]; - + SEL selector = NSSelectorFromString(selectorName); class_addMethod(self, selector, implementation, types); diff --git a/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-xcframeworks-input-files.xcfilelist b/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-xcframeworks-input-files.xcfilelist new file mode 100644 index 000000000..a4a3f3246 --- /dev/null +++ b/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-xcframeworks-input-files.xcfilelist @@ -0,0 +1,2 @@ +${PODS_ROOT}/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-xcframeworks.sh +${PODS_ROOT}/../../Didomi.xcframework \ No newline at end of file diff --git a/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-xcframeworks-output-files.xcfilelist b/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-xcframeworks-output-files.xcfilelist new file mode 100644 index 000000000..411f03dea --- /dev/null +++ b/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-xcframeworks-output-files.xcfilelist @@ -0,0 +1 @@ +${PODS_XCFRAMEWORKS_BUILD_DIR}/ConsentViewController/Didomi.framework \ No newline at end of file diff --git a/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-xcframeworks.sh b/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-xcframeworks.sh new file mode 100755 index 000000000..fa67fec5b --- /dev/null +++ b/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-xcframeworks.sh @@ -0,0 +1,115 @@ +#!/bin/sh +set -e +set -u +set -o pipefail + +function on_error { + echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" +} +trap 'on_error $LINENO' ERR + + +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + + +variant_for_slice() +{ + case "$1" in + "Didomi.xcframework/ios-arm64_x86_64-simulator") + echo "simulator" + ;; + esac +} + +archs_for_slice() +{ + case "$1" in + "Didomi.xcframework/ios-arm64_x86_64-simulator") + echo "arm64 x86_64" + ;; + esac +} + +copy_dir() +{ + local source="$1" + local destination="$2" + + # Use filter instead of exclude so missing patterns don't throw errors. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" \"${source}*\" \"${destination}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" "${source}"/* "${destination}" +} + +SELECT_SLICE_RETVAL="" + +select_slice() { + local xcframework_name="$1" + xcframework_name="${xcframework_name##*/}" + local paths=("${@:2}") + # Locate the correct slice of the .xcframework for the current architectures + local target_path="" + + # Split archs on space so we can find a slice that has all the needed archs + local target_archs=$(echo $ARCHS | tr " " "\n") + + local target_variant="" + if [[ "$PLATFORM_NAME" == *"simulator" ]]; then + target_variant="simulator" + fi + if [[ ! -z ${EFFECTIVE_PLATFORM_NAME+x} && "$EFFECTIVE_PLATFORM_NAME" == *"maccatalyst" ]]; then + target_variant="maccatalyst" + fi + for i in ${!paths[@]}; do + local matched_all_archs="1" + local slice_archs="$(archs_for_slice "${xcframework_name}/${paths[$i]}")" + local slice_variant="$(variant_for_slice "${xcframework_name}/${paths[$i]}")" + for target_arch in $target_archs; do + if ! [[ "${slice_variant}" == "$target_variant" ]]; then + matched_all_archs="0" + break + fi + + if ! echo "${slice_archs}" | tr " " "\n" | grep -F -q -x "$target_arch"; then + matched_all_archs="0" + break + fi + done + + if [[ "$matched_all_archs" == "1" ]]; then + # Found a matching slice + echo "Selected xcframework slice ${paths[$i]}" + SELECT_SLICE_RETVAL=${paths[$i]} + break + fi + done +} + +install_xcframework() { + local basepath="$1" + local name="$2" + local package_type="$3" + local paths=("${@:4}") + + # Locate the correct slice of the .xcframework for the current architectures + select_slice "${basepath}" "${paths[@]}" + local target_path="$SELECT_SLICE_RETVAL" + if [[ -z "$target_path" ]]; then + echo "warning: [CP] $(basename ${basepath}): Unable to find matching slice in '${paths[@]}' for the current build architectures ($ARCHS) and platform (${EFFECTIVE_PLATFORM_NAME-${PLATFORM_NAME}})." + return + fi + local source="$basepath/$target_path" + + local destination="${PODS_XCFRAMEWORKS_BUILD_DIR}/${name}" + + if [ ! -d "$destination" ]; then + mkdir -p "$destination" + fi + + copy_dir "$source/" "$destination" + echo "Copied $source to $destination" +} + +install_xcframework "${PODS_ROOT}/../../Didomi.xcframework" "ConsentViewController" "framework" "ios-arm64_x86_64-simulator" + diff --git a/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-xcframeworks-input-files.xcfilelist b/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-xcframeworks-input-files.xcfilelist new file mode 100644 index 000000000..767a024fb --- /dev/null +++ b/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-xcframeworks-input-files.xcfilelist @@ -0,0 +1,2 @@ +${PODS_ROOT}/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-xcframeworks.sh +${PODS_ROOT}/../../Didomi.xcframework \ No newline at end of file diff --git a/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-xcframeworks-output-files.xcfilelist b/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-xcframeworks-output-files.xcfilelist new file mode 100644 index 000000000..411f03dea --- /dev/null +++ b/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-xcframeworks-output-files.xcfilelist @@ -0,0 +1 @@ +${PODS_XCFRAMEWORKS_BUILD_DIR}/ConsentViewController/Didomi.framework \ No newline at end of file diff --git a/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-xcframeworks.sh b/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-xcframeworks.sh new file mode 100755 index 000000000..3b7fc1b22 --- /dev/null +++ b/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-xcframeworks.sh @@ -0,0 +1,114 @@ +#!/bin/sh +set -e +set -u +set -o pipefail + +function on_error { + echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" +} +trap 'on_error $LINENO' ERR + + +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + + +variant_for_slice() +{ + case "$1" in + "Didomi.xcframework/ios-arm64_x86_64-simulator") + echo "simulator" + ;; + esac +} + +archs_for_slice() +{ + case "$1" in + "Didomi.xcframework/ios-arm64_x86_64-simulator") + echo "arm64 x86_64" + ;; + esac +} + +copy_dir() +{ + local source="$1" + local destination="$2" + + # Use filter instead of exclude so missing patterns don't throw errors. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" \"${source}*\" \"${destination}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" "${source}"/* "${destination}" +} + +SELECT_SLICE_RETVAL="" + +select_slice() { + local xcframework_name="$1" + xcframework_name="${xcframework_name##*/}" + local paths=("${@:2}") + # Locate the correct slice of the .xcframework for the current architectures + local target_path="" + + # Split archs on space so we can find a slice that has all the needed archs + local target_archs=$(echo $ARCHS | tr " " "\n") + + local target_variant="" + if [[ "$PLATFORM_NAME" == *"simulator" ]]; then + target_variant="simulator" + fi + if [[ ! -z ${EFFECTIVE_PLATFORM_NAME+x} && "$EFFECTIVE_PLATFORM_NAME" == *"maccatalyst" ]]; then + target_variant="maccatalyst" + fi + for i in ${!paths[@]}; do + local matched_all_archs="1" + local slice_archs="$(archs_for_slice "${xcframework_name}/${paths[$i]}")" + local slice_variant="$(variant_for_slice "${xcframework_name}/${paths[$i]}")" + for target_arch in $target_archs; do + if ! [[ "${slice_variant}" == "$target_variant" ]]; then + matched_all_archs="0" + break + fi + + if ! echo "${slice_archs}" | tr " " "\n" | grep -F -q -x "$target_arch"; then + matched_all_archs="0" + break + fi + done + + if [[ "$matched_all_archs" == "1" ]]; then + # Found a matching slice + echo "Selected xcframework slice ${paths[$i]}" + SELECT_SLICE_RETVAL=${paths[$i]} + break + fi + done +} + +install_xcframework() { + local basepath="$1" + local name="$2" + local package_type="$3" + local paths=("${@:4}") + + # Locate the correct slice of the .xcframework for the current architectures + select_slice "${basepath}" "${paths[@]}" + local target_path="$SELECT_SLICE_RETVAL" + if [[ -z "$target_path" ]]; then + echo "warning: [CP] $(basename ${basepath}): Unable to find matching slice in '${paths[@]}' for the current build architectures ($ARCHS) and platform (${EFFECTIVE_PLATFORM_NAME-${PLATFORM_NAME}})." + return + fi + local source="$basepath/$target_path" + + local destination="${PODS_XCFRAMEWORKS_BUILD_DIR}/${name}" + + if [ ! -d "$destination" ]; then + mkdir -p "$destination" + fi + + copy_dir "$source/" "$destination" + echo "Copied $source to $destination" +} + + diff --git a/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException-Info.plist b/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException-Info.plist new file mode 100644 index 000000000..38610d2c3 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 2.2.1 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException-dummy.m b/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException-dummy.m new file mode 100644 index 000000000..3efcf0232 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_CwlCatchException : NSObject +@end +@implementation PodsDummy_CwlCatchException +@end diff --git a/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException-prefix.pch b/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException-umbrella.h b/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException-umbrella.h new file mode 100644 index 000000000..7acce827b --- /dev/null +++ b/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double CwlCatchExceptionVersionNumber; +FOUNDATION_EXPORT const unsigned char CwlCatchExceptionVersionString[]; + diff --git a/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException.debug.xcconfig b/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException.debug.xcconfig new file mode 100644 index 000000000..5d4cdb2f7 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException.debug.xcconfig @@ -0,0 +1,14 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/CwlCatchException +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException.modulemap b/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException.modulemap new file mode 100644 index 000000000..6ec32813e --- /dev/null +++ b/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException.modulemap @@ -0,0 +1,6 @@ +framework module CwlCatchException { + umbrella header "CwlCatchException-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException.release.xcconfig b/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException.release.xcconfig new file mode 100644 index 000000000..5d4cdb2f7 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlCatchException/CwlCatchException.release.xcconfig @@ -0,0 +1,14 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/CwlCatchException +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-Info.plist b/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-Info.plist new file mode 100644 index 000000000..38610d2c3 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 2.2.1 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-dummy.m b/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-dummy.m new file mode 100644 index 000000000..c9327deee --- /dev/null +++ b/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_CwlCatchExceptionSupport : NSObject +@end +@implementation PodsDummy_CwlCatchExceptionSupport +@end diff --git a/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-prefix.pch b/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-umbrella.h b/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-umbrella.h new file mode 100644 index 000000000..4b76b2b4f --- /dev/null +++ b/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-umbrella.h @@ -0,0 +1,17 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "CwlCatchException.h" + +FOUNDATION_EXPORT double CwlCatchExceptionSupportVersionNumber; +FOUNDATION_EXPORT const unsigned char CwlCatchExceptionSupportVersionString[]; + diff --git a/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.debug.xcconfig b/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.debug.xcconfig new file mode 100644 index 000000000..3f9a38761 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.debug.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/CwlCatchExceptionSupport +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.modulemap b/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.modulemap new file mode 100644 index 000000000..670403da2 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.modulemap @@ -0,0 +1,6 @@ +framework module CwlCatchExceptionSupport { + umbrella header "CwlCatchExceptionSupport-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.release.xcconfig b/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.release.xcconfig new file mode 100644 index 000000000..3f9a38761 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.release.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/CwlCatchExceptionSupport +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-Info.plist b/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-Info.plist new file mode 100644 index 000000000..c4fad44cd --- /dev/null +++ b/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 2.2.2 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-dummy.m b/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-dummy.m new file mode 100644 index 000000000..d9fac0369 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_CwlMachBadInstructionHandler : NSObject +@end +@implementation PodsDummy_CwlMachBadInstructionHandler +@end diff --git a/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-prefix.pch b/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-umbrella.h b/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-umbrella.h new file mode 100644 index 000000000..8f87427b6 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-umbrella.h @@ -0,0 +1,18 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "CwlMachBadInstructionHandler.h" +#import "mach_excServer.h" + +FOUNDATION_EXPORT double CwlMachBadInstructionHandlerVersionNumber; +FOUNDATION_EXPORT const unsigned char CwlMachBadInstructionHandlerVersionString[]; + diff --git a/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.debug.xcconfig b/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.debug.xcconfig new file mode 100644 index 000000000..8b0579bd8 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.debug.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/CwlMachBadInstructionHandler +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.modulemap b/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.modulemap new file mode 100644 index 000000000..bdb305658 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.modulemap @@ -0,0 +1,6 @@ +framework module CwlMachBadInstructionHandler { + umbrella header "CwlMachBadInstructionHandler-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.release.xcconfig b/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.release.xcconfig new file mode 100644 index 000000000..8b0579bd8 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.release.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/CwlMachBadInstructionHandler +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-Info.plist b/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-Info.plist new file mode 100644 index 000000000..c4fad44cd --- /dev/null +++ b/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 2.2.2 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-dummy.m b/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-dummy.m new file mode 100644 index 000000000..9df5b305d --- /dev/null +++ b/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_CwlPosixPreconditionTesting : NSObject +@end +@implementation PodsDummy_CwlPosixPreconditionTesting +@end diff --git a/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-prefix.pch b/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-umbrella.h b/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-umbrella.h new file mode 100644 index 000000000..6d066cded --- /dev/null +++ b/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double CwlPosixPreconditionTestingVersionNumber; +FOUNDATION_EXPORT const unsigned char CwlPosixPreconditionTestingVersionString[]; + diff --git a/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.debug.xcconfig b/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.debug.xcconfig new file mode 100644 index 000000000..0a3228317 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.debug.xcconfig @@ -0,0 +1,13 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/CwlPosixPreconditionTesting +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.modulemap b/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.modulemap new file mode 100644 index 000000000..b388a47ed --- /dev/null +++ b/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.modulemap @@ -0,0 +1,6 @@ +framework module CwlPosixPreconditionTesting { + umbrella header "CwlPosixPreconditionTesting-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.release.xcconfig b/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.release.xcconfig new file mode 100644 index 000000000..0a3228317 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.release.xcconfig @@ -0,0 +1,13 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/CwlPosixPreconditionTesting +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-Info.plist b/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-Info.plist new file mode 100644 index 000000000..c4fad44cd --- /dev/null +++ b/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 2.2.2 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-dummy.m b/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-dummy.m new file mode 100644 index 000000000..b33eab55f --- /dev/null +++ b/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_CwlPreconditionTesting : NSObject +@end +@implementation PodsDummy_CwlPreconditionTesting +@end diff --git a/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-prefix.pch b/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-umbrella.h b/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-umbrella.h new file mode 100644 index 000000000..e6319a29a --- /dev/null +++ b/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double CwlPreconditionTestingVersionNumber; +FOUNDATION_EXPORT const unsigned char CwlPreconditionTestingVersionString[]; + diff --git a/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.debug.xcconfig b/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.debug.xcconfig new file mode 100644 index 000000000..52b22a1b6 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.debug.xcconfig @@ -0,0 +1,14 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/CwlPreconditionTesting +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.modulemap b/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.modulemap new file mode 100644 index 000000000..b0cb51efd --- /dev/null +++ b/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.modulemap @@ -0,0 +1,6 @@ +framework module CwlPreconditionTesting { + umbrella header "CwlPreconditionTesting-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.release.xcconfig b/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.release.xcconfig new file mode 100644 index 000000000..52b22a1b6 --- /dev/null +++ b/Example/Pods/Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.release.xcconfig @@ -0,0 +1,14 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/CwlPreconditionTesting +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/Nimble-iOS/Nimble-iOS-Info.plist b/Example/Pods/Target Support Files/Nimble-iOS/Nimble-iOS-Info.plist index 1231d362a..16b132515 100644 --- a/Example/Pods/Target Support Files/Nimble-iOS/Nimble-iOS-Info.plist +++ b/Example/Pods/Target Support Files/Nimble-iOS/Nimble-iOS-Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 10.0.0 + 13.7.0 CFBundleSignature ???? CFBundleVersion diff --git a/Example/Pods/Target Support Files/Nimble-iOS/Nimble-iOS-umbrella.h b/Example/Pods/Target Support Files/Nimble-iOS/Nimble-iOS-umbrella.h index 15ed932c4..35609a76f 100644 --- a/Example/Pods/Target Support Files/Nimble-iOS/Nimble-iOS-umbrella.h +++ b/Example/Pods/Target Support Files/Nimble-iOS/Nimble-iOS-umbrella.h @@ -14,9 +14,6 @@ #import "DSL.h" #import "NMBExceptionCapture.h" #import "NMBStringify.h" -#import "CwlCatchException.h" -#import "CwlMachBadInstructionHandler.h" -#import "mach_excServer.h" FOUNDATION_EXPORT double NimbleVersionNumber; FOUNDATION_EXPORT const unsigned char NimbleVersionString[]; diff --git a/Example/Pods/Target Support Files/Nimble-iOS/Nimble-iOS.debug.xcconfig b/Example/Pods/Target Support Files/Nimble-iOS/Nimble-iOS.debug.xcconfig index 662d20d3f..c47e82d91 100644 --- a/Example/Pods/Target Support Files/Nimble-iOS/Nimble-iOS.debug.xcconfig +++ b/Example/Pods/Target Support Files/Nimble-iOS/Nimble-iOS.debug.xcconfig @@ -4,8 +4,8 @@ CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS DEFINES_MODULE = YES ENABLE_BITCODE = NO ENABLE_TESTING_SEARCH_PATHS = YES +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/usr/lib" OTHER_LDFLAGS = $(inherited) -Xlinker -no_application_extension -weak-lXCTestSwiftSupport OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS $(inherited) -suppress-warnings PODS_BUILD_DIR = ${BUILD_DIR} @@ -16,6 +16,4 @@ PODS_TARGET_SRCROOT = ${PODS_ROOT}/Nimble PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} SKIP_INSTALL = YES -SWIFT_INCLUDE_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/usr/lib" -SYSTEM_FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/Nimble-iOS/Nimble-iOS.release.xcconfig b/Example/Pods/Target Support Files/Nimble-iOS/Nimble-iOS.release.xcconfig index 662d20d3f..c47e82d91 100644 --- a/Example/Pods/Target Support Files/Nimble-iOS/Nimble-iOS.release.xcconfig +++ b/Example/Pods/Target Support Files/Nimble-iOS/Nimble-iOS.release.xcconfig @@ -4,8 +4,8 @@ CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS DEFINES_MODULE = YES ENABLE_BITCODE = NO ENABLE_TESTING_SEARCH_PATHS = YES +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/usr/lib" OTHER_LDFLAGS = $(inherited) -Xlinker -no_application_extension -weak-lXCTestSwiftSupport OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS $(inherited) -suppress-warnings PODS_BUILD_DIR = ${BUILD_DIR} @@ -16,6 +16,4 @@ PODS_TARGET_SRCROOT = ${PODS_ROOT}/Nimble PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} SKIP_INSTALL = YES -SWIFT_INCLUDE_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/usr/lib" -SYSTEM_FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/Nimble-tvOS/Nimble-tvOS-Info.plist b/Example/Pods/Target Support Files/Nimble-tvOS/Nimble-tvOS-Info.plist index 1231d362a..16b132515 100644 --- a/Example/Pods/Target Support Files/Nimble-tvOS/Nimble-tvOS-Info.plist +++ b/Example/Pods/Target Support Files/Nimble-tvOS/Nimble-tvOS-Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 10.0.0 + 13.7.0 CFBundleSignature ???? CFBundleVersion diff --git a/Example/Pods/Target Support Files/Nimble-tvOS/Nimble-tvOS-umbrella.h b/Example/Pods/Target Support Files/Nimble-tvOS/Nimble-tvOS-umbrella.h index f5cead724..35609a76f 100644 --- a/Example/Pods/Target Support Files/Nimble-tvOS/Nimble-tvOS-umbrella.h +++ b/Example/Pods/Target Support Files/Nimble-tvOS/Nimble-tvOS-umbrella.h @@ -14,7 +14,6 @@ #import "DSL.h" #import "NMBExceptionCapture.h" #import "NMBStringify.h" -#import "mach_excServer.h" FOUNDATION_EXPORT double NimbleVersionNumber; FOUNDATION_EXPORT const unsigned char NimbleVersionString[]; diff --git a/Example/Pods/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-acknowledgements.markdown index ae389a5ce..d4d1c63f5 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-acknowledgements.markdown +++ b/Example/Pods/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-acknowledgements.markdown @@ -49,6 +49,101 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## CwlCatchException + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlCatchExceptionSupport + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlMachBadInstructionHandler + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlPosixPreconditionTesting + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlPreconditionTesting + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + ## Nimble Apache License diff --git a/Example/Pods/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-acknowledgements.plist index 5880ba6d0..8669b8e7c 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-acknowledgements.plist +++ b/Example/Pods/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-acknowledgements.plist @@ -72,6 +72,131 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlCatchException + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlCatchExceptionSupport + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlMachBadInstructionHandler + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlPosixPreconditionTesting + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlPreconditionTesting + Type + PSGroupSpecifier + FooterText Apache License diff --git a/Example/Pods/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests.debug.xcconfig index e54a77c93..005321f98 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests.debug.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests.debug.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests.release.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests.release.xcconfig index e54a77c93..005321f98 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests.release.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests.release.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.markdown index ae389a5ce..d4d1c63f5 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.markdown +++ b/Example/Pods/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.markdown @@ -49,6 +49,101 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## CwlCatchException + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlCatchExceptionSupport + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlMachBadInstructionHandler + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlPosixPreconditionTesting + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlPreconditionTesting + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + ## Nimble Apache License diff --git a/Example/Pods/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.plist index 5880ba6d0..8669b8e7c 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.plist +++ b/Example/Pods/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.plist @@ -72,6 +72,131 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlCatchException + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlCatchExceptionSupport + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlMachBadInstructionHandler + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlPosixPreconditionTesting + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlPreconditionTesting + Type + PSGroupSpecifier + FooterText Apache License diff --git a/Example/Pods/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests.debug.xcconfig index e54a77c93..005321f98 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests.debug.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests.debug.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests.release.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests.release.xcconfig index e54a77c93..005321f98 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests.release.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests.release.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.markdown index dc2537bf8..2561553c5 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.markdown +++ b/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.markdown @@ -49,6 +49,101 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## CwlCatchException + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlCatchExceptionSupport + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlMachBadInstructionHandler + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlPosixPreconditionTesting + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlPreconditionTesting + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + ## Nimble Apache License diff --git a/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.plist index ac5946679..eea3abae6 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.plist +++ b/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.plist @@ -72,6 +72,131 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlCatchException + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlCatchExceptionSupport + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlMachBadInstructionHandler + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlPosixPreconditionTesting + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlPreconditionTesting + Type + PSGroupSpecifier + FooterText Apache License diff --git a/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.debug.xcconfig index f365bc4fe..b0bf4fb6f 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.debug.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.debug.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/FirebaseAnalytics/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/WithoutAdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/FirebaseAnalytics/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/WithoutAdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations/FirebaseInstallations.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb/nanopb.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations/FirebaseInstallations.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb/nanopb.framework/Headers" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"sqlite3" -l"z" -framework "ConsentViewController" -framework "FBLPromises" -framework "FirebaseAnalytics" -framework "FirebaseCore" -framework "FirebaseCoreInternal" -framework "FirebaseInstallations" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "GoogleAppMeasurementIdentitySupport" -framework "GoogleUtilities" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "XCTest" -framework "nanopb" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "-F${PODS_CONFIGURATION_BUILD_DIR}/GoogleAppMeasurement" "-F${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "-F${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "-F${PODS_CONFIGURATION_BUILD_DIR}/nanopb" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"sqlite3" -l"z" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "FBLPromises" -framework "FirebaseAnalytics" -framework "FirebaseCore" -framework "FirebaseCoreInternal" -framework "FirebaseInstallations" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "GoogleAppMeasurementIdentitySupport" -framework "GoogleUtilities" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "XCTest" -framework "nanopb" -weak_framework "XCTest" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "-F${PODS_CONFIGURATION_BUILD_DIR}/GoogleAppMeasurement" "-F${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "-F${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "-F${PODS_CONFIGURATION_BUILD_DIR}/nanopb" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.release.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.release.xcconfig index f365bc4fe..b0bf4fb6f 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.release.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.release.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/FirebaseAnalytics/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/WithoutAdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/FirebaseAnalytics/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/WithoutAdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations/FirebaseInstallations.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb/nanopb.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations/FirebaseInstallations.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb/nanopb.framework/Headers" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"sqlite3" -l"z" -framework "ConsentViewController" -framework "FBLPromises" -framework "FirebaseAnalytics" -framework "FirebaseCore" -framework "FirebaseCoreInternal" -framework "FirebaseInstallations" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "GoogleAppMeasurementIdentitySupport" -framework "GoogleUtilities" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "XCTest" -framework "nanopb" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "-F${PODS_CONFIGURATION_BUILD_DIR}/GoogleAppMeasurement" "-F${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "-F${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "-F${PODS_CONFIGURATION_BUILD_DIR}/nanopb" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"sqlite3" -l"z" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "FBLPromises" -framework "FirebaseAnalytics" -framework "FirebaseCore" -framework "FirebaseCoreInternal" -framework "FirebaseInstallations" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "GoogleAppMeasurementIdentitySupport" -framework "GoogleUtilities" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "XCTest" -framework "nanopb" -weak_framework "XCTest" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "-F${PODS_CONFIGURATION_BUILD_DIR}/GoogleAppMeasurement" "-F${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "-F${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "-F${PODS_CONFIGURATION_BUILD_DIR}/nanopb" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.markdown index dc2537bf8..2561553c5 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.markdown +++ b/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.markdown @@ -49,6 +49,101 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## CwlCatchException + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlCatchExceptionSupport + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlMachBadInstructionHandler + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlPosixPreconditionTesting + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlPreconditionTesting + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + ## Nimble Apache License diff --git a/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.plist index ac5946679..eea3abae6 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.plist +++ b/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.plist @@ -72,6 +72,131 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlCatchException + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlCatchExceptionSupport + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlMachBadInstructionHandler + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlPosixPreconditionTesting + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlPreconditionTesting + Type + PSGroupSpecifier + FooterText Apache License diff --git a/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig index f365bc4fe..b0bf4fb6f 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/FirebaseAnalytics/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/WithoutAdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/FirebaseAnalytics/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/WithoutAdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations/FirebaseInstallations.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb/nanopb.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations/FirebaseInstallations.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb/nanopb.framework/Headers" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"sqlite3" -l"z" -framework "ConsentViewController" -framework "FBLPromises" -framework "FirebaseAnalytics" -framework "FirebaseCore" -framework "FirebaseCoreInternal" -framework "FirebaseInstallations" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "GoogleAppMeasurementIdentitySupport" -framework "GoogleUtilities" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "XCTest" -framework "nanopb" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "-F${PODS_CONFIGURATION_BUILD_DIR}/GoogleAppMeasurement" "-F${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "-F${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "-F${PODS_CONFIGURATION_BUILD_DIR}/nanopb" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"sqlite3" -l"z" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "FBLPromises" -framework "FirebaseAnalytics" -framework "FirebaseCore" -framework "FirebaseCoreInternal" -framework "FirebaseInstallations" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "GoogleAppMeasurementIdentitySupport" -framework "GoogleUtilities" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "XCTest" -framework "nanopb" -weak_framework "XCTest" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "-F${PODS_CONFIGURATION_BUILD_DIR}/GoogleAppMeasurement" "-F${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "-F${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "-F${PODS_CONFIGURATION_BUILD_DIR}/nanopb" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig index f365bc4fe..b0bf4fb6f 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/FirebaseAnalytics/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/WithoutAdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/FirebaseAnalytics/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/AdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/GoogleAppMeasurement/WithoutAdIdSupport" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations/FirebaseInstallations.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb/nanopb.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations/FirebaseInstallations.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb/nanopb.framework/Headers" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"sqlite3" -l"z" -framework "ConsentViewController" -framework "FBLPromises" -framework "FirebaseAnalytics" -framework "FirebaseCore" -framework "FirebaseCoreInternal" -framework "FirebaseInstallations" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "GoogleAppMeasurementIdentitySupport" -framework "GoogleUtilities" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "XCTest" -framework "nanopb" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "-F${PODS_CONFIGURATION_BUILD_DIR}/GoogleAppMeasurement" "-F${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "-F${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "-F${PODS_CONFIGURATION_BUILD_DIR}/nanopb" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"sqlite3" -l"z" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "FBLPromises" -framework "FirebaseAnalytics" -framework "FirebaseCore" -framework "FirebaseCoreInternal" -framework "FirebaseInstallations" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "GoogleAppMeasurementIdentitySupport" -framework "GoogleUtilities" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "XCTest" -framework "nanopb" -weak_framework "XCTest" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAnalytics" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "-F${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "-F${PODS_CONFIGURATION_BUILD_DIR}/GoogleAppMeasurement" "-F${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "-F${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "-F${PODS_CONFIGURATION_BUILD_DIR}/nanopb" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-acknowledgements.markdown index ae389a5ce..d4d1c63f5 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-acknowledgements.markdown +++ b/Example/Pods/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-acknowledgements.markdown @@ -49,6 +49,101 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## CwlCatchException + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlCatchExceptionSupport + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlMachBadInstructionHandler + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlPosixPreconditionTesting + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlPreconditionTesting + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + ## Nimble Apache License diff --git a/Example/Pods/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-acknowledgements.plist index 5880ba6d0..8669b8e7c 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-acknowledgements.plist +++ b/Example/Pods/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-acknowledgements.plist @@ -72,6 +72,131 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlCatchException + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlCatchExceptionSupport + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlMachBadInstructionHandler + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlPosixPreconditionTesting + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlPreconditionTesting + Type + PSGroupSpecifier + FooterText Apache License diff --git a/Example/Pods/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.debug.xcconfig index e54a77c93..005321f98 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.debug.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.debug.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.release.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.release.xcconfig index e54a77c93..005321f98 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.release.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.release.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.markdown index ae389a5ce..d4d1c63f5 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.markdown +++ b/Example/Pods/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.markdown @@ -49,6 +49,101 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## CwlCatchException + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlCatchExceptionSupport + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlMachBadInstructionHandler + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlPosixPreconditionTesting + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlPreconditionTesting + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + ## Nimble Apache License diff --git a/Example/Pods/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.plist index 5880ba6d0..8669b8e7c 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.plist +++ b/Example/Pods/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.plist @@ -72,6 +72,131 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlCatchException + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlCatchExceptionSupport + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlMachBadInstructionHandler + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlPosixPreconditionTesting + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlPreconditionTesting + Type + PSGroupSpecifier + FooterText Apache License diff --git a/Example/Pods/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests.debug.xcconfig index e54a77c93..005321f98 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests.debug.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests.debug.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests.release.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests.release.xcconfig index e54a77c93..005321f98 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests.release.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests.release.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.markdown index ae389a5ce..d4d1c63f5 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.markdown +++ b/Example/Pods/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.markdown @@ -49,6 +49,101 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## CwlCatchException + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlCatchExceptionSupport + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlMachBadInstructionHandler + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlPosixPreconditionTesting + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlPreconditionTesting + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + ## Nimble Apache License diff --git a/Example/Pods/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.plist index 5880ba6d0..8669b8e7c 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.plist +++ b/Example/Pods/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.plist @@ -72,6 +72,131 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlCatchException + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlCatchExceptionSupport + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlMachBadInstructionHandler + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlPosixPreconditionTesting + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlPreconditionTesting + Type + PSGroupSpecifier + FooterText Apache License diff --git a/Example/Pods/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig index e54a77c93..005321f98 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.release.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.release.xcconfig index e54a77c93..005321f98 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.release.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.release.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-acknowledgements.markdown index ae389a5ce..d4d1c63f5 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-acknowledgements.markdown +++ b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-acknowledgements.markdown @@ -49,6 +49,101 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## CwlCatchException + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlCatchExceptionSupport + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlMachBadInstructionHandler + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlPosixPreconditionTesting + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +## CwlPreconditionTesting + +ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + ## Nimble Apache License diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-acknowledgements.plist index 5880ba6d0..8669b8e7c 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-acknowledgements.plist +++ b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-acknowledgements.plist @@ -72,6 +72,131 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlCatchException + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlCatchExceptionSupport + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlMachBadInstructionHandler + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlPosixPreconditionTesting + Type + PSGroupSpecifier + + + FooterText + ISC License + +Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + License + ISC + Title + CwlPreconditionTesting + Type + PSGroupSpecifier + FooterText Apache License diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig index e54a77c93..005321f98 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.release.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.release.xcconfig index e54a77c93..005321f98 100644 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.release.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.release.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Example/Pods/Target Support Files/Quick-iOS/Quick-iOS-Info.plist b/Example/Pods/Target Support Files/Quick-iOS/Quick-iOS-Info.plist index 8136e6285..119cb522c 100644 --- a/Example/Pods/Target Support Files/Quick-iOS/Quick-iOS-Info.plist +++ b/Example/Pods/Target Support Files/Quick-iOS/Quick-iOS-Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 5.0.1 + 7.6.2 CFBundleSignature ???? CFBundleVersion diff --git a/Example/Pods/Target Support Files/Quick-iOS/Quick-iOS.debug.xcconfig b/Example/Pods/Target Support Files/Quick-iOS/Quick-iOS.debug.xcconfig index edb1f88d0..dc019e46b 100644 --- a/Example/Pods/Target Support Files/Quick-iOS/Quick-iOS.debug.xcconfig +++ b/Example/Pods/Target Support Files/Quick-iOS/Quick-iOS.debug.xcconfig @@ -6,7 +6,6 @@ ENABLE_BITCODE = NO ENABLE_TESTING_SEARCH_PATHS = YES FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/usr/lib" OTHER_LDFLAGS = $(inherited) -Xlinker -no_application_extension OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} @@ -17,6 +16,4 @@ PODS_TARGET_SRCROOT = ${PODS_ROOT}/Quick PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} SKIP_INSTALL = YES -SWIFT_INCLUDE_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/usr/lib" -SYSTEM_FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/Quick-iOS/Quick-iOS.release.xcconfig b/Example/Pods/Target Support Files/Quick-iOS/Quick-iOS.release.xcconfig index edb1f88d0..dc019e46b 100644 --- a/Example/Pods/Target Support Files/Quick-iOS/Quick-iOS.release.xcconfig +++ b/Example/Pods/Target Support Files/Quick-iOS/Quick-iOS.release.xcconfig @@ -6,7 +6,6 @@ ENABLE_BITCODE = NO ENABLE_TESTING_SEARCH_PATHS = YES FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LIBRARY_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/usr/lib" OTHER_LDFLAGS = $(inherited) -Xlinker -no_application_extension OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} @@ -17,6 +16,4 @@ PODS_TARGET_SRCROOT = ${PODS_ROOT}/Quick PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} SKIP_INSTALL = YES -SWIFT_INCLUDE_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/usr/lib" -SYSTEM_FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/Quick-tvOS/Quick-tvOS-Info.plist b/Example/Pods/Target Support Files/Quick-tvOS/Quick-tvOS-Info.plist index 8136e6285..119cb522c 100644 --- a/Example/Pods/Target Support Files/Quick-tvOS/Quick-tvOS-Info.plist +++ b/Example/Pods/Target Support Files/Quick-tvOS/Quick-tvOS-Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 5.0.1 + 7.6.2 CFBundleSignature ???? CFBundleVersion From c7fd4297f3b8294efd044c6c8c2a41d35e105b25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Herculano?= <228650+andresilveirah@users.noreply.github.com> Date: Mon, 11 May 2026 18:11:27 +0200 Subject: [PATCH 10/13] update tests to be compatible with quick/nimble --- ConsentViewController.podspec | 3 +- .../AuthExampleUITests.swift | 30 +- .../AuthExampleUITests/CustomMatchers.swift | 53 +- .../project.pbxproj | 374 +- .../CCPAConsentStatusSpec.swift | 2 +- .../GDPRMessageSpec.swift | 2 +- .../GenericWebMessageViewControllerSpec.swift | 32 +- .../Helpers/CustomMatchers.swift | 36 +- .../UserDefaultsExtensionSpec.swift | 2 +- .../SPActionSpec.swift | 2 +- .../SPCCPAConsentSpec.swift | 2 +- .../SPCampaignEnvSpec.swift | 2 +- .../SPClientCoordinatorSpec.swift | 10 +- .../SourcePointClient/CampaignSpec.swift | 2 +- .../ConnectivityManagerSpec.swift | 2 +- .../MessageResponseSpec.swift | 2 +- .../MessagesResponseSpec.swift | 2 +- .../QueryParamEncodableSpec.swift | 2 +- .../SourcePointClient/SimpleClientSpec.swift | 18 +- .../SourcePointClientSpec.swift | 60 +- .../SPConsentManagerSpec.swift | 20 +- .../SPConsentSpec.swift | 78 +- .../SPDateCreatedSpec.swift | 2 +- .../SPDeviceSpec.swift | 18 +- .../SPErrorSpec.swift | 2 +- .../SPGCMDataSpec.swift | 4 +- .../SPGDPRConsentsSpec.swift | 2 +- .../SPJsonSpec.swift | 40 +- .../SPMessageLanguageSpec.swift | 2 +- .../SPPrivacyManagerTabSpec.swift | 2 +- .../SPPropertyNameSpec.swift | 2 +- .../SPPublisherDataSpec.swift | 2 +- .../Helpers/CustomMatchers.swift | 51 +- .../NativeMessageExampleUITests.swift | 110 +- .../CustomMatchers.swift | 26 +- .../ObjC_ExampleAppUITests.swift | 51 +- Example/Podfile | 11 +- Example/Podfile.lock | 61 +- .../Assets/PrivacyInfo.xcprivacy | 14 - .../Constants/IQKeyboardConstants.swift | 41 - .../Classes/IQKeyboardExtended.swift | 65 - .../Classes/IQTextInputView.swift | 86 - .../UIKitExtensions/UIView+Hierarchy.swift | 168 - Example/Pods/IQKeyboardCore/LICENSE | 21 - Example/Pods/IQKeyboardCore/README.md | 29 - .../IQKeyboardAppearanceConfiguration.swift | 43 - ...IQKeyboardAppearanceManager+Internal.swift | 50 - .../IQKeyboardAppearanceManager.swift | 44 - .../IQKeyboardManager+Appearance.swift | 55 - ...eyboardManager+Appearance_Deprecated.swift | 43 - .../Configuration/IQActiveConfiguration.swift | 274 - .../IQRootControllerConfiguration.swift | 95 - .../IQScrollViewConfiguration.swift | 100 - .../Debug/IQKeyboardManager+Debug.swift | 78 - .../IQKeyboardManager+Deprecated.swift | 169 - ...QKeyboardManager+ActiveConfiguration.swift | 126 - .../IQKeyboardManager+Internal.swift | 88 - .../IQKeyboardManager+Position.swift | 795 - .../IQKeyboardManager/IQKeyboardManager.swift | 133 - ...crollView+IQKeyboardManagerExtension.swift | 118 - ...lView+IQKeyboardManagerExtensionObjc.swift | 46 - .../UIView+IQKeyboardManagerExtension.swift | 106 - ...IView+IQKeyboardManagerExtensionObjc.swift | 55 - .../UICollectionView+IndexPaths.swift | 45 - .../UITableView+IndexPaths.swift | 45 - .../UIKitExtensions/UIView+Parent.swift | 99 - .../UIKitExtensions/UIView+ParentObjc.swift | 31 - .../UIViewController+ParentContainer.swift | 49 - .../IQKeyboardManager+ToolbarManager.swift | 137 - ...oardManager+ToolbarManagerDeprecated.swift | 177 - .../PrivacyInfo.xcprivacy | 14 - .../Resign/IQKeyboardManager+Resign.swift | 100 - .../IQKeyboardManager+Resign_Deprecated.swift | 37 - .../IQKeyboardResignHandler+Internal.swift | 103 - .../Resign/IQKeyboardResignHandler.swift | 149 - .../UIKItExtensions/UIView+Resign.swift | 69 - .../UIKItExtensions/UIView+ResignObjc.swift | 45 - .../Pods/IQKeyboardManagerSwift/LICENSE.md | 21 - Example/Pods/IQKeyboardManagerSwift/README.md | 236 - .../Assets/PrivacyInfo.xcprivacy | 14 - .../Classes/IQKeyboardInfo.swift | 227 - .../Classes/IQKeyboardNotification.swift | 149 - Example/Pods/IQKeyboardNotification/LICENSE | 21 - Example/Pods/IQKeyboardNotification/README.md | 36 - .../Assets/PrivacyInfo.xcprivacy | 14 - ...ardReturnManager+UITextFieldDelegate.swift | 154 - ...oardReturnManager+UITextViewDelegate.swift | 398 - .../Classes/IQKeyboardReturnManager.swift | 277 - .../Classes/IQTextInputViewInfoModel.swift | 56 - Example/Pods/IQKeyboardReturnManager/LICENSE | 21 - .../Pods/IQKeyboardReturnManager/README.md | 68 - .../Assets/PrivacyInfo.xcprivacy | 14 - .../IQBarButtonItem/IQBarButtonItem.swift | 120 - .../IQBarButtonItemConfiguration.swift | 96 - .../IQBarButtonItem/IQInvocation.swift | 42 - .../IQTitleBarButtonItem.swift | 168 - .../UIView+IQKeyboardExtension.swift | 344 - ...UIView+IQKeyboardExtensionDeprecated.swift | 228 - .../UIView+IQKeyboardExtensionObjc.swift | 254 - .../Classes/IQKeyboardToolbar.swift | 185 - ...boardToolbarPlaceholderConfiguration.swift | 60 - .../Placeholderable/IQPlaceholderable.swift | 37 - Example/Pods/IQKeyboardToolbar/LICENSE | 21 - Example/Pods/IQKeyboardToolbar/README.md | 85 - .../Assets/PrivacyInfo.xcprivacy | 14 - .../IQKeyboardToolbarConfiguration.swift | 90 - .../IQKeyboardToolbarConstants.swift | 68 - .../IQKeyboardToolbarManager+Debug.swift | 52 - .../IQDeepResponderContainerView.swift | 29 - .../IQKeyboardToolbarManager+Deprecated.swift | 183 - .../IQKeyboardToolbarManager+Internal.swift | 143 - .../Classes/IQKeyboardToolbarManager.swift | 142 - .../IQKeyboardToolbarManager+Action.swift | 210 - .../IQKeyboardToolbarManager+Toolbar.swift | 273 - .../Classes/UIKitExtensions/Array+Sort.swift | 58 - .../UIKitExtensions/UIView+Responders.swift | 179 - .../UIView+RespondersObjc.swift | 44 - Example/Pods/IQKeyboardToolbarManager/LICENSE | 21 - .../Pods/IQKeyboardToolbarManager/README.md | 93 - .../Assets/PrivacyInfo.xcprivacy | 14 - .../Classes/IQTextInputViewInfo.swift | 91 - .../Classes/IQTextInputViewNotification.swift | 182 - .../Pods/IQTextInputViewNotification/LICENSE | 19 - .../IQTextInputViewNotification/README.md | 66 - .../IQTextView/Assets/PrivacyInfo.xcprivacy | 14 - .../Classes/IQTextView+Placeholderable.swift | 29 - .../IQTextView/Classes/IQTextView.swift | 193 - Example/Pods/IQTextView/LICENSE | 21 - Example/Pods/IQTextView/README.md | 48 - .../ConsentViewController.podspec.json | 3 +- Example/Pods/Manifest.lock | 61 +- Example/Pods/Pods.xcodeproj/project.pbxproj | 13648 ++++++---------- .../ConsentViewController-iOS.debug.xcconfig | 1 + ...ConsentViewController-iOS.release.xcconfig | 1 + .../ConsentViewController-tvOS.debug.xcconfig | 1 + ...onsentViewController-tvOS.release.xcconfig | 1 + .../IQKeyboardCore/IQKeyboardCore-Info.plist | 26 - .../IQKeyboardCore/IQKeyboardCore-dummy.m | 5 - .../IQKeyboardCore/IQKeyboardCore-prefix.pch | 12 - .../IQKeyboardCore/IQKeyboardCore-umbrella.h | 16 - .../IQKeyboardCore.debug.xcconfig | 13 - .../IQKeyboardCore/IQKeyboardCore.modulemap | 6 - .../IQKeyboardCore.release.xcconfig | 13 - ...e-IQKeyboardCore-IQKeyboardCore-Info.plist | 24 - .../IQKeyboardManagerSwift-Info.plist | 26 - .../IQKeyboardManagerSwift-dummy.m | 5 - .../IQKeyboardManagerSwift-prefix.pch | 12 - .../IQKeyboardManagerSwift-umbrella.h | 16 - .../IQKeyboardManagerSwift.debug.xcconfig | 15 - .../IQKeyboardManagerSwift.modulemap | 6 - .../IQKeyboardManagerSwift.release.xcconfig | 15 - ...gerSwift-IQKeyboardManagerSwift-Info.plist | 24 - .../IQKeyboardNotification-Info.plist | 26 - .../IQKeyboardNotification-dummy.m | 5 - .../IQKeyboardNotification-prefix.pch | 12 - .../IQKeyboardNotification-umbrella.h | 16 - .../IQKeyboardNotification.debug.xcconfig | 13 - .../IQKeyboardNotification.modulemap | 6 - .../IQKeyboardNotification.release.xcconfig | 13 - ...fication-IQKeyboardNotification-Info.plist | 24 - .../IQKeyboardReturnManager-Info.plist | 26 - .../IQKeyboardReturnManager-dummy.m | 5 - .../IQKeyboardReturnManager-prefix.pch | 12 - .../IQKeyboardReturnManager-umbrella.h | 16 - .../IQKeyboardReturnManager.debug.xcconfig | 14 - .../IQKeyboardReturnManager.modulemap | 6 - .../IQKeyboardReturnManager.release.xcconfig | 14 - ...Manager-IQKeyboardReturnManager-Info.plist | 24 - .../IQKeyboardToolbar-Info.plist | 26 - .../IQKeyboardToolbar-dummy.m | 5 - .../IQKeyboardToolbar-prefix.pch | 12 - .../IQKeyboardToolbar-umbrella.h | 16 - .../IQKeyboardToolbar.debug.xcconfig | 14 - .../IQKeyboardToolbar.modulemap | 6 - .../IQKeyboardToolbar.release.xcconfig | 14 - ...yboardToolbar-IQKeyboardToolbar-Info.plist | 24 - .../IQKeyboardToolbarManager-Info.plist | 26 - .../IQKeyboardToolbarManager-dummy.m | 5 - .../IQKeyboardToolbarManager-prefix.pch | 12 - .../IQKeyboardToolbarManager-umbrella.h | 16 - .../IQKeyboardToolbarManager.debug.xcconfig | 15 - .../IQKeyboardToolbarManager.modulemap | 6 - .../IQKeyboardToolbarManager.release.xcconfig | 15 - ...anager-IQKeyboardToolbarManager-Info.plist | 24 - .../IQTextInputViewNotification-Info.plist | 26 - .../IQTextInputViewNotification-dummy.m | 5 - .../IQTextInputViewNotification-prefix.pch | 12 - .../IQTextInputViewNotification-umbrella.h | 16 - ...IQTextInputViewNotification.debug.xcconfig | 15 - .../IQTextInputViewNotification.modulemap | 6 - ...TextInputViewNotification.release.xcconfig | 15 - ...ion-IQTextInputViewNotification-Info.plist | 24 - .../IQTextView/IQTextView-Info.plist | 26 - .../IQTextView/IQTextView-dummy.m | 5 - .../IQTextView/IQTextView-prefix.pch | 12 - .../IQTextView/IQTextView-umbrella.h | 16 - .../IQTextView/IQTextView.debug.xcconfig | 15 - .../IQTextView/IQTextView.modulemap | 6 - .../IQTextView/IQTextView.release.xcconfig | 15 - ...rceBundle-IQTextView-IQTextView-Info.plist | 24 - ...ods-Examples-SourcePointMetaApp-Info.plist | 26 - ...urcePointMetaApp-acknowledgements.markdown | 300 - ...-SourcePointMetaApp-acknowledgements.plist | 398 - .../Pods-Examples-SourcePointMetaApp-dummy.m | 5 - ...App-resources-Debug-input-files.xcfilelist | 16 - ...pp-resources-Debug-output-files.xcfilelist | 15 - ...p-resources-Release-input-files.xcfilelist | 16 - ...-resources-Release-output-files.xcfilelist | 15 - ...s-Examples-SourcePointMetaApp-resources.sh | 157 - ...ods-Examples-SourcePointMetaApp-umbrella.h | 16 - ...Examples-SourcePointMetaApp.debug.xcconfig | 16 - ...Pods-Examples-SourcePointMetaApp.modulemap | 6 - ...amples-SourcePointMetaApp.release.xcconfig | 16 - ...Tests-SourcePointMetaAppUITests-Info.plist | 26 - ...ntMetaAppUITests-acknowledgements.markdown | 556 - ...PointMetaAppUITests-acknowledgements.plist | 636 - ...ds-Tests-SourcePointMetaAppUITests-dummy.m | 5 - ...sts-resources-Debug-input-files.xcfilelist | 7 - ...ts-resources-Debug-output-files.xcfilelist | 6 - ...s-resources-Release-input-files.xcfilelist | 7 - ...-resources-Release-output-files.xcfilelist | 6 - ...sts-SourcePointMetaAppUITests-resources.sh | 139 - ...Tests-SourcePointMetaAppUITests-umbrella.h | 16 - ...s-SourcePointMetaAppUITests.debug.xcconfig | 15 - ...-Tests-SourcePointMetaAppUITests.modulemap | 6 - ...SourcePointMetaAppUITests.release.xcconfig | 15 - .../Helpers/CustomMatchers.swift | 54 +- .../SPGDPRExampleAppUITests.swift | 155 +- .../AuthIDUITests.swift | 10 +- .../Helpers/CustomMatchers.swift | 16 +- .../MetaAppValidationUITests.swift | 10 +- .../PMAsFirstLayerMessageUITests.swift | 10 +- .../PrivacyManagerUITests.swift | 10 +- .../SourcePointMetaAppUITests.swift | 10 +- .../NativePMUITests.swift | 11 +- 235 files changed, 5598 insertions(+), 22472 deletions(-) delete mode 100644 Example/Pods/IQKeyboardCore/IQKeyboardCore/Assets/PrivacyInfo.xcprivacy delete mode 100644 Example/Pods/IQKeyboardCore/IQKeyboardCore/Classes/Constants/IQKeyboardConstants.swift delete mode 100644 Example/Pods/IQKeyboardCore/IQKeyboardCore/Classes/IQKeyboardExtended.swift delete mode 100644 Example/Pods/IQKeyboardCore/IQKeyboardCore/Classes/IQTextInputView.swift delete mode 100644 Example/Pods/IQKeyboardCore/IQKeyboardCore/Classes/UIKitExtensions/UIView+Hierarchy.swift delete mode 100644 Example/Pods/IQKeyboardCore/LICENSE delete mode 100644 Example/Pods/IQKeyboardCore/README.md delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceConfiguration.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager+Internal.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance_Deprecated.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQActiveConfiguration.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQRootControllerConfiguration.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQScrollViewConfiguration.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Debug/IQKeyboardManager+Debug.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Deprecated/IQKeyboardManager+Deprecated.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+ActiveConfiguration.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Internal.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Position.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtension.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtensionObjc.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtension.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtensionObjc.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UICollectionView+IndexPaths.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UITableView+IndexPaths.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+Parent.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+ParentObjc.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIViewController+ParentContainer.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManager.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManagerDeprecated.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/PrivacyInfo.xcprivacy delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign_Deprecated.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler+Internal.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/UIKItExtensions/UIView+Resign.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/UIKItExtensions/UIView+ResignObjc.swift delete mode 100644 Example/Pods/IQKeyboardManagerSwift/LICENSE.md delete mode 100644 Example/Pods/IQKeyboardManagerSwift/README.md delete mode 100644 Example/Pods/IQKeyboardNotification/IQKeyboardNotification/Assets/PrivacyInfo.xcprivacy delete mode 100644 Example/Pods/IQKeyboardNotification/IQKeyboardNotification/Classes/IQKeyboardInfo.swift delete mode 100644 Example/Pods/IQKeyboardNotification/IQKeyboardNotification/Classes/IQKeyboardNotification.swift delete mode 100644 Example/Pods/IQKeyboardNotification/LICENSE delete mode 100644 Example/Pods/IQKeyboardNotification/README.md delete mode 100644 Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Assets/PrivacyInfo.xcprivacy delete mode 100644 Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextFieldDelegate.swift delete mode 100644 Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextViewDelegate.swift delete mode 100644 Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Classes/IQKeyboardReturnManager.swift delete mode 100644 Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Classes/IQTextInputViewInfoModel.swift delete mode 100644 Example/Pods/IQKeyboardReturnManager/LICENSE delete mode 100644 Example/Pods/IQKeyboardReturnManager/README.md delete mode 100644 Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Assets/PrivacyInfo.xcprivacy delete mode 100644 Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItem.swift delete mode 100644 Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItemConfiguration.swift delete mode 100644 Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQBarButtonItem/IQInvocation.swift delete mode 100644 Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQBarButtonItem/IQTitleBarButtonItem.swift delete mode 100644 Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtension.swift delete mode 100644 Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionDeprecated.swift delete mode 100644 Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionObjc.swift delete mode 100644 Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQKeyboardToolbar.swift delete mode 100644 Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/Placeholder/IQKeyboardToolbarPlaceholderConfiguration.swift delete mode 100644 Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Placeholderable/IQPlaceholderable.swift delete mode 100644 Example/Pods/IQKeyboardToolbar/LICENSE delete mode 100644 Example/Pods/IQKeyboardToolbar/README.md delete mode 100644 Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Assets/PrivacyInfo.xcprivacy delete mode 100644 Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Configuration/IQKeyboardToolbarConfiguration.swift delete mode 100644 Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Constants/IQKeyboardToolbarConstants.swift delete mode 100644 Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Debug/IQKeyboardToolbarManager+Debug.swift delete mode 100644 Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/IQDeepResponderContainerView.swift delete mode 100644 Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Deprecated.swift delete mode 100644 Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Internal.swift delete mode 100644 Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager.swift delete mode 100644 Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Action.swift delete mode 100644 Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Toolbar.swift delete mode 100644 Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/UIKitExtensions/Array+Sort.swift delete mode 100644 Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+Responders.swift delete mode 100644 Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+RespondersObjc.swift delete mode 100644 Example/Pods/IQKeyboardToolbarManager/LICENSE delete mode 100644 Example/Pods/IQKeyboardToolbarManager/README.md delete mode 100644 Example/Pods/IQTextInputViewNotification/IQTextInputViewNotification/Assets/PrivacyInfo.xcprivacy delete mode 100644 Example/Pods/IQTextInputViewNotification/IQTextInputViewNotification/Classes/IQTextInputViewInfo.swift delete mode 100644 Example/Pods/IQTextInputViewNotification/IQTextInputViewNotification/Classes/IQTextInputViewNotification.swift delete mode 100644 Example/Pods/IQTextInputViewNotification/LICENSE delete mode 100644 Example/Pods/IQTextInputViewNotification/README.md delete mode 100644 Example/Pods/IQTextView/IQTextView/Assets/PrivacyInfo.xcprivacy delete mode 100644 Example/Pods/IQTextView/IQTextView/Classes/IQTextView+Placeholderable.swift delete mode 100644 Example/Pods/IQTextView/IQTextView/Classes/IQTextView.swift delete mode 100644 Example/Pods/IQTextView/LICENSE delete mode 100644 Example/Pods/IQTextView/README.md delete mode 100644 Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore-Info.plist delete mode 100644 Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore-dummy.m delete mode 100644 Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore-prefix.pch delete mode 100644 Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore-umbrella.h delete mode 100644 Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore.debug.xcconfig delete mode 100644 Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore.modulemap delete mode 100644 Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore.release.xcconfig delete mode 100644 Example/Pods/Target Support Files/IQKeyboardCore/ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist delete mode 100644 Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist delete mode 100644 Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-dummy.m delete mode 100644 Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-prefix.pch delete mode 100644 Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-umbrella.h delete mode 100644 Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.debug.xcconfig delete mode 100644 Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap delete mode 100644 Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.release.xcconfig delete mode 100644 Example/Pods/Target Support Files/IQKeyboardManagerSwift/ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist delete mode 100644 Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification-Info.plist delete mode 100644 Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification-dummy.m delete mode 100644 Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification-prefix.pch delete mode 100644 Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification-umbrella.h delete mode 100644 Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification.debug.xcconfig delete mode 100644 Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification.modulemap delete mode 100644 Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification.release.xcconfig delete mode 100644 Example/Pods/Target Support Files/IQKeyboardNotification/ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist delete mode 100644 Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-Info.plist delete mode 100644 Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-dummy.m delete mode 100644 Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-prefix.pch delete mode 100644 Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-umbrella.h delete mode 100644 Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.debug.xcconfig delete mode 100644 Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.modulemap delete mode 100644 Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.release.xcconfig delete mode 100644 Example/Pods/Target Support Files/IQKeyboardReturnManager/ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist delete mode 100644 Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-Info.plist delete mode 100644 Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-dummy.m delete mode 100644 Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-prefix.pch delete mode 100644 Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-umbrella.h delete mode 100644 Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.debug.xcconfig delete mode 100644 Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.modulemap delete mode 100644 Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.release.xcconfig delete mode 100644 Example/Pods/Target Support Files/IQKeyboardToolbar/ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist delete mode 100644 Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-Info.plist delete mode 100644 Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-dummy.m delete mode 100644 Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-prefix.pch delete mode 100644 Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-umbrella.h delete mode 100644 Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.debug.xcconfig delete mode 100644 Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.modulemap delete mode 100644 Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.release.xcconfig delete mode 100644 Example/Pods/Target Support Files/IQKeyboardToolbarManager/ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist delete mode 100644 Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-Info.plist delete mode 100644 Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-dummy.m delete mode 100644 Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-prefix.pch delete mode 100644 Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-umbrella.h delete mode 100644 Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.debug.xcconfig delete mode 100644 Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.modulemap delete mode 100644 Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.release.xcconfig delete mode 100644 Example/Pods/Target Support Files/IQTextInputViewNotification/ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist delete mode 100644 Example/Pods/Target Support Files/IQTextView/IQTextView-Info.plist delete mode 100644 Example/Pods/Target Support Files/IQTextView/IQTextView-dummy.m delete mode 100644 Example/Pods/Target Support Files/IQTextView/IQTextView-prefix.pch delete mode 100644 Example/Pods/Target Support Files/IQTextView/IQTextView-umbrella.h delete mode 100644 Example/Pods/Target Support Files/IQTextView/IQTextView.debug.xcconfig delete mode 100644 Example/Pods/Target Support Files/IQTextView/IQTextView.modulemap delete mode 100644 Example/Pods/Target Support Files/IQTextView/IQTextView.release.xcconfig delete mode 100644 Example/Pods/Target Support Files/IQTextView/ResourceBundle-IQTextView-IQTextView-Info.plist delete mode 100644 Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-Info.plist delete mode 100644 Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-acknowledgements.markdown delete mode 100644 Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-acknowledgements.plist delete mode 100644 Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-dummy.m delete mode 100644 Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-Debug-input-files.xcfilelist delete mode 100644 Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-Debug-output-files.xcfilelist delete mode 100644 Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-Release-input-files.xcfilelist delete mode 100644 Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-Release-output-files.xcfilelist delete mode 100755 Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources.sh delete mode 100644 Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-umbrella.h delete mode 100644 Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.debug.xcconfig delete mode 100644 Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.modulemap delete mode 100644 Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.release.xcconfig delete mode 100644 Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-Info.plist delete mode 100644 Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-acknowledgements.markdown delete mode 100644 Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-acknowledgements.plist delete mode 100644 Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-dummy.m delete mode 100644 Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-Debug-input-files.xcfilelist delete mode 100644 Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-Debug-output-files.xcfilelist delete mode 100644 Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-Release-input-files.xcfilelist delete mode 100644 Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-Release-output-files.xcfilelist delete mode 100755 Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources.sh delete mode 100644 Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-umbrella.h delete mode 100644 Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig delete mode 100644 Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.modulemap delete mode 100644 Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.release.xcconfig diff --git a/ConsentViewController.podspec b/ConsentViewController.podspec index d87eecdcd..f20747e00 100644 --- a/ConsentViewController.podspec +++ b/ConsentViewController.podspec @@ -33,6 +33,7 @@ Pod::Spec.new do |s| } s.pod_target_xcconfig = { 'BUILD_LIBRARY_FOR_DISTRIBUTION' => 'YES', - 'DEFINES_MODULE' => 'YES' + 'DEFINES_MODULE' => 'YES', + 'OTHER_SWIFT_FLAGS[config=Debug]' => '$(inherited) -enable-testing' } end diff --git a/Example/AuthExampleUITests/AuthExampleUITests.swift b/Example/AuthExampleUITests/AuthExampleUITests.swift index ec4e35077..54692869a 100644 --- a/Example/AuthExampleUITests/AuthExampleUITests.swift +++ b/Example/AuthExampleUITests/AuthExampleUITests.swift @@ -12,40 +12,40 @@ import Quick import XCTest class AuthExampleUITests: QuickSpec { - var app: AuthExampleApp! + static var app: AuthExampleApp! - override func spec() { + override class func spec() { beforeSuite { - self.app = AuthExampleApp() - Nimble.AsyncDefaults.timeout = .seconds(20) - Nimble.AsyncDefaults.pollInterval = .milliseconds(100) + app = AuthExampleApp() + Nimble.PollingDefaults.timeout = .seconds(20) + Nimble.PollingDefaults.pollInterval = .milliseconds(100) } afterSuite { - Nimble.AsyncDefaults.timeout = .seconds(1) - Nimble.AsyncDefaults.pollInterval = .milliseconds(10) + Nimble.PollingDefaults.timeout = .seconds(1) + Nimble.PollingDefaults.pollInterval = .milliseconds(10) } beforeEach { - self.app.relaunch(clean: true, resetAtt: true) + app.relaunch(clean: true, resetAtt: true) } func acceptGDPRMessage() { - expect(self.app.gdprMessage.messageTitle).toEventually(showUp()) - self.app.gdprMessage.acceptButton.tap() + expect(app.gdprMessage.messageTitle).toEventually(showUp()) + app.gdprMessage.acceptButton.tap() } func acceptCCPAMessage() { - expect(self.app.ccpaMessage.messageTitle).toEventually(showUp()) - self.app.ccpaMessage.acceptButton.tap() + expect(app.ccpaMessage.messageTitle).toEventually(showUp()) + app.ccpaMessage.acceptButton.tap() } func waitForSdkToFinish() { - expect(self.app.sdkStatusLabel).toEventually(containText("Finished")) + expect(app.sdkStatusLabel).toEventually(containText("Finished")) } func navigateToWebView() { - self.app.webViewButton.tap() + app.webViewButton.tap() } it("Accepting all via native screen should prevent messages from showing on the webview screen") { @@ -53,7 +53,7 @@ class AuthExampleUITests: QuickSpec { acceptCCPAMessage() waitForSdkToFinish() navigateToWebView() - expect(self.app.webViewOnConsentReadyCalls.count).toEventually(equal(2)) + expect(app.webViewOnConsentReadyCalls.count).toEventually(equal(2)) } } } diff --git a/Example/AuthExampleUITests/CustomMatchers.swift b/Example/AuthExampleUITests/CustomMatchers.swift index c6def0b36..92a305654 100644 --- a/Example/AuthExampleUITests/CustomMatchers.swift +++ b/Example/AuthExampleUITests/CustomMatchers.swift @@ -11,66 +11,39 @@ import Nimble import Quick import XCTest -public typealias Predicate = Nimble.Predicate - -extension DispatchTimeInterval { - func toDouble() -> Double { - var result: Double = 0 - switch self { - case .seconds(let value): - result = Double(value) - - case .milliseconds(let value): - result = Double(value) * 0.001 - - case .microseconds(let value): - result = Double(value) * 0.000_001 - - case .nanoseconds(let value): - result = Double(value) * 0.000_000_001 - - case .never: - result = Double.infinity - @unknown default: - result = Double.infinity - } - return result - } -} - /// A matcher that checks if a `XCUIElement` contains the given text -public func containText(_ text: String) -> Predicate { - Predicate.simple("contain text") { actualExpression in +public func containText(_ text: String) -> Matcher { + Matcher.simple("contain text") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.label.contains(text)) + return MatcherStatus(bool: actual.label.contains(text)) } } /// A Nimble matcher that succeeds when an XCUIElement shows up after /// a certain amount of time. 20 seconds by default -public func showUp() -> Predicate { - Predicate.simple("show up") { actualExpression in +public func showUp() -> Matcher { + Matcher.simple("show up") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.waitForExistence(timeout: Nimble.AsyncDefaults.timeout.toDouble())) + return MatcherStatus(bool: actual.waitForExistence(timeout: Nimble.PollingDefaults.timeout.timeInterval)) } } /// A Nimble matcher that succeeds when an XCUIElement shows up after /// a certain amount of time. -public func showUp(in timeout: TimeInterval) -> Predicate { - Predicate.simple("show up") { actualExpression in +public func showUp(in timeout: TimeInterval) -> Matcher { + Matcher.simple("show up") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.waitForExistence(timeout: timeout)) + return MatcherStatus(bool: actual.waitForExistence(timeout: timeout)) } } /// A Nimble matcher that succeeds when an XCUIElement no longer exists. Due to its async nature, it should /// be used together with `.toEventually`. -public func disappear() -> Predicate { - Predicate.simple("disappear") { actualExpression in +public func disappear() -> Matcher { + Matcher.simple("disappear") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } QuickSpec.current.expectation(for: NSPredicate(format: "exists == FALSE"), evaluatedWith: actual, handler: nil) - QuickSpec.current.waitForExpectations(timeout: Double(Nimble.AsyncDefaults.timeout.toDouble())) - return PredicateStatus(bool: !actual.exists) + QuickSpec.current.waitForExpectations(timeout: Nimble.PollingDefaults.timeout.timeInterval) + return MatcherStatus(bool: !actual.exists) } } diff --git a/Example/ConsentViewController.xcodeproj/project.pbxproj b/Example/ConsentViewController.xcodeproj/project.pbxproj index 9fd686338..cd3bf9e7e 100644 --- a/Example/ConsentViewController.xcodeproj/project.pbxproj +++ b/Example/ConsentViewController.xcodeproj/project.pbxproj @@ -84,16 +84,9 @@ 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 634E6551A3D2C7BE476497AF /* Pods_Examples_ObjC_ExampleApp.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 344CD97AAF36A21DC48106DF /* Pods_Examples_ObjC_ExampleApp.framework */; }; - 6D110B8724D9E23500A51BD9 /* SourcePointMetaAppUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D110B8624D9E23500A51BD9 /* SourcePointMetaAppUITests.swift */; }; - 6D110B8A24D9E28900A51BD9 /* CustomMatchers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D110B8924D9E28900A51BD9 /* CustomMatchers.swift */; }; - 6D110B8C24D9E2A500A51BD9 /* MetaApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D110B8B24D9E2A500A51BD9 /* MetaApp.swift */; }; - 6D110B8E24D9E2BC00A51BD9 /* PropertyData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D110B8D24D9E2BC00A51BD9 /* PropertyData.swift */; }; 6D21341B2578BEB600E0C5E2 /* PropertyDetails+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D21341A2578BEB600E0C5E2 /* PropertyDetails+CoreDataProperties.swift */; }; 6D21341D2578BEBF00E0C5E2 /* PropertyDetails+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D21341C2578BEBE00E0C5E2 /* PropertyDetails+CoreDataClass.swift */; }; 6D3597CF269F40B600935D3C /* ConsentDetailsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D3597CE269F40B600935D3C /* ConsentDetailsViewModel.swift */; }; - 6D3FCA9C24DAA8C800F651E1 /* AuthIDUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D3FCA9B24DAA8C800F651E1 /* AuthIDUITests.swift */; }; - 6D3FCA9E24DAAE2400F651E1 /* PMAsFirstLayerMessageUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D3FCA9D24DAAE2400F651E1 /* PMAsFirstLayerMessageUITests.swift */; }; - 6D3FCAA024DAB22300F651E1 /* PrivacyManagerUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D3FCA9F24DAB22300F651E1 /* PrivacyManagerUITests.swift */; }; 6D45580D259A446800635952 /* SPPrivacyManagerTabSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D45580C259A446800635952 /* SPPrivacyManagerTabSpec.swift */; }; 6D554C2224310BF800B15583 /* SourcePointClientSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D554C2124310BF800B15583 /* SourcePointClientSpec.swift */; }; 6D56EB7F24C8850C009F33D9 /* NativeMessageExampleUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D56EB7E24C8850C009F33D9 /* NativeMessageExampleUITests.swift */; }; @@ -131,7 +124,6 @@ 6DE11C6C269A2D5C0058ABE9 /* CampaignModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DE11C6B269A2D5C0058ABE9 /* CampaignModel.swift */; }; 6DE11C70269A2DDB0058ABE9 /* SideMenuViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DE11C6E269A2DDB0058ABE9 /* SideMenuViewController.swift */; }; 6DE11C71269A2DDB0058ABE9 /* ConsentDetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DE11C6F269A2DDB0058ABE9 /* ConsentDetailsViewController.swift */; }; - 7B51CFC524FD0B3A0096048F /* MetaAppValidationUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B51CFC424FD0B3A0096048F /* MetaAppValidationUITests.swift */; }; 7B7E71EFD5299B59B8035644 /* Pods_TVOSExampleApp.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DBED1A47C12A72D13C48A82 /* Pods_TVOSExampleApp.framework */; }; 7C654AFF68713AF5899F83C7 /* Pods_Tests_FirebaseTests_SourcepointFirebaseDemoTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 47390E42DC7D6514133D6218 /* Pods_Tests_FirebaseTests_SourcepointFirebaseDemoTests.framework */; }; 7EE58874897DDD0CCC255190 /* Pods_TVOSExampleAppUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 65F80DCF0D69A15E7B7B3569 /* Pods_TVOSExampleAppUITests.framework */; }; @@ -356,9 +348,7 @@ 82FA47732A3C90DC0065BF6D /* SPPublisherDataSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82FA47722A3C90DC0065BF6D /* SPPublisherDataSpec.swift */; }; 87C032C26AECC982CD025884 /* Pods_Examples_AuthExample.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B7A76E1F54E21D950848364 /* Pods_Examples_AuthExample.framework */; }; 94EFC51AA3389BBEEB5176F1 /* Pods_Tests_FirebaseTests_SourcepointFirebaseDemoUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 686744776E2D853880A1F5FC /* Pods_Tests_FirebaseTests_SourcepointFirebaseDemoUITests.framework */; }; - 9FFB13CCF00181807B246ADC /* Pods_Tests_SourcePointMetaAppUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 79E2B05F4425633708186D2B /* Pods_Tests_SourcePointMetaAppUITests.framework */; }; C2AB2FACB4D2EB453836FD11 /* Pods_Tests_ObjC_ExampleAppUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 875ED88169AEDB713C2E2758 /* Pods_Tests_ObjC_ExampleAppUITests.framework */; }; - C3C89FAB91A7D5BA7DF359FE /* Pods_Examples_SourcePointMetaApp.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 04A10467F79C46B236807647 /* Pods_Examples_SourcePointMetaApp.framework */; }; DC4841F04D94874F512B0C20 /* Pods_Tests_NativeMessageExampleUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BCBCDA01CB1EC19A48B991CB /* Pods_Tests_NativeMessageExampleUITests.framework */; }; E27FFB694A3D1DC8F6D0FE08 /* Pods_Examples_ConsentViewController_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EE1CF86E04E13E6A2A76A02C /* Pods_Examples_ConsentViewController_Example.framework */; }; E441195F41E6FEEA4A0CD6EA /* Pods_Examples_SourcepointFirebaseDemo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 713CAF97641720BD67AFFCDC /* Pods_Examples_SourcepointFirebaseDemo.framework */; }; @@ -367,13 +357,6 @@ /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 6D110B8124D9E0A100A51BD9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 607FACC81AFB9204008FA782 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1997B639238FDCE80079AF34; - remoteInfo = SourcePointMetaApp; - }; 6D56EB8124C8850C009F33D9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 607FACC81AFB9204008FA782 /* Project object */; @@ -455,7 +438,6 @@ /* Begin PBXFileReference section */ 0427A1A28FA57AB884B32771 /* Pods-Tests-AuthExampleUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests-AuthExampleUITests.debug.xcconfig"; path = "Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests.debug.xcconfig"; sourceTree = ""; }; 0436D4159F86156B8C36C280 /* Pods-Examples-NativeMessageExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Examples-NativeMessageExample.release.xcconfig"; path = "Target Support Files/Pods-Examples-NativeMessageExample/Pods-Examples-NativeMessageExample.release.xcconfig"; sourceTree = ""; }; - 04A10467F79C46B236807647 /* Pods_Examples_SourcePointMetaApp.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Examples_SourcePointMetaApp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 05F199FACFADB5DF7C1FF42E /* Pods-Examples-ObjC-ExampleApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Examples-ObjC-ExampleApp.release.xcconfig"; path = "Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp.release.xcconfig"; sourceTree = ""; }; 08B3D522E8545D3B9E17818F /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig"; path = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig"; sourceTree = ""; }; 0B312ED92ABC4E2400B62E23 /* ConsentViewController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ConsentViewController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -560,7 +542,6 @@ 663DE362110AEABD75816094 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 686744776E2D853880A1F5FC /* Pods_Tests_FirebaseTests_SourcepointFirebaseDemoUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Tests_FirebaseTests_SourcepointFirebaseDemoUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 6D0207552519FD72002D1488 /* SourcePointMetaApp 2.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "SourcePointMetaApp 2.xcdatamodel"; sourceTree = ""; }; - 6D110B7C24D9E0A100A51BD9 /* SourcePointMetaAppUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SourcePointMetaAppUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 6D110B8024D9E0A100A51BD9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 6D110B8624D9E23500A51BD9 /* SourcePointMetaAppUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SourcePointMetaAppUITests.swift; sourceTree = ""; }; 6D110B8924D9E28900A51BD9 /* CustomMatchers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomMatchers.swift; sourceTree = ""; }; @@ -817,7 +798,6 @@ 84D7455929FAE7DB2B82D763 /* Pods_Tests_ConsentViewController_ExampleTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Tests_ConsentViewController_ExampleTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 875ED88169AEDB713C2E2758 /* Pods_Tests_ObjC_ExampleAppUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Tests_ObjC_ExampleAppUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 9314E0ED6D8024875D39A13C /* Pods-Tests-AuthExampleUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests-AuthExampleUITests.release.xcconfig"; path = "Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests.release.xcconfig"; sourceTree = ""; }; - 95544886035EDE23FEC7EED7 /* Pods-Examples-SourcePointMetaApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Examples-SourcePointMetaApp.debug.xcconfig"; path = "Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.debug.xcconfig"; sourceTree = ""; }; AAA25A682A28ABFE005FE84A /* SPConsentManagerSpec.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SPConsentManagerSpec.swift; sourceTree = ""; }; AADA1742684A81B28508F8A3 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig"; path = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig"; sourceTree = ""; }; AE09CBD2DEC64110CFBF2F9C /* Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig"; path = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig"; sourceTree = ""; }; @@ -825,7 +805,6 @@ B5AA36A7D29C1E427A75F8D4 /* ConsentViewController.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = ConsentViewController.podspec; path = ../ConsentViewController.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B7F9D91F9EBFB7E1D4542C20 /* Pods-Tests-NativeMessageExampleUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests-NativeMessageExampleUITests.debug.xcconfig"; path = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.debug.xcconfig"; sourceTree = ""; }; BCBCDA01CB1EC19A48B991CB /* Pods_Tests_NativeMessageExampleUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Tests_NativeMessageExampleUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C72FBFDA5F9DD96AAF0299A8 /* Pods-Examples-SourcePointMetaApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Examples-SourcePointMetaApp.release.xcconfig"; path = "Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.release.xcconfig"; sourceTree = ""; }; C9D439D8B5ECD96F3DF18806 /* Pods-Examples-AuthExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Examples-AuthExample.debug.xcconfig"; path = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample.debug.xcconfig"; sourceTree = ""; }; CD3A9C5A0D8D124F68BFF2FE /* Pods_Tests_AuthExampleUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Tests_AuthExampleUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; E2E2B16A0737B772406616B4 /* Pods-TVOSExampleApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TVOSExampleApp.debug.xcconfig"; path = "Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp.debug.xcconfig"; sourceTree = ""; }; @@ -860,7 +839,6 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C3C89FAB91A7D5BA7DF359FE /* Pods_Examples_SourcePointMetaApp.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -872,14 +850,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6D110B7924D9E0A100A51BD9 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 9FFB13CCF00181807B246ADC /* Pods_Tests_SourcePointMetaAppUITests.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 6D56EB7924C8850C009F33D9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1439,7 +1409,6 @@ 82D8FEDC23DC753400F28D74 /* NativeMessageExample.app */, 8214B277249CC13B00167BFE /* SPGDPRExampleAppUITests.xctest */, 6D56EB7C24C8850C009F33D9 /* NativeMessageExampleUITests.xctest */, - 6D110B7C24D9E0A100A51BD9 /* SourcePointMetaAppUITests.xctest */, 6D8046EA25D1A87E0005002B /* ObjC-ExampleApp.app */, 6D80473225D1AC3E0005002B /* ObjC-ExampleAppUITests.xctest */, 6D9053FB25D27ABF00E4B49D /* AuthExampleUITests.xctest */, @@ -1658,8 +1627,6 @@ 0436D4159F86156B8C36C280 /* Pods-Examples-NativeMessageExample.release.xcconfig */, 5676237D6A630435EBC348C0 /* Pods-Examples-ObjC-ExampleApp.debug.xcconfig */, 05F199FACFADB5DF7C1FF42E /* Pods-Examples-ObjC-ExampleApp.release.xcconfig */, - 95544886035EDE23FEC7EED7 /* Pods-Examples-SourcePointMetaApp.debug.xcconfig */, - C72FBFDA5F9DD96AAF0299A8 /* Pods-Examples-SourcePointMetaApp.release.xcconfig */, 715694C589F59D19F95D699B /* Pods-Examples-SourcepointFirebaseDemo.debug.xcconfig */, EEE5584F78A04F8BB7CDEAF3 /* Pods-Examples-SourcepointFirebaseDemo.release.xcconfig */, E2E2B16A0737B772406616B4 /* Pods-TVOSExampleApp.debug.xcconfig */, @@ -2118,7 +2085,6 @@ EE1CF86E04E13E6A2A76A02C /* Pods_Examples_ConsentViewController_Example.framework */, 187253040B35CC65B2CB26B3 /* Pods_Examples_NativeMessageExample.framework */, 344CD97AAF36A21DC48106DF /* Pods_Examples_ObjC_ExampleApp.framework */, - 04A10467F79C46B236807647 /* Pods_Examples_SourcePointMetaApp.framework */, 713CAF97641720BD67AFFCDC /* Pods_Examples_SourcepointFirebaseDemo.framework */, 1DBED1A47C12A72D13C48A82 /* Pods_TVOSExampleApp.framework */, 65F80DCF0D69A15E7B7B3569 /* Pods_TVOSExampleAppUITests.framework */, @@ -2196,11 +2162,9 @@ isa = PBXNativeTarget; buildConfigurationList = 1997B65A238FDCF30079AF34 /* Build configuration list for PBXNativeTarget "SourcePointMetaApp" */; buildPhases = ( - 96DFDD744455274E7FD1F479 /* [CP] Check Pods Manifest.lock */, 1997B636238FDCE80079AF34 /* Sources */, 1997B637238FDCE80079AF34 /* Frameworks */, 1997B638238FDCE80079AF34 /* Resources */, - 856089509C82726ABF2E0059 /* [CP] Copy Pods Resources */, ); buildRules = ( ); @@ -2231,26 +2195,6 @@ productReference = 607FACD01AFB9204008FA782 /* SPGDPRExampleApp.app */; productType = "com.apple.product-type.application"; }; - 6D110B7B24D9E0A100A51BD9 /* SourcePointMetaAppUITests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 6D110B8524D9E0A100A51BD9 /* Build configuration list for PBXNativeTarget "SourcePointMetaAppUITests" */; - buildPhases = ( - 712F05A898384DB5B75CBE8D /* [CP] Check Pods Manifest.lock */, - 6D110B7824D9E0A100A51BD9 /* Sources */, - 6D110B7924D9E0A100A51BD9 /* Frameworks */, - 6D110B7A24D9E0A100A51BD9 /* Resources */, - 208E40E080595D9ECB9D7932 /* [CP] Copy Pods Resources */, - ); - buildRules = ( - ); - dependencies = ( - 6D110B8224D9E0A100A51BD9 /* PBXTargetDependency */, - ); - name = SourcePointMetaAppUITests; - productName = SourcePointMetaAppUITests; - productReference = 6D110B7C24D9E0A100A51BD9 /* SourcePointMetaAppUITests.xctest */; - productType = "com.apple.product-type.bundle.ui-testing"; - }; 6D56EB7B24C8850C009F33D9 /* NativeMessageExampleUITests */ = { isa = PBXNativeTarget; buildConfigurationList = 6D56EB8524C8850C009F33D9 /* Build configuration list for PBXNativeTarget "NativeMessageExampleUITests" */; @@ -2574,13 +2518,6 @@ CreatedOnToolsVersion = 6.3.1; LastSwiftMigration = 1110; }; - 6D110B7B24D9E0A100A51BD9 = { - CreatedOnToolsVersion = 11.5; - DevelopmentTeam = 6KYEQLUC5A; - LastSwiftMigration = 1150; - ProvisioningStyle = Automatic; - TestTargetID = 1997B639238FDCE80079AF34; - }; 6D56EB7B24C8850C009F33D9 = { CreatedOnToolsVersion = 11.5; ProvisioningStyle = Automatic; @@ -2668,7 +2605,6 @@ 82D8FEDB23DC753400F28D74 /* NativeMessageExample */, 8214B276249CC13B00167BFE /* SPGDPRExampleAppUITests */, 6D56EB7B24C8850C009F33D9 /* NativeMessageExampleUITests */, - 6D110B7B24D9E0A100A51BD9 /* SourcePointMetaAppUITests */, 6D8046E925D1A87E0005002B /* ObjC-ExampleApp */, 6D80473125D1AC3E0005002B /* ObjC-ExampleAppUITests */, 6D9053FA25D27ABF00E4B49D /* AuthExampleUITests */, @@ -2753,13 +2689,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6D110B7A24D9E0A100A51BD9 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 6D56EB7A24C8850C009F33D9 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -2898,14 +2827,10 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp-resources-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp-resources-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp-resources.sh\"\n"; @@ -2941,14 +2866,10 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-resources-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-resources-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-resources.sh\"\n"; @@ -2962,40 +2883,15 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-resources-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-resources-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-resources.sh\"\n"; showEnvVarsInLog = 0; }; - 208E40E080595D9ECB9D7932 /* [CP] Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-${CONFIGURATION}-input-files.xcfilelist", - ); - inputPaths = ( - ); - name = "[CP] Copy Pods Resources"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-${CONFIGURATION}-output-files.xcfilelist", - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; 273C46CF88501518443E1045 /* [CP] Copy Pods Resources */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -3004,14 +2900,10 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo-resources-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo-resources-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo-resources.sh\"\n"; @@ -3025,14 +2917,10 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-resources-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-resources-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-resources.sh\"\n"; @@ -3068,14 +2956,10 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-resources-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-resources-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-resources.sh\"\n"; @@ -3089,14 +2973,10 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-TVOSExampleAppUITests/Pods-TVOSExampleAppUITests-resources-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-TVOSExampleAppUITests/Pods-TVOSExampleAppUITests-resources-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-TVOSExampleAppUITests/Pods-TVOSExampleAppUITests-resources.sh\"\n"; @@ -3132,14 +3012,10 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example-resources-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example-resources-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example-resources.sh\"\n"; @@ -3197,14 +3073,10 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-resources-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-resources-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-resources.sh\"\n"; @@ -3229,28 +3101,6 @@ shellPath = /bin/sh; shellScript = "# Type a script or drag a script file from your workspace to insert its path.\n/usr/local/bin/carthage copy-frameworks\n"; }; - 712F05A898384DB5B75CBE8D /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-Tests-SourcePointMetaAppUITests-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; - showEnvVarsInLog = 0; - }; 822482A9255FD5A0004C8639 /* ShellScript */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -3307,27 +3157,6 @@ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; - 856089509C82726ABF2E0059 /* [CP] Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-${CONFIGURATION}-input-files.xcfilelist", - ); - inputPaths = ( - ); - name = "[CP] Copy Pods Resources"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-${CONFIGURATION}-output-files.xcfilelist", - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; 94D2399F97D2FB597267F3F5 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -3350,28 +3179,6 @@ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; - 96DFDD744455274E7FD1F479 /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-Examples-SourcePointMetaApp-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; - showEnvVarsInLog = 0; - }; 9D3D2FA1E9151EF9EB7CD682 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -3446,14 +3253,10 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample-resources-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample-resources-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample-resources.sh\"\n"; @@ -3555,14 +3358,10 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-resources-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-resources-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-resources.sh\"\n"; @@ -3576,14 +3375,10 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-NativeMessageExample/Pods-Examples-NativeMessageExample-resources-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-NativeMessageExample/Pods-Examples-NativeMessageExample-resources-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Examples-NativeMessageExample/Pods-Examples-NativeMessageExample-resources.sh\"\n"; @@ -3597,14 +3392,10 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp-resources-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp-resources-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp-resources.sh\"\n"; @@ -3618,14 +3409,10 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-resources-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-resources-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-resources.sh\"\n"; @@ -3848,21 +3635,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6D110B7824D9E0A100A51BD9 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6D110B8E24D9E2BC00A51BD9 /* PropertyData.swift in Sources */, - 6D3FCA9E24DAAE2400F651E1 /* PMAsFirstLayerMessageUITests.swift in Sources */, - 6D110B8724D9E23500A51BD9 /* SourcePointMetaAppUITests.swift in Sources */, - 6D3FCA9C24DAA8C800F651E1 /* AuthIDUITests.swift in Sources */, - 6D110B8C24D9E2A500A51BD9 /* MetaApp.swift in Sources */, - 7B51CFC524FD0B3A0096048F /* MetaAppValidationUITests.swift in Sources */, - 6D3FCAA024DAB22300F651E1 /* PrivacyManagerUITests.swift in Sources */, - 6D110B8A24D9E28900A51BD9 /* CustomMatchers.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 6D56EB7824C8850C009F33D9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -4050,11 +3822,6 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 6D110B8224D9E0A100A51BD9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 1997B639238FDCE80079AF34 /* SourcePointMetaApp */; - targetProxy = 6D110B8124D9E0A100A51BD9 /* PBXContainerItemProxy */; - }; 6D56EB8224C8850C009F33D9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; target = 82D8FEDB23DC753400F28D74 /* NativeMessageExample */; @@ -4438,7 +4205,6 @@ }; 1997B656238FDCF30079AF34 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 95544886035EDE23FEC7EED7 /* Pods-Examples-SourcePointMetaApp.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ANALYZER_NONNULL = YES; @@ -4475,7 +4241,6 @@ }; 1997B657238FDCF30079AF34 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C72FBFDA5F9DD96AAF0299A8 /* Pods-Examples-SourcePointMetaApp.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ANALYZER_NONNULL = YES; @@ -4624,7 +4389,7 @@ CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = 6KYEQLUC5A; INFOPLIST_FILE = ConsentViewController/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 16.6; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -4649,7 +4414,7 @@ CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = 6KYEQLUC5A; INFOPLIST_FILE = ConsentViewController/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 16.6; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -4664,72 +4429,6 @@ }; name = Release; }; - 6D110B8324D9E0A100A51BD9 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2DE2099905DA3BD34B6F6B3E /* Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig */; - buildSettings = { - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CODE_SIGN_STYLE = Automatic; - DEBUG_INFORMATION_FORMAT = dwarf; - DEVELOPMENT_TEAM = 6KYEQLUC5A; - GCC_C_LANGUAGE_STANDARD = gnu11; - INFOPLIST_FILE = SourcePointMetaAppUITests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; - MTL_FAST_MATH = YES; - OTHER_LDFLAGS = "$(inherited)"; - PRODUCT_BUNDLE_IDENTIFIER = com.sourcepoint.SourcePointMetaAppUITests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - TEST_TARGET_NAME = SourcePointMetaApp; - }; - name = Debug; - }; - 6D110B8424D9E0A100A51BD9 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5762823FCE899AF5C777F3A2 /* Pods-Tests-SourcePointMetaAppUITests.release.xcconfig */; - buildSettings = { - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CODE_SIGN_STYLE = Automatic; - DEVELOPMENT_TEAM = 6KYEQLUC5A; - GCC_C_LANGUAGE_STANDARD = gnu11; - INFOPLIST_FILE = SourcePointMetaAppUITests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MTL_FAST_MATH = YES; - OTHER_LDFLAGS = "$(inherited)"; - PRODUCT_BUNDLE_IDENTIFIER = com.sourcepoint.SourcePointMetaAppUITests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - TEST_TARGET_NAME = SourcePointMetaApp; - }; - name = Release; - }; 6D56EB8324C8850C009F33D9 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = B7F9D91F9EBFB7E1D4542C20 /* Pods-Tests-NativeMessageExampleUITests.debug.xcconfig */; @@ -4744,7 +4443,7 @@ DEBUG_INFORMATION_FORMAT = dwarf; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = NativeMessageExampleUITests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 13.5; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -4775,7 +4474,7 @@ CODE_SIGN_STYLE = Automatic; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = NativeMessageExampleUITests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 13.5; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -4809,7 +4508,7 @@ DEVELOPMENT_TEAM = ""; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = "ObjC-ExampleApp/Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -4841,7 +4540,7 @@ DEVELOPMENT_TEAM = ""; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = "ObjC-ExampleApp/Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -4871,7 +4570,7 @@ DEVELOPMENT_TEAM = ""; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = "ObjC-ExampleAppUITests/Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -4906,7 +4605,7 @@ DEVELOPMENT_TEAM = ""; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = "ObjC-ExampleAppUITests/Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -4940,7 +4639,7 @@ DEVELOPMENT_TEAM = ""; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = AuthExampleUITests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -4977,7 +4676,7 @@ DEVELOPMENT_TEAM = ""; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = AuthExampleUITests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -5011,7 +4710,7 @@ DEVELOPMENT_TEAM = 6KYEQLUC5A; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = SPGDPRExampleAppUITests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -5044,7 +4743,7 @@ DEVELOPMENT_TEAM = 6KYEQLUC5A; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = SPGDPRExampleAppUITests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -5092,7 +4791,7 @@ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 12.0; + TVOS_DEPLOYMENT_TARGET = 18.6; }; name = Debug; }; @@ -5124,7 +4823,7 @@ SDKROOT = appletvos; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 12.0; + TVOS_DEPLOYMENT_TARGET = 18.6; }; name = Release; }; @@ -5160,7 +4859,7 @@ SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 3; TEST_TARGET_NAME = TVOSExampleApp; - TVOS_DEPLOYMENT_TARGET = 14.5; + TVOS_DEPLOYMENT_TARGET = 18.6; }; name = Debug; }; @@ -5193,7 +4892,7 @@ SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 3; TEST_TARGET_NAME = TVOSExampleApp; - TVOS_DEPLOYMENT_TARGET = 14.5; + TVOS_DEPLOYMENT_TARGET = 18.6; }; name = Release; }; @@ -5219,7 +4918,7 @@ ); GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = AuthExample/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -5258,7 +4957,7 @@ ); GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = AuthExample/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -5298,7 +4997,7 @@ INFOPLIST_KEY_UIMainStoryboardFile = Main; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -5337,7 +5036,7 @@ INFOPLIST_KEY_UIMainStoryboardFile = Main; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; - IPHONEOS_DEPLOYMENT_TARGET = 15.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -5369,7 +5068,7 @@ ENABLE_USER_SCRIPT_SANDBOXING = YES; GCC_C_LANGUAGE_STANDARD = gnu17; GENERATE_INFOPLIST_FILE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 17.2; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LOCALIZATION_PREFERS_STRING_CATALOGS = YES; MARKETING_VERSION = 1.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; @@ -5397,7 +5096,7 @@ ENABLE_USER_SCRIPT_SANDBOXING = YES; GCC_C_LANGUAGE_STANDARD = gnu17; GENERATE_INFOPLIST_FILE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 17.2; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LOCALIZATION_PREFERS_STRING_CATALOGS = YES; MARKETING_VERSION = 1.0; MTL_FAST_MATH = YES; @@ -5435,7 +5134,7 @@ INFOPLIST_KEY_UIMainStoryboardFile = Main; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -5479,7 +5178,7 @@ INFOPLIST_KEY_UIMainStoryboardFile = Main; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -5515,7 +5214,7 @@ ENABLE_USER_SCRIPT_SANDBOXING = YES; GCC_C_LANGUAGE_STANDARD = gnu17; GENERATE_INFOPLIST_FILE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 17.2; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LOCALIZATION_PREFERS_STRING_CATALOGS = YES; MARKETING_VERSION = 1.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; @@ -5549,7 +5248,7 @@ ENABLE_USER_SCRIPT_SANDBOXING = YES; GCC_C_LANGUAGE_STANDARD = gnu17; GENERATE_INFOPLIST_FILE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 17.2; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LOCALIZATION_PREFERS_STRING_CATALOGS = YES; MARKETING_VERSION = 1.0; MTL_FAST_MATH = YES; @@ -5581,7 +5280,7 @@ ENABLE_USER_SCRIPT_SANDBOXING = YES; GCC_C_LANGUAGE_STANDARD = gnu17; GENERATE_INFOPLIST_FILE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 17.2; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LOCALIZATION_PREFERS_STRING_CATALOGS = YES; MARKETING_VERSION = 1.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; @@ -5614,7 +5313,7 @@ ENABLE_USER_SCRIPT_SANDBOXING = YES; GCC_C_LANGUAGE_STANDARD = gnu17; GENERATE_INFOPLIST_FILE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 17.2; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LOCALIZATION_PREFERS_STRING_CATALOGS = YES; MARKETING_VERSION = 1.0; MTL_FAST_MATH = YES; @@ -5643,7 +5342,7 @@ DEVELOPMENT_TEAM = 6KYEQLUC5A; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = NativeMessageExample/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -5674,7 +5373,7 @@ DEVELOPMENT_TEAM = 6KYEQLUC5A; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = NativeMessageExample/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -5704,7 +5403,7 @@ DEVELOPMENT_TEAM = 6KYEQLUC5A; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = ConsentViewController_ExampleTests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -5739,7 +5438,7 @@ DEVELOPMENT_TEAM = 6KYEQLUC5A; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = ConsentViewController_ExampleTests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -5804,15 +5503,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6D110B8524D9E0A100A51BD9 /* Build configuration list for PBXNativeTarget "SourcePointMetaAppUITests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 6D110B8324D9E0A100A51BD9 /* Debug */, - 6D110B8424D9E0A100A51BD9 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 6D56EB8524C8850C009F33D9 /* Build configuration list for PBXNativeTarget "NativeMessageExampleUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/Example/ConsentViewController_ExampleTests/CCPAConsentStatusSpec.swift b/Example/ConsentViewController_ExampleTests/CCPAConsentStatusSpec.swift index 6fa0fb96f..51f983510 100644 --- a/Example/ConsentViewController_ExampleTests/CCPAConsentStatusSpec.swift +++ b/Example/ConsentViewController_ExampleTests/CCPAConsentStatusSpec.swift @@ -14,7 +14,7 @@ import Quick // swiftlint:disable colon force_unwrapping class CCPAConsentStatusSpec: QuickSpec { - override func spec() { + override class func spec() { let statusMapping: [String: CCPAConsentStatus] = [ "consentedAll" : .ConsentedAll, "rejectedAll" : .RejectedAll, diff --git a/Example/ConsentViewController_ExampleTests/GDPRMessageSpec.swift b/Example/ConsentViewController_ExampleTests/GDPRMessageSpec.swift index dbc8e226a..a714d5ccd 100644 --- a/Example/ConsentViewController_ExampleTests/GDPRMessageSpec.swift +++ b/Example/ConsentViewController_ExampleTests/GDPRMessageSpec.swift @@ -11,7 +11,7 @@ import Nimble import Quick class GDPRMessageSpec: QuickSpec { - override func spec() { + override class func spec() { describe("Test GDPRMessage") { var attributeStyle: SPNativeMessage.AttributeStyle! var messageAttribute: SPNativeMessage.Attribute! diff --git a/Example/ConsentViewController_ExampleTests/GenericWebMessageViewControllerSpec.swift b/Example/ConsentViewController_ExampleTests/GenericWebMessageViewControllerSpec.swift index c7dbfaede..90482bb30 100644 --- a/Example/ConsentViewController_ExampleTests/GenericWebMessageViewControllerSpec.swift +++ b/Example/ConsentViewController_ExampleTests/GenericWebMessageViewControllerSpec.swift @@ -51,7 +51,7 @@ class RenderingAppMock: WKWebView { } func triggerShowOptionsAction() { - self.evaluateJavaScript(""" + evaluateJavaScript(""" window.postMessage({ "name": "sp.hideMessage", "actions": [{ @@ -86,58 +86,58 @@ func loadMessage( } class GenericWebMessageViewControllerSpec: QuickSpec { - var delegate = MessageUIDelegateSpy() // swiftlint:disable:this weak_delegate + override class func spec() { + var delegate = MessageUIDelegateSpy() // swiftlint:disable:this weak_delegate - override func spec() { beforeEach { - self.delegate = MessageUIDelegateSpy() + delegate = MessageUIDelegateSpy() } it("calls loaded when the rendering app dispatches a sp.showMessage event") { - loadMessage(with: RenderingAppMock.self, delegate: self.delegate) + loadMessage(with: RenderingAppMock.self, delegate: delegate) after(.seconds(6)) { - expect(self.delegate.loadedWasCalled).to(beTrue()) - expect(self.delegate.onErrorWasCalled).to(beFalse()) + expect(delegate.loadedWasCalled).to(beTrue()) + expect(delegate.onErrorWasCalled).to(beFalse()) } } it("calls onError if .loaded() is not called on the delegate before the timeout") { - loadMessage(with: FaultyRenderingAppMock.self, delegate: self.delegate) + loadMessage(with: FaultyRenderingAppMock.self, delegate: delegate) after(.seconds(6)) { - expect(self.delegate.loadedWasCalled).to(beFalse()) - expect(self.delegate.onErrorWasCalled).to(beTrue()) + expect(delegate.loadedWasCalled).to(beFalse()) + expect(delegate.onErrorWasCalled).to(beTrue()) } } describe("when a show options action is dispatched") { describe("and the campaign is gdpr") { it("pmURL contains consentUUID") { - self.delegate.onLoaded = { controller in + delegate.onLoaded = { controller in ((controller as? GenericWebMessageViewController)?.webview as? RenderingAppMock)?.triggerShowOptionsAction() } loadMessage( with: RenderingAppMock.self, - delegate: self.delegate, + delegate: delegate, campaignType: .gdpr, uuid: "abc" ) - expect(self.delegate.actionCalledWith?.pmURL) + expect(delegate.actionCalledWith?.pmURL) .toEventually(containQueryParam("consentUUID", withValue: "abc")) } } describe("and the campaign is ccpa") { it("pmURL contains ccpaUUID") { - self.delegate.onLoaded = { controller in + delegate.onLoaded = { controller in ((controller as? GenericWebMessageViewController)?.webview as? RenderingAppMock)?.triggerShowOptionsAction() } loadMessage( with: RenderingAppMock.self, - delegate: self.delegate, + delegate: delegate, campaignType: .ccpa, uuid: "abc" ) - expect(self.delegate.actionCalledWith?.pmURL) + expect(delegate.actionCalledWith?.pmURL) .toEventually(containQueryParam("ccpaUUID", withValue: "abc")) } } diff --git a/Example/ConsentViewController_ExampleTests/Helpers/CustomMatchers.swift b/Example/ConsentViewController_ExampleTests/Helpers/CustomMatchers.swift index 2c3206ba3..dd89e63de 100644 --- a/Example/ConsentViewController_ExampleTests/Helpers/CustomMatchers.swift +++ b/Example/ConsentViewController_ExampleTests/Helpers/CustomMatchers.swift @@ -10,7 +10,7 @@ import Foundation import Nimble @testable import ConsentViewController -public typealias Predicate = Nimble.Predicate +public typealias Predicate = Nimble.Matcher extension URL { public var queryParams: [String: String]? { @@ -64,10 +64,10 @@ public func decodeTo(_ expected: T.Type) -> Predicate { Predicate { actual in guard let actual = try actual.evaluate(), let data = actual.data(using: .utf8) else { - return PredicateResult(bool: false, message: .fail("could not convert string into Data").appendedBeNilHint()) + return MatcherResult(bool: false, message: .fail("could not convert string into Data").appendedBeNilHint()) } let (pass, message) = assertDecode(expected, data) - return PredicateResult(bool: pass, message: .fail(message)) + return MatcherResult(bool: pass, message: .fail(message)) } } @@ -76,10 +76,10 @@ public func decodeToValue(_ expected: T) -> Predicate< Predicate { actual in guard let actual = try actual.evaluate(), let data = actual.data(using: .utf8) else { - return PredicateResult(bool: false, message: .fail("could not convert string into Data").appendedBeNilHint()) + return MatcherResult(bool: false, message: .fail("could not convert string into Data").appendedBeNilHint()) } let (pass, message) = assertDecodeToValue(expected, data) - return PredicateResult(bool: pass, message: .fail(message)) + return MatcherResult(bool: pass, message: .fail(message)) } } @@ -101,10 +101,10 @@ public func encodeToValue(_ expected: String) -> Predicate { Predicate { actual in guard let actual = try actual.evaluate(), let data = expected.data(using: .utf8) else { - return PredicateResult(bool: false, message: .fail("could not convert string into Data").appendedBeNilHint()) + return MatcherResult(bool: false, message: .fail("could not convert string into Data").appendedBeNilHint()) } let (pass, message) = assertEncodeToValue(actual, data) - return PredicateResult(bool: pass, message: .fail(message)) + return MatcherResult(bool: pass, message: .fail(message)) } } @@ -114,9 +114,9 @@ public func containQueryParam(_ expected: String) -> Predicate { guard let actual = try actual.evaluate(), let params = actual.queryParams else { - return PredicateResult(bool: false, message: .fail("could not get query params from URL")) + return MatcherResult(bool: false, message: .fail("could not get query params from URL")) } - return PredicateResult(bool: params.keys.contains(expected), message: .fail("\(actual) does not contain \(expected) query param.")) + return MatcherResult(bool: params.keys.contains(expected), message: .fail("\(actual) does not contain \(expected) query param.")) } } @@ -126,7 +126,7 @@ public func containQueryParam(_ name: String, withValue value: String) -> Predic guard let actual = try actual.evaluate(), let params = actual.queryParams else { - return PredicateResult(bool: false, message: .fail("could not get query params from URL(\((try? actual.evaluate()?.absoluteString) as Any))")) + return MatcherResult(bool: false, message: .fail("could not get query params from URL(\((try? actual.evaluate()?.absoluteString) as Any))")) } var pass = false var message = "" @@ -139,7 +139,7 @@ public func containQueryParam(_ name: String, withValue value: String) -> Predic } else { message = "Could not find query param with name \(name) in \(actual.absoluteString)" } - return PredicateResult(bool: pass, message: .fail(message)) + return MatcherResult(bool: pass, message: .fail(message)) } } @@ -149,7 +149,7 @@ public func containQueryParams(_ expectedParams: [String: String?]) -> Predicate guard let actual = try actual.evaluate(), let params = actual.queryParams else { - return PredicateResult(bool: false, message: .fail("could not get query params from URL(\((try? actual.evaluate()?.absoluteString) as Any))")) + return MatcherResult(bool: false, message: .fail("could not get query params from URL(\((try? actual.evaluate()?.absoluteString) as Any))")) } var pass = true var message = "" @@ -159,7 +159,7 @@ public func containQueryParams(_ expectedParams: [String: String?]) -> Predicate message += "Expected to contain param \(key) equal to \(String(describing: value)), but found \(params[key] ?? "")\n" } } - return PredicateResult(bool: pass, message: .fail(message)) + return MatcherResult(bool: pass, message: .fail(message)) } } @@ -167,19 +167,19 @@ public func containQueryParams(_ expectedParams: [String: String?]) -> Predicate public func equal(year: Int? = nil, month: Int? = nil, day: Int? = nil) -> Predicate { Predicate { actual in guard let actual = try actual.evaluate() else { - return PredicateResult(bool: false, message: .fail("...")) + return MatcherResult(bool: false, message: .fail("...")) } let date = Calendar.current.dateComponents([.day, .year, .month], from: actual.date) if let year = year, year != date.year { - return PredicateResult(bool: false, message: .fail("expected year: \(year), but got: \(String(describing: date.year))")) + return MatcherResult(bool: false, message: .fail("expected year: \(year), but got: \(String(describing: date.year))")) } if let month = month, month != date.month { - return PredicateResult(bool: false, message: .fail("expected month: \(month), but got: \(String(describing: date.month))")) + return MatcherResult(bool: false, message: .fail("expected month: \(month), but got: \(String(describing: date.month))")) } if let day = day, day != date.day { - return PredicateResult(bool: false, message: .fail("expected day: \(day), but got: \(String(describing: date.day))")) + return MatcherResult(bool: false, message: .fail("expected day: \(day), but got: \(String(describing: date.day))")) } - return PredicateResult(bool: true, message: .fail("")) + return MatcherResult(bool: true, message: .fail("")) } } diff --git a/Example/ConsentViewController_ExampleTests/LocalStorage/UserDefaultsExtensionSpec.swift b/Example/ConsentViewController_ExampleTests/LocalStorage/UserDefaultsExtensionSpec.swift index 9e5e2cfa9..a82b4850d 100644 --- a/Example/ConsentViewController_ExampleTests/LocalStorage/UserDefaultsExtensionSpec.swift +++ b/Example/ConsentViewController_ExampleTests/LocalStorage/UserDefaultsExtensionSpec.swift @@ -21,7 +21,7 @@ class CodableMock: Codable, Equatable { } class UserDefaultsExtension: QuickSpec { - override func spec() { + override class func spec() { describe("UserDefaults") { it("can store and retrieve Codable objects") { let original = CodableMock(42) diff --git a/Example/ConsentViewController_ExampleTests/SPActionSpec.swift b/Example/ConsentViewController_ExampleTests/SPActionSpec.swift index 3d5367f0a..606acf218 100644 --- a/Example/ConsentViewController_ExampleTests/SPActionSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPActionSpec.swift @@ -14,7 +14,7 @@ import Nimble import Quick class SPActionSpec: QuickSpec { - override func spec() { + override class func spec() { describe("SPAction") { it("publisherData is set to empty dictionary by default") { expect(SPAction(type: .AcceptAll).publisherData) == [:] diff --git a/Example/ConsentViewController_ExampleTests/SPCCPAConsentSpec.swift b/Example/ConsentViewController_ExampleTests/SPCCPAConsentSpec.swift index bcde816b4..871049ad0 100644 --- a/Example/ConsentViewController_ExampleTests/SPCCPAConsentSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPCCPAConsentSpec.swift @@ -12,7 +12,7 @@ import Nimble import Quick class SPCCPAConsentsSpec: QuickSpec { - override func spec() { + override class func spec() { describe("static empty()") { it("contain empty defaults for all its fields") { let consents = SPCCPAConsent.empty() diff --git a/Example/ConsentViewController_ExampleTests/SPCampaignEnvSpec.swift b/Example/ConsentViewController_ExampleTests/SPCampaignEnvSpec.swift index 0e75f1393..f6ded3345 100644 --- a/Example/ConsentViewController_ExampleTests/SPCampaignEnvSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPCampaignEnvSpec.swift @@ -14,7 +14,7 @@ import Quick // swiftlint:disable force_try class SPCampaignEnvSpec: QuickSpec { - override func spec() { + override class func spec() { describe("SPCampaignEnv") { describe("Stage") { it("has the raw value of 0") { diff --git a/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SPClientCoordinatorSpec.swift b/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SPClientCoordinatorSpec.swift index dd6206af8..3d480e1d3 100644 --- a/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SPClientCoordinatorSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SPClientCoordinatorSpec.swift @@ -14,7 +14,7 @@ import Quick // swiftlint:disable force_unwrapping force_try function_body_length file_length type_body_length cyclomatic_complexity class SPClientCoordinatorSpec: QuickSpec { - override func spec() { + override class func spec() { SPConsentManager.clearAllData() let accountId = 22, propertyId = 16893 @@ -40,13 +40,13 @@ class SPClientCoordinatorSpec: QuickSpec { } beforeSuite { - Nimble.AsyncDefaults.timeout = .seconds(5) - Nimble.AsyncDefaults.pollInterval = .milliseconds(100) + Nimble.PollingDefaults.timeout = .seconds(5) + Nimble.PollingDefaults.pollInterval = .milliseconds(100) } afterSuite { - Nimble.AsyncDefaults.timeout = .seconds(1) - Nimble.AsyncDefaults.pollInterval = .milliseconds(10) + Nimble.PollingDefaults.timeout = .seconds(1) + Nimble.PollingDefaults.pollInterval = .milliseconds(10) } describe("a property with USNat campaign") { diff --git a/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/CampaignSpec.swift b/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/CampaignSpec.swift index 54ee27f52..25295eac4 100644 --- a/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/CampaignSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/CampaignSpec.swift @@ -14,7 +14,7 @@ import Quick // swiftlint:disable force_try function_body_length force_unwrapping class CampaignSpec: QuickSpec { - override func spec() { + override class func spec() { it("ccpa campaign can be decoded into SPCCPAConsent") { let ccpaCampaign = """ { diff --git a/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/ConnectivityManagerSpec.swift b/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/ConnectivityManagerSpec.swift index af6cc33ba..dcc032558 100644 --- a/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/ConnectivityManagerSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/ConnectivityManagerSpec.swift @@ -11,7 +11,7 @@ import Nimble import Quick class ConnectivityManagerSpec: QuickSpec { - override func spec() { + override class func spec() { let connectivityManager = ConnectivityManager() describe("Test ConnectivityManager") { it("Test isConnectedToNetwork method") { diff --git a/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/MessageResponseSpec.swift b/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/MessageResponseSpec.swift index e2816139f..a01174f64 100644 --- a/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/MessageResponseSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/MessageResponseSpec.swift @@ -12,7 +12,7 @@ import Nimble import Quick class MessageResponseSpec: QuickSpec { - override func spec() { + override class func spec() { let messageResponse = """ { "message": { diff --git a/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/MessagesResponseSpec.swift b/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/MessagesResponseSpec.swift index 37db8a590..dfc60eeaf 100644 --- a/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/MessagesResponseSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/MessagesResponseSpec.swift @@ -13,7 +13,7 @@ import Quick // swiftlint:disable function_body_length class MessagesResponseSpec: QuickSpec { - override func spec() { + override class func spec() { let gdprCampaign = """ { "type": "GDPR", diff --git a/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/QueryParamEncodableSpec.swift b/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/QueryParamEncodableSpec.swift index 22b33d093..87c22fd3a 100644 --- a/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/QueryParamEncodableSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/QueryParamEncodableSpec.swift @@ -16,7 +16,7 @@ class QueryParamEncodableSpec: QuickSpec { let foo = "bar" } - override func spec() { + override class func spec() { it("should encode to a stringified json object") { let mockData = MockMetaData() expect(mockData.stringified) == "{\"foo\":\"bar\"}" diff --git a/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/SimpleClientSpec.swift b/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/SimpleClientSpec.swift index fa3b8f680..8deaa1744 100644 --- a/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/SimpleClientSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/SimpleClientSpec.swift @@ -50,10 +50,10 @@ class URLSessionMock: SPURLSession { } class SimpleClientSpec: QuickSpec { - // swiftlint:disable:next force_unwrapping - let exampleRequest = URLRequest(url: URL(string: "http://example.com")!) + override class func spec() { + // swiftlint:disable:next force_unwrapping + let exampleRequest = URLRequest(url: URL(string: "http://example.com")!) - override func spec() { describe("init(timeoutAfter: TimeInterval)") { it("sets the timeout in its URLSession") { let session = SimpleClient(timeoutAfter: 10.0).session as! URLSession @@ -69,8 +69,8 @@ class SimpleClientSpec: QuickSpec { logger: NoopLogger(), urlSession: session ) - client.request(self.exampleRequest, apiCode: .EMPTY) { _ in } - expect(session.dataTaskCalledWith) == self.exampleRequest + client.request(exampleRequest, apiCode: .EMPTY) { _ in } + expect(session.dataTaskCalledWith) == exampleRequest } it("calls resume on the result of the dataTask") { @@ -84,7 +84,7 @@ class SimpleClientSpec: QuickSpec { logger: NoopLogger(), urlSession: session ) - client.request(self.exampleRequest, apiCode: .EMPTY) { _ in } + client.request(exampleRequest, apiCode: .EMPTY) { _ in } expect(dataTaskResult.resumeWasCalled) == true } @@ -101,7 +101,7 @@ class SimpleClientSpec: QuickSpec { logger: NoopLogger(), urlSession: session ) - client.request(self.exampleRequest, apiCode: .EMPTY) { result = $0 } + client.request(exampleRequest, apiCode: .EMPTY) { result = $0 } expect(result).toEventuallyNot(beNil()) } } @@ -118,7 +118,7 @@ class SimpleClientSpec: QuickSpec { logger: NoopLogger(), urlSession: session ) - client.request(self.exampleRequest, apiCode: .EMPTY) { result in + client.request(exampleRequest, apiCode: .EMPTY) { result in switch result { case .success: fail("call should fail") @@ -137,7 +137,7 @@ class SimpleClientSpec: QuickSpec { logger: NoopLogger(), urlSession: URLSession.shared ) - client.request(self.exampleRequest, apiCode: .EMPTY) { result in + client.request(exampleRequest, apiCode: .EMPTY) { result in switch result { case .success: fail("call should fail") diff --git a/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/SourcePointClientSpec.swift b/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/SourcePointClientSpec.swift index dcacdadf7..f0c070e25 100644 --- a/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/SourcePointClientSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPClientCoordinator/SourcePointClient/SourcePointClientSpec.swift @@ -13,52 +13,42 @@ import Nimble import Quick class SourcePointClientSpec: QuickSpec { - let propertyId = 123 - let accountId = 1 - let propertyName = try! SPPropertyName("test") - let authID = "auth id" - var campaign: SPCampaign { SPCampaign(targetingParams: [:]) } - var campaigns: SPCampaigns { SPCampaigns(gdpr: campaign) } - var gdprProfile: SPConsent { SPConsent( - consents: SPGDPRConsent.empty(), - applies: true - )} - var profile: SPUserData { SPUserData(gdpr: gdprProfile) } - var wrapperHost: String { - Constants.prod ? "cdn.privacy-mgmt.com" : "preprod-cdn.privacy-mgmt.com" - } - - func getClient(_ client: MockHttp) -> SourcePointClient { SourcePointClient( - accountId: accountId, - propertyName: propertyName, - propertyId: propertyId, - campaignEnv: .Public, - client: client - )} + override class func spec() { + let propertyId = 123 + let accountId = 1 + let propertyName = try! SPPropertyName("test") + var campaign: SPCampaign { SPCampaign(targetingParams: [:]) } + var campaigns: SPCampaigns { SPCampaigns(gdpr: campaign) } + var gdprProfile: SPConsent { SPConsent( + consents: SPGDPRConsent.empty(), + applies: true + )} + var profile: SPUserData { SPUserData(gdpr: gdprProfile) } + var wrapperHost: String { + Constants.prod ? "cdn.privacy-mgmt.com" : "preprod-cdn.privacy-mgmt.com" + } - override func spec() { - var client: SourcePointClient! - var httpClient: MockHttp! - var mockedResponse: Data? + func getClient(_ client: MockHttp) -> SourcePointClient { SourcePointClient( + accountId: accountId, + propertyName: propertyName, + propertyId: propertyId, + campaignEnv: .Public, + client: client + )} beforeSuite { // changing AsyncDefaults make the test suite pass in CI due to slow CI environment - AsyncDefaults.timeout = .seconds(20) - AsyncDefaults.pollInterval = .milliseconds(100) + PollingDefaults.timeout = .seconds(20) + PollingDefaults.pollInterval = .milliseconds(100) } afterSuite { // changing AsyncDefaults back to defaults after suite is done - AsyncDefaults.timeout = .seconds(1) - AsyncDefaults.pollInterval = .milliseconds(10) + PollingDefaults.timeout = .seconds(1) + PollingDefaults.pollInterval = .milliseconds(10) } describe("SourcePointClient") { - beforeEach { - mockedResponse = "{\"url\": \"https://notice.sp-prod.net/?message_id=59706\"}".data(using: .utf8) - httpClient = MockHttp(success: mockedResponse) - client = self.getClient(httpClient) - } describe("parseResponse") { it("returns a failure Result if the result it receives is a failure") { diff --git a/Example/ConsentViewController_ExampleTests/SPConsentManagerSpec.swift b/Example/ConsentViewController_ExampleTests/SPConsentManagerSpec.swift index 9922bf477..f9590c39e 100644 --- a/Example/ConsentViewController_ExampleTests/SPConsentManagerSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPConsentManagerSpec.swift @@ -14,11 +14,11 @@ import Quick // swiftlint:disable force_try function_body_length line_length class SPConsentManagerSpec: QuickSpec { - var wrapperHost: String { - Constants.prod ? "cdn.privacy-mgmt.com" : "preprod-cdn.privacy-mgmt.com" - } + override class func spec() { + var wrapperHost: String { + Constants.prod ? "cdn.privacy-mgmt.com" : "preprod-cdn.privacy-mgmt.com" + } - override func spec() { let accountId = 22, propertyId = 16_893 let propertyName = try! SPPropertyName("mobile.multicampaign.demo") let campaigns = SPCampaigns( @@ -66,13 +66,13 @@ class SPConsentManagerSpec: QuickSpec { describe("gdpr") { it("build URL with the right parameters") { expect(manager.buildGDPRPmUrl(usedId: usedId, uuid: nil)?.absoluteString) - .to(equal("https://\(self.wrapperHost)/privacy-manager/index.html?consentLanguage=es&idfaStatus=\(idfaStatus)&message_id=1&pmTab=&site_id=\(propertyId)")) + .to(equal("https://\(wrapperHost)/privacy-manager/index.html?consentLanguage=es&idfaStatus=\(idfaStatus)&message_id=1&pmTab=&site_id=\(propertyId)")) } describe("when there's uuid") { it("includes the uuid query param") { expect(manager.buildGDPRPmUrl(usedId: usedId, uuid: "gdprUUID")?.absoluteString) - .to(equal("https://\(self.wrapperHost)/privacy-manager/index.html?consentLanguage=es&consentUUID=gdprUUID&idfaStatus=\(idfaStatus)&message_id=1&pmTab=&site_id=\(propertyId)")) + .to(equal("https://\(wrapperHost)/privacy-manager/index.html?consentLanguage=es&consentUUID=gdprUUID&idfaStatus=\(idfaStatus)&message_id=1&pmTab=&site_id=\(propertyId)")) } } } @@ -80,13 +80,13 @@ class SPConsentManagerSpec: QuickSpec { describe("ccpa") { it("build URL with the right parameters") { expect(manager.buildCCPAPmUrl(usedId: "1", uuid: nil)?.absoluteString) - .to(equal("https://\(self.wrapperHost)/ccpa_pm/index.html?consentLanguage=es&idfaStatus=\(idfaStatus)&message_id=1&pmTab=&site_id=\(propertyId)")) + .to(equal("https://\(wrapperHost)/ccpa_pm/index.html?consentLanguage=es&idfaStatus=\(idfaStatus)&message_id=1&pmTab=&site_id=\(propertyId)")) } describe("when there's uuid") { it("includes the uuid query param") { expect(manager.buildCCPAPmUrl(usedId: usedId, uuid: "ccpaUUID")?.absoluteString) - .to(equal("https://\(self.wrapperHost)/ccpa_pm/index.html?ccpaUUID=ccpaUUID&consentLanguage=es&idfaStatus=\(idfaStatus)&message_id=1&pmTab=&site_id=\(propertyId)")) + .to(equal("https://\(wrapperHost)/ccpa_pm/index.html?ccpaUUID=ccpaUUID&consentLanguage=es&idfaStatus=\(idfaStatus)&message_id=1&pmTab=&site_id=\(propertyId)")) } } } @@ -94,13 +94,13 @@ class SPConsentManagerSpec: QuickSpec { describe("usnat") { it("build URL with the right parameters") { expect(manager.buildUSNatPmUrl(usedId: "1", uuid: nil)?.absoluteString) - .to(equal("https://\(self.wrapperHost)/us_pm/index.html?consentLanguage=es&idfaStatus=\(idfaStatus)&message_id=1&pmTab=&site_id=\(propertyId)")) + .to(equal("https://\(wrapperHost)/us_pm/index.html?consentLanguage=es&idfaStatus=\(idfaStatus)&message_id=1&pmTab=&site_id=\(propertyId)")) } describe("when there's uuid") { it("includes the uuid query param") { expect(manager.buildUSNatPmUrl(usedId: usedId, uuid: "usnatUUID")?.absoluteString) - .to(equal("https://\(self.wrapperHost)/us_pm/index.html?consentLanguage=es&idfaStatus=\(idfaStatus)&message_id=1&pmTab=&site_id=\(propertyId)&uuid=usnatUUID")) + .to(equal("https://\(wrapperHost)/us_pm/index.html?consentLanguage=es&idfaStatus=\(idfaStatus)&message_id=1&pmTab=&site_id=\(propertyId)&uuid=usnatUUID")) } } } diff --git a/Example/ConsentViewController_ExampleTests/SPConsentSpec.swift b/Example/ConsentViewController_ExampleTests/SPConsentSpec.swift index c9cc04dd6..5b99134b9 100644 --- a/Example/ConsentViewController_ExampleTests/SPConsentSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPConsentSpec.swift @@ -13,53 +13,53 @@ import Nimble import Quick class SPConsentSpec: QuickSpec { - let ccpaConsents = """ - { - "applies": true, - "consents": { - "expirationDate": "2124-10-27T16:59:00.092Z", - "status": "rejectedNone", - "rejectedVendors": [], - "rejectedCategories": [], - "consentStatus": {}, - "signedLspa": false + override class func spec() { + let ccpaConsents = """ + { + "applies": true, + "consents": { + "expirationDate": "2124-10-27T16:59:00.092Z", + "status": "rejectedNone", + "rejectedVendors": [], + "rejectedCategories": [], + "consentStatus": {}, + "signedLspa": false + } } - } - """ + """ - let gdprConsents = """ - { - "applies": true, - "consents": { - "expirationDate": "2124-10-27T16:59:00.092Z", - "grants": {}, - "TCData": {}, - "euconsent": "", - "consentStatus": {} + let gdprConsents = """ + { + "applies": true, + "consents": { + "expirationDate": "2124-10-27T16:59:00.092Z", + "grants": {}, + "TCData": {}, + "euconsent": "", + "consentStatus": {} + } } - } - """ + """ - let usNatConsents = """ - { - "applies": false, - "consents": { + let usNatConsents = """ + { "applies": false, - "dateCreated": "2124-10-27T16:59:00.092Z", - "expirationDate": "2124-10-27T16:59:00.092Z", - "consentStrings": [], - "categories": [], - "consentStatus": {}, - "GPPData": {} + "consents": { + "applies": false, + "dateCreated": "2124-10-27T16:59:00.092Z", + "expirationDate": "2124-10-27T16:59:00.092Z", + "consentStrings": [], + "categories": [], + "consentStatus": {}, + "GPPData": {} + } } - } - """ + """ - override func spec() { describe("SPConsent") { describe("GDPR") { it("can be decode from JSON") { - expect(self.gdprConsents).to(decodeToValue( + expect(gdprConsents).to(decodeToValue( SPConsent(consents: .empty(), applies: true) )) } @@ -67,7 +67,7 @@ class SPConsentSpec: QuickSpec { describe("CCPA") { it("can be decode from JSON") { - expect(self.ccpaConsents).to(decodeToValue( + expect(ccpaConsents).to(decodeToValue( SPConsent(consents: .empty(), applies: true) )) } @@ -75,7 +75,7 @@ class SPConsentSpec: QuickSpec { describe("USNat") { it("can be decode from JSON") { - expect(self.usNatConsents).to(decodeToValue( + expect(usNatConsents).to(decodeToValue( SPConsent(consents: .empty(), applies: false) )) } diff --git a/Example/ConsentViewController_ExampleTests/SPDateCreatedSpec.swift b/Example/ConsentViewController_ExampleTests/SPDateCreatedSpec.swift index a11dd5cd1..706c1e4bf 100644 --- a/Example/ConsentViewController_ExampleTests/SPDateCreatedSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPDateCreatedSpec.swift @@ -15,7 +15,7 @@ import Quick // swiftlint:disable force_try force_unwrapping class SPDateSpec: QuickSpec { - override func spec() { + override class func spec() { func dateFromString(_ date: String) -> Date? { let formatter = DateFormatter() formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'" diff --git a/Example/ConsentViewController_ExampleTests/SPDeviceSpec.swift b/Example/ConsentViewController_ExampleTests/SPDeviceSpec.swift index 1409e12c8..b8513f9cc 100644 --- a/Example/ConsentViewController_ExampleTests/SPDeviceSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPDeviceSpec.swift @@ -12,7 +12,7 @@ import Nimble import Quick class SPDeviceSpec: QuickSpec { - override func spec() { + override class func spec() { describe("osVersion") { it("should contain the major version in its return") { let version = SPDevice.standard.osVersion @@ -20,22 +20,6 @@ class SPDeviceSpec: QuickSpec { expect(version).to(contain("26.")) } else if #available(iOS 18, *) { expect(version).to(contain("18.")) - } else if #available(iOS 17, *) { - expect(version).to(contain("17.")) - } else if #available(iOS 16, *) { - expect(version).to(contain("16.")) - } else if #available(iOS 15, *) { - expect(version).to(contain("15.")) - } else if #available(iOS 14, *) { - expect(version).to(contain("14.")) - } else if #available(iOS 13, *) { - expect(version).to(contain("13.")) - } else if #available(iOS 12, *) { - expect(version).to(contain("12.")) - } else if #available(iOS 11, *) { - expect(version).to(contain("11.")) - } else if #available(iOS 10, *) { - expect(version).to(contain("10.")) } else { expect(version) == "apple-unknown" } diff --git a/Example/ConsentViewController_ExampleTests/SPErrorSpec.swift b/Example/ConsentViewController_ExampleTests/SPErrorSpec.swift index 31535c860..963f7ff2d 100644 --- a/Example/ConsentViewController_ExampleTests/SPErrorSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPErrorSpec.swift @@ -21,7 +21,7 @@ func aResponseWith(status: Int) -> HTTPURLResponse { // swiftlint:disable function_body_length class SPErrorSpec: QuickSpec { - override func spec() { + override class func spec() { describe("SPErrorSpec") { describe("NoInternetConnection") { it("has spCode: no_internet_connection") { diff --git a/Example/ConsentViewController_ExampleTests/SPGCMDataSpec.swift b/Example/ConsentViewController_ExampleTests/SPGCMDataSpec.swift index c48a821bf..5621095a8 100644 --- a/Example/ConsentViewController_ExampleTests/SPGCMDataSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPGCMDataSpec.swift @@ -13,7 +13,7 @@ import Quick class SPGCMDataSpec: QuickSpec { - override func spec() { + override class func spec() { it("is codable") { let rawGcm = Result { """ { @@ -32,7 +32,7 @@ class SPGCMDataSpec: QuickSpec { } class SPGCMDataStatusSpec: QuickSpec { - override func spec() { + override class func spec() { it("is codable") { let rawStatus = Result { "\"granted\"".data(using: .utf8) } do { diff --git a/Example/ConsentViewController_ExampleTests/SPGDPRConsentsSpec.swift b/Example/ConsentViewController_ExampleTests/SPGDPRConsentsSpec.swift index 6d406cc96..93f002875 100644 --- a/Example/ConsentViewController_ExampleTests/SPGDPRConsentsSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPGDPRConsentsSpec.swift @@ -12,7 +12,7 @@ import Nimble import Quick class SPGDPRConsentsSpec: QuickSpec { - override func spec() { + override class func spec() { describe("static empty()") { it("contain empty defaults for all its fields") { let consents = SPGDPRConsent.empty() diff --git a/Example/ConsentViewController_ExampleTests/SPJsonSpec.swift b/Example/ConsentViewController_ExampleTests/SPJsonSpec.swift index d893b7f70..1510c5a3a 100644 --- a/Example/ConsentViewController_ExampleTests/SPJsonSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPJsonSpec.swift @@ -14,28 +14,28 @@ import Nimble import Quick class SPJsonSpec: QuickSpec { - let jsonSample = """ - { - "arr": [1, "2", null], - "bool": true, - "double": 1.01, - "fake int": "1", - "int": 1, - "null": null, - "obj": { - "foo": "bar" - }, - "string": "hello there" - } - """ - var json: Any { - try! JSONSerialization.jsonObject(with: jsonSample.data(using: .utf8)!) // swiftlint:disable:this force_unwrapping - } + override class func spec() { + let jsonSample = """ + { + "arr": [1, "2", null], + "bool": true, + "double": 1.01, + "fake int": "1", + "int": 1, + "null": null, + "obj": { + "foo": "bar" + }, + "string": "hello there" + } + """ + var json: Any { + try! JSONSerialization.jsonObject(with: jsonSample.data(using: .utf8)!) // swiftlint:disable:this force_unwrapping + } - override func spec() { describe("SPJson") { it("parses all primitive types of data") { - let spJson = try! SPJson(self.json) + let spJson = try! SPJson(json) expect(spJson["string"]?.stringValue) == "hello there" expect(spJson["fake int"]?.stringValue) == "1" expect(spJson["double"]?.doubleValue) == 1.01 @@ -48,7 +48,7 @@ class SPJsonSpec: QuickSpec { } it("can be encoded to and decoded to JSON") { - let spJson = try! SPJson(self.json) + let spJson = try! SPJson(json) let encoded = try! JSONEncoder().encodeResult(spJson).get() let decoded = try! JSONDecoder().decode(SPJson.self, from: encoded).get() expect(decoded["string"]?.stringValue) == "hello there" diff --git a/Example/ConsentViewController_ExampleTests/SPMessageLanguageSpec.swift b/Example/ConsentViewController_ExampleTests/SPMessageLanguageSpec.swift index a2280aa5f..b00902a3f 100644 --- a/Example/ConsentViewController_ExampleTests/SPMessageLanguageSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPMessageLanguageSpec.swift @@ -13,7 +13,7 @@ import Nimble import Quick class SPMessageLanguageSpec: QuickSpec { - override func spec() { + override class func spec() { describe("SPMessageLanguage") { context("BrowserDefault") { it("has the raw value language code empty") { diff --git a/Example/ConsentViewController_ExampleTests/SPPrivacyManagerTabSpec.swift b/Example/ConsentViewController_ExampleTests/SPPrivacyManagerTabSpec.swift index 30f26fbef..371550e24 100644 --- a/Example/ConsentViewController_ExampleTests/SPPrivacyManagerTabSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPPrivacyManagerTabSpec.swift @@ -12,7 +12,7 @@ import Nimble import Quick class SPPrivacyManagerTabSpec: QuickSpec { - override func spec() { + override class func spec() { describe("SPPrivacyManagerTab") { context("Default") { it("has the empty raw value") { diff --git a/Example/ConsentViewController_ExampleTests/SPPropertyNameSpec.swift b/Example/ConsentViewController_ExampleTests/SPPropertyNameSpec.swift index 97ec04465..eb67ec0c8 100644 --- a/Example/ConsentViewController_ExampleTests/SPPropertyNameSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPPropertyNameSpec.swift @@ -14,7 +14,7 @@ import Quick // swiftlint:disable force_try class SPPropertyNameSpec: QuickSpec { - override func spec() { + override class func spec() { it("http:// in property are not affected") { let property = "http://any" let spProperty = try! SPPropertyName(property) diff --git a/Example/ConsentViewController_ExampleTests/SPPublisherDataSpec.swift b/Example/ConsentViewController_ExampleTests/SPPublisherDataSpec.swift index beedf757b..d0062c92d 100644 --- a/Example/ConsentViewController_ExampleTests/SPPublisherDataSpec.swift +++ b/Example/ConsentViewController_ExampleTests/SPPublisherDataSpec.swift @@ -16,7 +16,7 @@ class SPPublisherDataSpec: QuickSpec { let custom = "value" } - override func spec() { + override class func spec() { it("supports any encodable data") { let pubData: SPPublisherData = [ "string": .init("stringValue"), diff --git a/Example/NativeMessageExampleUITests/Helpers/CustomMatchers.swift b/Example/NativeMessageExampleUITests/Helpers/CustomMatchers.swift index 4198403b6..8a66b0436 100644 --- a/Example/NativeMessageExampleUITests/Helpers/CustomMatchers.swift +++ b/Example/NativeMessageExampleUITests/Helpers/CustomMatchers.swift @@ -10,64 +10,39 @@ import Nimble import Quick import XCTest -extension DispatchTimeInterval { - func toDouble() -> Double? { - var result: Double? = 0 - switch self { - case .seconds(let value): - result = Double(value) - - case .milliseconds(let value): - result = Double(value) * 0.001 - - case .microseconds(let value): - result = Double(value) * 0.000_001 - - case .nanoseconds(let value): - result = Double(value) * 0.000_000_001 - - case .never: - result = nil - @unknown default: - result = nil - } - return result - } -} - /// A matcher that checks if a `XCUIElement` contains the given text -public func containText(_ text: String) -> Predicate { - Predicate.simple("contain text") { actualExpression in +public func containText(_ text: String) -> Matcher { + Matcher.simple("contain text") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.label.contains(text)) + return MatcherStatus(bool: actual.label.contains(text)) } } /// A Nimble matcher that succeeds when an XCUIElement shows up after /// a certain amount of time. 20 seconds by default -public func showUp() -> Predicate { - Predicate.simple("show up") { actualExpression in +public func showUp() -> Matcher { + Matcher.simple("show up") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.waitForExistence(timeout: Nimble.AsyncDefaults.timeout.toDouble() ?? 20.0)) + return MatcherStatus(bool: actual.waitForExistence(timeout: Nimble.PollingDefaults.timeout.timeInterval)) } } /// A Nimble matcher that succeeds when an XCUIElement shows up after /// a certain amount of time. -public func showUp(in timeout: TimeInterval) -> Predicate { - Predicate.simple("show up") { actualExpression in +public func showUp(in timeout: TimeInterval) -> Matcher { + Matcher.simple("show up") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.waitForExistence(timeout: timeout)) + return MatcherStatus(bool: actual.waitForExistence(timeout: timeout)) } } /// A Nimble matcher that succeeds when an XCUIElement no longer exists. Due to its async nature, it should /// be used together with `.toEventually`. -public func disappear() -> Predicate { - Predicate.simple("disappear") { actualExpression in +public func disappear() -> Matcher { + Matcher.simple("disappear") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } QuickSpec.current.expectation(for: NSPredicate(format: "exists == FALSE"), evaluatedWith: actual, handler: nil) - QuickSpec.current.waitForExpectations(timeout: Double(Nimble.AsyncDefaults.timeout.toDouble() ?? 20.0)) - return PredicateStatus(bool: !actual.exists) + QuickSpec.current.waitForExpectations(timeout: Nimble.PollingDefaults.timeout.timeInterval) + return MatcherStatus(bool: !actual.exists) } } diff --git a/Example/NativeMessageExampleUITests/NativeMessageExampleUITests.swift b/Example/NativeMessageExampleUITests/NativeMessageExampleUITests.swift index 12601a0e6..8e9ebe11e 100644 --- a/Example/NativeMessageExampleUITests/NativeMessageExampleUITests.swift +++ b/Example/NativeMessageExampleUITests/NativeMessageExampleUITests.swift @@ -12,89 +12,85 @@ import Quick import XCTest class NativeMessageExampleUITests: QuickSpec { - var app: NativeExampleApp! - - func acceptAtt() { - expect(self.app.attPrePrompt.okButton).toEventually(showUp()) - app.attPrePrompt.okButton.tap() - expect(self.app.attPrePrompt.attAlertAllowButton).toEventually(showUp()) - app.attPrePrompt.attAlertAllowButton.tap() - } + override class func spec() { + var app: NativeExampleApp! + + func acceptAtt() { + expect(app.attPrePrompt.okButton).toEventually(showUp()) + app.attPrePrompt.okButton.tap() + expect(app.attPrePrompt.attAlertAllowButton).toEventually(showUp()) + app.attPrePrompt.attAlertAllowButton.tap() + } - func acceptGDPRMessage() { - expect(self.app.gdprMessage.messageTitle).toEventually(showUp()) - self.app.gdprMessage.acceptButton.tap() - } + func acceptGDPRMessage() { + expect(app.gdprMessage.messageTitle).toEventually(showUp()) + app.gdprMessage.acceptButton.tap() + } - func acceptCCPAMessage() { - expect(self.app.ccpaMessage.messageTitle).toEventually(showUp()) - self.app.ccpaMessage.acceptButton.tap() - } + func acceptCCPAMessage() { + expect(app.ccpaMessage.messageTitle).toEventually(showUp()) + app.ccpaMessage.acceptButton.tap() + } - func showGDPRPMViaFirstLayerMessage() { - expect(self.app.gdprMessage.messageTitle).toEventually(showUp()) - self.app.gdprMessage.showOptionsButton.tap() - expect(self.app.gdprPM.messageTitle).toEventually(showUp()) - } + func showGDPRPMViaFirstLayerMessage() { + expect(app.gdprMessage.messageTitle).toEventually(showUp()) + app.gdprMessage.showOptionsButton.tap() + expect(app.gdprPM.messageTitle).toEventually(showUp()) + } - func showCCPAPMViaFirstLayerMessage() { - expect(self.app.ccpaMessage.messageTitle).toEventually(showUp()) - self.app.ccpaMessage.showOptionsButton.tap() - expect(self.app.ccpaPM.messageTitle).toEventually(showUp()) - } + func showCCPAPMViaFirstLayerMessage() { + expect(app.ccpaMessage.messageTitle).toEventually(showUp()) + app.ccpaMessage.showOptionsButton.tap() + expect(app.ccpaPM.messageTitle).toEventually(showUp()) + } - // We are unable to reset ATT permissions on iOS < 15 so we need to make sure - // the ATT expectations run only once per test suite. - func runAttScenario() { - if #available(iOS 15.0, *) { - acceptAtt() - } else if app.shouldRunAttScenario { - if #available(iOS 14, *) { + // We are unable to reset ATT permissions on iOS < 15 so we need to make sure + // the ATT expectations run only once per test suite. + func runAttScenario() { + if app.shouldRunAttScenario { acceptAtt() } } - } - override func spec() { beforeSuite { - self.app = NativeExampleApp() - Nimble.AsyncDefaults.timeout = .seconds(20) - Nimble.AsyncDefaults.pollInterval = .milliseconds(100) + app = NativeExampleApp() + Nimble.PollingDefaults.timeout = .seconds(20) + Nimble.PollingDefaults.pollInterval = .milliseconds(100) } afterSuite { - Nimble.AsyncDefaults.timeout = .seconds(1) - Nimble.AsyncDefaults.pollInterval = .milliseconds(10) + Nimble.PollingDefaults.timeout = .seconds(1) + Nimble.PollingDefaults.pollInterval = .milliseconds(10) } beforeEach { - self.app.relaunch(clean: true, resetAtt: true) + app.relaunch(clean: true, resetAtt: true) } it("Accept all through 1st layer messages") { - self.runAttScenario() + runAttScenario() // assert the PM's cancel button navigates the user back to the 1st layer - self.showGDPRPMViaFirstLayerMessage() - self.app.gdprPM.cancelButton.tap() - self.acceptGDPRMessage() + showGDPRPMViaFirstLayerMessage() + app.gdprPM.cancelButton.tap() + acceptGDPRMessage() - self.acceptCCPAMessage() - expect(self.app.sdkStatusLabel).toEventually(containText("Finished")) + acceptCCPAMessage() + expect(app.sdkStatusLabel).toEventually(containText("Finished")) - self.app.relaunch() - expect(self.app.sdkStatusLabel).toEventually(containText("Finished")) + app.relaunch() + expect(app.sdkStatusLabel).toEventually(containText("Finished")) } it("Accept all through 2nd layer") { - self.runAttScenario() - self.showGDPRPMViaFirstLayerMessage() - self.app.gdprPM.acceptAllButton.tap() - self.showCCPAPMViaFirstLayerMessage() - self.app.ccpaPM.acceptAllButton.tap() - expect(self.app.sdkStatusLabel).toEventually(containText("Finished")) - self.app.relaunch() - expect(self.app.sdkStatusLabel).toEventually(containText("Finished")) + runAttScenario() + showGDPRPMViaFirstLayerMessage() + app.gdprPM.acceptAllButton.tap() + showCCPAPMViaFirstLayerMessage() + app.ccpaPM.acceptAllButton.tap() + expect(app.sdkStatusLabel).toEventually(containText("Finished")) + app.relaunch() + expect(app.sdkStatusLabel).toEventually(containText("Finished")) } } } diff --git a/Example/ObjC-ExampleAppUITests/CustomMatchers.swift b/Example/ObjC-ExampleAppUITests/CustomMatchers.swift index e8e84f00e..3fd2b8f95 100644 --- a/Example/ObjC-ExampleAppUITests/CustomMatchers.swift +++ b/Example/ObjC-ExampleAppUITests/CustomMatchers.swift @@ -10,41 +10,39 @@ import Nimble import Quick import XCTest -public typealias Predicate = Nimble.Predicate - /// A matcher that checks if a `XCUIElement` contains the given text -public func containText(_ text: String) -> Predicate { - Predicate.simple("contain text") { actualExpression in +public func containText(_ text: String) -> Matcher { + Matcher.simple("contain text") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.label.contains(text)) + return MatcherStatus(bool: actual.label.contains(text)) } } /// A Nimble matcher that succeeds when an XCUIElement shows up after /// a certain amount of time. 20 seconds by default -public func showUp() -> Predicate { - Predicate.simple("show up") { actualExpression in +public func showUp() -> Matcher { + Matcher.simple("show up") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.waitForExistence(timeout: 25)) + return MatcherStatus(bool: actual.waitForExistence(timeout: 25)) } } /// A Nimble matcher that succeeds when an XCUIElement shows up after /// a certain amount of time. -public func showUp(in timeout: TimeInterval) -> Predicate { - Predicate.simple("show up") { actualExpression in +public func showUp(in timeout: TimeInterval) -> Matcher { + Matcher.simple("show up") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.waitForExistence(timeout: timeout)) + return MatcherStatus(bool: actual.waitForExistence(timeout: timeout)) } } /// A Nimble matcher that succeeds when an XCUIElement no longer exists. Due to its async nature, it should /// be used together with `.toEventually`. -public func disappear() -> Predicate { - Predicate.simple("disappear") { actualExpression in +public func disappear() -> Matcher { + Matcher.simple("disappear") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } QuickSpec.current.expectation(for: NSPredicate(format: "exists == FALSE"), evaluatedWith: actual, handler: nil) QuickSpec.current.waitForExpectations(timeout: 20) - return PredicateStatus(bool: !actual.exists) + return MatcherStatus(bool: !actual.exists) } } diff --git a/Example/ObjC-ExampleAppUITests/ObjC_ExampleAppUITests.swift b/Example/ObjC-ExampleAppUITests/ObjC_ExampleAppUITests.swift index 4295db72e..9e69ff241 100644 --- a/Example/ObjC-ExampleAppUITests/ObjC_ExampleAppUITests.swift +++ b/Example/ObjC-ExampleAppUITests/ObjC_ExampleAppUITests.swift @@ -12,62 +12,57 @@ import Quick import XCTest class ObjCExampleAppUITests: QuickSpec { - var app: ExampleApp! + static var app: ExampleApp! - override func spec() { + override class func spec() { beforeSuite { - self.continueAfterFailure = false - self.app = ExampleApp() - Nimble.AsyncDefaults.timeout = .seconds(30) - Nimble.AsyncDefaults.pollInterval = .milliseconds(100) + app = ExampleApp() + Nimble.PollingDefaults.timeout = .seconds(30) + Nimble.PollingDefaults.pollInterval = .milliseconds(100) } afterSuite { - Nimble.AsyncDefaults.timeout = .seconds(1) - Nimble.AsyncDefaults.pollInterval = .milliseconds(10) + Nimble.PollingDefaults.timeout = .seconds(1) + Nimble.PollingDefaults.pollInterval = .milliseconds(10) } beforeEach { - self.app.relaunch(clean: true, resetAtt: true) + app.relaunch(clean: true, resetAtt: true) } func acceptAtt() { - expect(self.app.attPrePrompt.okButton).toEventually(showUp()) + expect(app.attPrePrompt.okButton).toEventually(showUp()) app.attPrePrompt.okButton.tap() - expect(self.app.attPrePrompt.attAlertAllowButton).toEventually(showUp()) + expect(app.attPrePrompt.attAlertAllowButton).toEventually(showUp()) app.attPrePrompt.attAlertAllowButton.tap() } // We are unable to reset ATT permissions on iOS < 15 so we need to make sure // the ATT expectations run only once per test suite. func runAttScenario() { - if #available(iOS 15.0, *) { + if app.shouldRunAttScenario { acceptAtt() - } else if app.shouldRunAttScenario { - if #available(iOS 14, *) { - acceptAtt() - } } } it("Accept all through message") { runAttScenario() - expect(self.app.gdprMessage).toEventually(showUp()) - self.app.acceptAllButton.tap() - expect(self.app.gdprMessage).to(disappear()) + expect(app.gdprMessage).toEventually(showUp()) + app.acceptAllButton.tap() + expect(app.gdprMessage).to(disappear()) - expect(self.app.usnatMessage).toEventually(showUp()) - self.app.acceptAllButton.tap() - expect(self.app.usnatMessage).to(disappear()) + expect(app.usnatMessage).toEventually(showUp()) + app.acceptAllButton.tap() + expect(app.usnatMessage).to(disappear()) - expect(self.app.preferencesMessage).toEventually(showUp()) - self.app.acceptAllButton.tap() - expect(self.app.preferencesMessage).to(disappear()) + expect(app.preferencesMessage).toEventually(showUp()) + app.acceptAllButton.tap() + expect(app.preferencesMessage).to(disappear()) - expect(self.app.sdkStatus).toEventually(containText("Finished")) + expect(app.sdkStatus).toEventually(containText("Finished")) - self.app.relaunch() - expect(self.app.sdkStatus).toEventually(containText("Finished")) + app.relaunch() + expect(app.sdkStatus).toEventually(containText("Finished")) } } } diff --git a/Example/Podfile b/Example/Podfile index 8a3012f83..228616c74 100644 --- a/Example/Podfile +++ b/Example/Podfile @@ -1,5 +1,5 @@ use_frameworks! :linkage => :static -platform :ios, '13.0' +platform :ios, '18.0' install! 'cocoapods', :share_schemes_for_development_pods => true pod 'ConsentViewController', :path => '../' @@ -21,13 +21,9 @@ abstract_target 'Examples' do end target 'TVOSExampleApp' do - platform :tvos, '12.0' + platform :tvos, '18.0' pod 'ConsentViewController', :path => '../' end - - target 'SourcePointMetaApp' do - pod 'IQKeyboardManagerSwift' - end end abstract_target 'Tests' do @@ -38,11 +34,10 @@ abstract_target 'Tests' do target 'SPGDPRExampleAppUITests' target 'NativeMessageExampleUITests' target 'AuthExampleUITests' - target 'SourcePointMetaAppUITests' target 'ObjC-ExampleAppUITests' target 'TVOSExampleAppUITests' do - platform :tvos, '12.0' + platform :tvos, '18.0' pod 'ConsentViewController', :path => '../' pod 'Quick', '7.6.2' pod 'Nimble', '13.7.0' diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 869d47eae..a4b833829 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -86,46 +86,6 @@ PODS: - GoogleUtilities/UserDefaults (8.1.0): - GoogleUtilities/Logger - GoogleUtilities/Privacy - - IQKeyboardCore (1.0.5) - - IQKeyboardManagerSwift (8.0.1): - - IQKeyboardManagerSwift/Appearance (= 8.0.1) - - IQKeyboardManagerSwift/Core (= 8.0.1) - - IQKeyboardManagerSwift/IQKeyboardReturnManager (= 8.0.1) - - IQKeyboardManagerSwift/IQKeyboardToolbarManager (= 8.0.1) - - IQKeyboardManagerSwift/IQTextView (= 8.0.1) - - IQKeyboardManagerSwift/Resign (= 8.0.1) - - IQKeyboardManagerSwift/Appearance (8.0.1): - - IQKeyboardManagerSwift/Core - - IQKeyboardManagerSwift/Core (8.0.1): - - IQKeyboardNotification - - IQTextInputViewNotification - - IQKeyboardManagerSwift/IQKeyboardReturnManager (8.0.1): - - IQKeyboardReturnManager - - IQKeyboardManagerSwift/IQKeyboardToolbarManager (8.0.1): - - IQKeyboardManagerSwift/Core - - IQKeyboardToolbarManager - - IQKeyboardManagerSwift/IQTextView (8.0.1): - - IQTextView - - IQKeyboardManagerSwift/Resign (8.0.1): - - IQKeyboardManagerSwift/Core - - IQKeyboardNotification (1.0.3) - - IQKeyboardReturnManager (1.0.4): - - IQKeyboardCore (= 1.0.5) - - IQKeyboardToolbar (1.1.1): - - IQKeyboardCore - - IQKeyboardToolbar/Core (= 1.1.1) - - IQKeyboardToolbar/Core (1.1.1): - - IQKeyboardCore - - IQKeyboardToolbar/Placeholderable - - IQKeyboardToolbar/Placeholderable (1.1.1): - - IQKeyboardCore - - IQKeyboardToolbarManager (1.1.3): - - IQKeyboardToolbar - - IQTextInputViewNotification - - IQTextInputViewNotification (1.0.8): - - IQKeyboardCore - - IQTextView (1.0.5): - - IQKeyboardToolbar/Placeholderable - JSONView (0.0.3) - nanopb (3.30910.0): - nanopb/decode (= 3.30910.0) @@ -143,7 +103,6 @@ PODS: DEPENDENCIES: - ConsentViewController (from `../`) - FirebaseAnalytics - - IQKeyboardManagerSwift - JSONView - Nimble (= 13.7.0) - Quick (= 7.6.2) @@ -163,14 +122,6 @@ SPEC REPOS: - FirebaseInstallations - GoogleAppMeasurement - GoogleUtilities - - IQKeyboardCore - - IQKeyboardManagerSwift - - IQKeyboardNotification - - IQKeyboardReturnManager - - IQKeyboardToolbar - - IQKeyboardToolbarManager - - IQTextInputViewNotification - - IQTextView - JSONView - nanopb - Nimble @@ -185,7 +136,7 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - ConsentViewController: 902ee261f3416c50a915dadf2f28ecaca00e9546 + ConsentViewController: fac768766d0044b142f1affd2c94d741bc564394 CwlCatchException: 7acc161b299a6de7f0a46a6ed741eae2c8b4d75a CwlCatchExceptionSupport: 54ccab8d8c78907b57f99717fb19d4cc3bce02dc CwlMachBadInstructionHandler: dae4fdd124d45c9910ac240287cc7b898f4502a1 @@ -197,14 +148,6 @@ SPEC CHECKSUMS: FirebaseInstallations: 0ee9074f2c1e86561ace168ee1470dc67aabaf02 GoogleAppMeasurement: 0dfca1a4b534d123de3945e28f77869d10d0d600 GoogleUtilities: 00c88b9a86066ef77f0da2fab05f65d7768ed8e1 - IQKeyboardCore: 28c8bf3bcd8ba5aa1570b318cbc4da94b861711e - IQKeyboardManagerSwift: 835fc9c6e4732398113406d84900ad2e8f141218 - IQKeyboardNotification: d7382c4466c5a5adef92c7452ebf861b36050088 - IQKeyboardReturnManager: 972be48528ce9e7508ab3ab15ac7efac803f17f5 - IQKeyboardToolbar: d4bdccfb78324aec2f3920659c77bb89acd33312 - IQKeyboardToolbarManager: 6c693c8478d6327a7ef2107528d29698b3514dbb - IQTextInputViewNotification: f5e954d8881fd9808b744e49e024cc0d4bcfe572 - IQTextView: ae13b4922f22e6f027f62c557d9f4f236b19d5c7 JSONView: ba9049102fae7ad70de40234d0b7c60986e61e4c nanopb: fad817b59e0457d11a5dfbde799381cd727c1275 Nimble: 0d202a1be6a346929560c212341240339875b6f0 @@ -214,6 +157,6 @@ SPEC CHECKSUMS: SwiftLint: 3d48e2fb2a3468fdaccf049e5e755df22fb40c2c Wormholy: ab1c8c2f02f58587a0941deb0088555ffbf039a1 -PODFILE CHECKSUM: 6af712623e87f48887fdfc1a2ee251a83706b428 +PODFILE CHECKSUM: 94b917154571d7057186d448c1cfdb80061ca3cd COCOAPODS: 1.16.2 diff --git a/Example/Pods/IQKeyboardCore/IQKeyboardCore/Assets/PrivacyInfo.xcprivacy b/Example/Pods/IQKeyboardCore/IQKeyboardCore/Assets/PrivacyInfo.xcprivacy deleted file mode 100644 index 90211906c..000000000 --- a/Example/Pods/IQKeyboardCore/IQKeyboardCore/Assets/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,14 +0,0 @@ - - - - - NSPrivacyAccessedAPITypes - - NSPrivacyTrackingDomains - - NSPrivacyCollectedDataTypes - - NSPrivacyTracking - - - diff --git a/Example/Pods/IQKeyboardCore/IQKeyboardCore/Classes/Constants/IQKeyboardConstants.swift b/Example/Pods/IQKeyboardCore/IQKeyboardCore/Classes/Constants/IQKeyboardConstants.swift deleted file mode 100644 index a4e8fe634..000000000 --- a/Example/Pods/IQKeyboardCore/IQKeyboardCore/Classes/Constants/IQKeyboardConstants.swift +++ /dev/null @@ -1,41 +0,0 @@ -// -// IQKeyboardConstants.swift -// https://github.com/hackiftekhar/IQKeyboardCore -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import Foundation - -/** - `IQEnableModeDefault` - Pick default settings. - - `IQEnableModeEnabled` - setting is enabled. - - `IQEnableModeDisabled` - setting is disabled. - */ -@available(iOSApplicationExtension, unavailable) -@objc public enum IQEnableMode: Int { - case `default` - case enabled - case disabled -} diff --git a/Example/Pods/IQKeyboardCore/IQKeyboardCore/Classes/IQKeyboardExtended.swift b/Example/Pods/IQKeyboardCore/IQKeyboardCore/Classes/IQKeyboardExtended.swift deleted file mode 100644 index 24b15d7ec..000000000 --- a/Example/Pods/IQKeyboardCore/IQKeyboardCore/Classes/IQKeyboardExtended.swift +++ /dev/null @@ -1,65 +0,0 @@ -// -// IQKeyboardExtended.swift -// https://github.com/hackiftekhar/IQKeyboardCore -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -/// Wrapper for IQKeyboardManager compatible types. This type provides an extension point for -/// convenience methods in IQKeyboardManager. -@available(iOSApplicationExtension, unavailable) -public struct IQKeyboardExtension { - public private(set) weak var base: Base? - fileprivate init(_ base: Base) { - self.base = base - } -} - -// swiftlint:disable identifier_name -/// Represents an object type that is compatible with IQKeyboardManager. You can use `iq` property to get a -/// value in the namespace of IQKeyboardManager. -@available(iOSApplicationExtension, unavailable) -public protocol IQKeyboardExtended { - /// Type being extended. - associatedtype Base: AnyObject - - /// Instance IQKeyboardManager extension point. - @MainActor - var iq: IQKeyboardExtension { get set } -} - -// swiftlint:disable unused_setter_value -@available(iOSApplicationExtension, unavailable) -public extension IQKeyboardExtended where Self: UIView { - - /// Instance IQKeyboardManager extension point. - @MainActor - var iq: IQKeyboardExtension { - get { IQKeyboardExtension(self) } - set {} - } -} -// swiftlint:enable unused_setter_value -// swiftlint:enable identifier_name - -@available(iOSApplicationExtension, unavailable) -@MainActor -extension UIView: IQKeyboardExtended {} diff --git a/Example/Pods/IQKeyboardCore/IQKeyboardCore/Classes/IQTextInputView.swift b/Example/Pods/IQKeyboardCore/IQKeyboardCore/Classes/IQTextInputView.swift deleted file mode 100644 index 5c1612a5e..000000000 --- a/Example/Pods/IQKeyboardCore/IQKeyboardCore/Classes/IQTextInputView.swift +++ /dev/null @@ -1,86 +0,0 @@ -// -// IQTextInputView.swift -// https://github.com/hackiftekhar/IQKeyboardCore -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public protocol IQTextInputView where Self: UIView, Self: UITextInputTraits { - - @available(iOS 16.0, *) - @objc var iqIsFindInteractionEnabled: Bool { get } - - @available(iOS 16.0, *) - @objc var iqFindInteraction: UIFindInteraction? { get } - - @objc var returnKeyType: UIReturnKeyType { get set } - @objc var keyboardAppearance: UIKeyboardAppearance { get set } - - @objc var iqIsEnabled: Bool { get } - - @objc var inputAccessoryView: UIView? { get set } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc extension UITextField: IQTextInputView { - - @available(iOS 16.0, *) - public var iqIsFindInteractionEnabled: Bool { false } - - @available(iOS 16.0, *) - public var iqFindInteraction: UIFindInteraction? { nil } - - public var iqIsEnabled: Bool { isEnabled } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc extension UITextView: IQTextInputView { - @available(iOS 16.0, *) - public var iqIsFindInteractionEnabled: Bool { isFindInteractionEnabled } - - @available(iOS 16.0, *) - public var iqFindInteraction: UIFindInteraction? { findInteraction } - - public var iqIsEnabled: Bool { isEditable } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc extension UISearchBar: IQTextInputView { - - @available(iOS 16.0, *) - public var iqIsFindInteractionEnabled: Bool { false } - - @available(iOS 16.0, *) - public var iqFindInteraction: UIFindInteraction? { nil } - - public var iqIsEnabled: Bool { - if #available(iOS 16.4, *) { - return isEnabled - } else { - return searchTextField.isEnabled - } - } -} diff --git a/Example/Pods/IQKeyboardCore/IQKeyboardCore/Classes/UIKitExtensions/UIView+Hierarchy.swift b/Example/Pods/IQKeyboardCore/IQKeyboardCore/Classes/UIKitExtensions/UIView+Hierarchy.swift deleted file mode 100644 index f97a4847a..000000000 --- a/Example/Pods/IQKeyboardCore/IQKeyboardCore/Classes/UIKitExtensions/UIView+Hierarchy.swift +++ /dev/null @@ -1,168 +0,0 @@ -// -// UIView+Hierarchy.swift -// https://github.com/hackiftekhar/IQKeyboardCore -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -/** - UIView hierarchy category. - */ - -@available(iOSApplicationExtension, unavailable) -@MainActor -public extension IQKeyboardExtension where Base: UIView { - - // MARK: viewControllers - - /** - Returns the UIViewController object that manages the receiver. - */ - func viewContainingController() -> UIViewController? { - - var nextResponder: UIResponder? = base - - repeat { - nextResponder = nextResponder?.next - - if let viewController: UIViewController = nextResponder as? UIViewController { - return viewController - } - - } while nextResponder != nil - - return nil - } - - @available(*, unavailable, message: "This has been removed because it no longer needed") - func topMostController() -> UIViewController? { nil } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -public extension IQKeyboardExtension where Base: UIView { - - // MARK: Superviews - /** - Returns the superView of provided class type. - - @param classType class type of the object which is to be search in above hierarchy and return - - @param belowView view object in upper hierarchy where method should stop searching and return nil - */ - func superviewOf(type classType: T.Type, belowView: UIView? = nil) -> T? { - - var superView: UIView? = base?.superview - - while let aSuperview: UIView = superView { - - if aSuperview.isKind(of: classType) { - - // If it's UIScrollView, then validating for special cases - if aSuperview is UIScrollView { - - let classNameString: String = "\(type(of: aSuperview.self))" - - // If it's not UITableViewWrapperView class, - // this is internal class which is actually manage in UITableview. - // The speciality of this class is that it's superview is UITableView. - // If it's not UITableViewCellScrollView class, - // this is internal class which is actually manage in UITableviewCell. - // The speciality of this class is that it's superview is UITableViewCell. - // If it's not _UIQueuingScrollView class, - // actually we validate for _ prefix which usually used by Apple internal classes - if !(aSuperview.superview is UITableView), - !(aSuperview.superview is UITableViewCell), - !classNameString.hasPrefix("_") { - return superView as? T - } - } else { - return superView as? T - } - } else if aSuperview == belowView { - return nil - } - - superView = aSuperview.superview - } - - return nil - } - - // MARK: Special TextFields - - /** - Returns searchBar if receiver object is UISearchBarTextField, otherwise return nil. - */ - func textFieldSearchBar() -> UISearchBar? { - - var responder: UIResponder? = base?.next - - while let bar: UIResponder = responder { - - if let searchBar: UISearchBar = bar as? UISearchBar { - return searchBar - } else if bar is UIViewController { - break - } - - responder = bar.next - } - - return nil - } - - /** - Returns YES if the receiver object is UIAlertSheetTextField, otherwise return NO. - */ - func isAlertViewTextField() -> Bool { - - var alertViewController: UIResponder? = viewContainingController() - - var isAlertViewTextField: Bool = false - - while let controller: UIResponder = alertViewController, !isAlertViewTextField { - - if controller is UIAlertController { - isAlertViewTextField = true - break - } - - alertViewController = controller.next - } - - return isAlertViewTextField - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension UIView { - - @available(*, unavailable, renamed: "iq.viewContainingController()") - func viewContainingController() -> UIViewController? { nil } - - @available(*, unavailable, message: "This has been removed because it no longer needed") - func topMostController() -> UIViewController? { nil } - - @available(*, unavailable, renamed: "iq.superviewOf(type:belowView:)") - func superviewOfClassType(_ classType: UIView.Type, belowView: UIView? = nil) -> UIView? { nil } -} diff --git a/Example/Pods/IQKeyboardCore/LICENSE b/Example/Pods/IQKeyboardCore/LICENSE deleted file mode 100644 index 5d8eb9642..000000000 --- a/Example/Pods/IQKeyboardCore/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Example/Pods/IQKeyboardCore/README.md b/Example/Pods/IQKeyboardCore/README.md deleted file mode 100644 index 620ea8337..000000000 --- a/Example/Pods/IQKeyboardCore/README.md +++ /dev/null @@ -1,29 +0,0 @@ -# IQKeyboardCore - -[![CI Status](https://img.shields.io/travis/hackiftekhar/IQKeyboardCore.svg?style=flat)](https://travis-ci.org/hackiftekhar/IQKeyboardCore) -[![Version](https://img.shields.io/cocoapods/v/IQKeyboardCore.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardCore) -[![License](https://img.shields.io/cocoapods/l/IQKeyboardCore.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardCore) -[![Platform](https://img.shields.io/cocoapods/p/IQKeyboardCore.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardCore) - -## Example - -To run the example project, clone the repo, and run `pod install` from the Example directory first. - -## Requirements - -## Installation - -IQKeyboardCore is available through [CocoaPods](https://cocoapods.org). To install -it, simply add the following line to your Podfile: - -```ruby -pod 'IQKeyboardCore' -``` - -## Author - -hackiftekhar, ideviftekhar@gmail.com - -## License - -IQKeyboardCore is available under the MIT license. See the LICENSE file for more info. diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceConfiguration.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceConfiguration.swift deleted file mode 100644 index 49de03bfd..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceConfiguration.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// IQKeyboardAppearanceConfiguration.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers public final class IQKeyboardAppearanceConfiguration: NSObject { - - /** - Override the keyboardAppearance for all textInputView. Default is NO. - */ - public var overrideAppearance: Bool = false - - /** - If overrideKeyboardAppearance is YES, then all the textInputView keyboardAppearance is set using this property. - */ - public var appearance: UIKeyboardAppearance = .default -} - -@available(*, unavailable, renamed: "IQKeyboardAppearanceConfiguration") -@MainActor -@objcMembers public final class IQKeyboardConfiguration: NSObject {} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager+Internal.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager+Internal.swift deleted file mode 100644 index fd475c0bc..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager+Internal.swift +++ /dev/null @@ -1,50 +0,0 @@ -// -// IQKeyboardAppearanceManager+Internal.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -@available(iOSApplicationExtension, unavailable) -@MainActor -internal extension IQKeyboardAppearanceManager { - - func removeTextInputViewObserver() { - textInputViewObserver.unsubscribe(identifier: "IQKeyboardAppearanceManager") - } - - func addTextInputViewObserver() { - textInputViewObserver.subscribe(identifier: "IQKeyboardAppearanceManager", - changeHandler: { [weak self] event, textInputView in - guard let self = self else { return } - switch event { - case .beginEditing: - guard self.keyboardConfiguration.overrideAppearance, - textInputView.keyboardAppearance != self.keyboardConfiguration.appearance else { return } - - textInputView.keyboardAppearance = self.keyboardConfiguration.appearance - textInputView.reloadInputViews() - case .endEditing: - break - } - }) - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager.swift deleted file mode 100644 index 4a6fdaa35..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager.swift +++ /dev/null @@ -1,44 +0,0 @@ -// -// IQKeyboardAppearanceManager.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQTextInputViewNotification - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers internal final class IQKeyboardAppearanceManager: NSObject { - - let textInputViewObserver: IQTextInputViewNotification = .init() - - /** - Configuration related to keyboard appearance - */ - var keyboardConfiguration: IQKeyboardAppearanceConfiguration = .init() - - public override init() { - super.init() - - // Registering one time only - addTextInputViewObserver() - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance.swift deleted file mode 100644 index cea51c2dd..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance.swift +++ /dev/null @@ -1,55 +0,0 @@ -// -// IQKeyboardManager+Appearance.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardManager { - - @MainActor - private struct AssociatedKeys { - static var appearanceManager: Int = 0 - } - - internal var appearanceManager: IQKeyboardAppearanceManager { - if let object = objc_getAssociatedObject(self, &AssociatedKeys.appearanceManager) - as? IQKeyboardAppearanceManager { - return object - } - - let object: IQKeyboardAppearanceManager = .init() - objc_setAssociatedObject(self, &AssociatedKeys.appearanceManager, - object, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - - return object - } - - /** - Configuration related to keyboard appearance - */ - var keyboardConfiguration: IQKeyboardAppearanceConfiguration { - get { appearanceManager.keyboardConfiguration } - set { appearanceManager.keyboardConfiguration = newValue } - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance_Deprecated.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance_Deprecated.swift deleted file mode 100644 index 8e9cfb574..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance_Deprecated.swift +++ /dev/null @@ -1,43 +0,0 @@ -// -// IQKeyboardManager+Appearance_Deprecated.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -// swiftlint:disable unused_setter_value -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardManager { - - @available(*, unavailable, renamed: "keyboardConfiguration.overrideAppearance") - var overrideKeyboardAppearance: Bool { - get { false } - set { } - } - - @available(*, unavailable, renamed: "keyboardConfiguration.appearance") - var keyboardAppearance: UIKeyboardAppearance { - get { .default } - set { } - } -} -// swiftlint:enable unused_setter_value diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQActiveConfiguration.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQActiveConfiguration.swift deleted file mode 100644 index 502f714d4..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQActiveConfiguration.swift +++ /dev/null @@ -1,274 +0,0 @@ -// -// IQActiveConfiguration.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore -import IQKeyboardNotification -import IQTextInputViewNotification -import Combine - -@available(iOSApplicationExtension, unavailable) -@MainActor -internal final class IQActiveConfiguration: NSObject { - - private let keyboardObserver: IQKeyboardNotification = .init() - private let textInputViewObserver: IQTextInputViewNotification = .init() - - private var changeObservers: [AnyHashable: ConfigurationCompletion] = [:] - var cancellable: Set = [] - - enum Event: Int { - case hide - case show - case change - - var name: String { - switch self { - case .hide: - return "hide" - case .show: - return "show" - case .change: - return "change" - } - } - } - - private var lastEvent: Event = .hide - - var rootConfiguration: IQRootControllerConfiguration? - - var isReady: Bool { - if textInputViewInfo != nil, - let rootConfiguration = rootConfiguration { - return rootConfiguration.isReady - } - return false - } - - override init() { - super.init() - addKeyboardObserver() - addTextInputViewObserver() - } - - private func sendEvent() { - - guard let rootConfiguration = rootConfiguration, - rootConfiguration.isReady else { return } - - if keyboardInfo.isVisible { - if lastEvent == .hide { - self.notify(event: .show, keyboardInfo: keyboardInfo, textInputViewInfo: textInputViewInfo) - } else { - self.notify(event: .change, keyboardInfo: keyboardInfo, textInputViewInfo: textInputViewInfo) - } - - } else if lastEvent != .hide { - if rootConfiguration.beginOrientation == rootConfiguration.currentOrientation { - - // If interactive pop gesture is active then it manipulate viewController.view's frame - // To overcome with this, we have to do this workaround. - if rootConfiguration.isInteractiveGestureActive, - let rootController: UIViewController = rootConfiguration.rootController { - - self.cancellable.forEach { $0.cancel() } - self.cancellable.removeAll() - - // Saving current keyboard info and textInputView - let keyboardInfo = keyboardObserver.keyboardInfo - let textInputViewInfo = textInputViewObserver.textInputViewInfo - - // Start observing frame changes. - // If pop successful, then we'll not get callbacks here again - // If user cancels the pop, then we'll get frame as .zero at some time - // Also the interactiveGesture becomes inactive (genuinely it's state is .possible) - // At this moment. - rootController.view.publisher(for: \.frame) - .sink(receiveValue: { [weak self] frame in - guard let self = self else { return } - print(frame) - guard frame.origin == .zero, - !rootConfiguration.isInteractiveGestureActive else { return } - - self.cancellable.forEach { $0.cancel() } - self.cancellable.removeAll() - - // Restore keyboard info and textInputViewInfo - self.notify(event: .change, keyboardInfo: keyboardInfo, textInputViewInfo: textInputViewInfo) - }).store(in: &cancellable) - - } else { - self.notify(event: .hide, keyboardInfo: keyboardInfo, textInputViewInfo: textInputViewInfo) - self.rootConfiguration = nil - } - - } else if rootConfiguration.hasChanged { - animate(alongsideTransition: { - rootConfiguration.restore() - }, completion: nil) - } - } - } - - private func updateRootController(textInputView: IQTextInputView?) { - - guard let textInputView: UIView = textInputView, - let controller: UIViewController = textInputView.iq.parentContainerViewController() else { - if let rootConfiguration = rootConfiguration, - rootConfiguration.hasChanged { - animate(alongsideTransition: { - rootConfiguration.restore() - }, completion: nil) - } - rootConfiguration = nil - return - } - - let newConfiguration = IQRootControllerConfiguration(rootController: controller) - - guard newConfiguration.rootController?.view.window != rootConfiguration?.rootController?.view.window || - newConfiguration.beginOrientation != rootConfiguration?.beginOrientation else { return } - - if rootConfiguration?.rootController != newConfiguration.rootController { - - // If there was an old configuration but things are changed - if let rootConfiguration = rootConfiguration, - rootConfiguration.hasChanged { - animate(alongsideTransition: { - rootConfiguration.restore() - }, completion: nil) - } - } - - rootConfiguration = newConfiguration - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -extension IQActiveConfiguration { - - var keyboardInfo: IQKeyboardInfo { - return keyboardObserver.keyboardInfo - } - - private func addKeyboardObserver() { - keyboardObserver.subscribe(identifier: "IQActiveConfiguration", changeHandler: { [weak self] _, endFrame in - - guard let self = self else { return } - - guard self.keyboardObserver.oldKeyboardInfo.endFrame.height != endFrame.height else { return } - - if let info = self.textInputViewInfo, self.keyboardInfo.isVisible { - if let rootConfiguration = self.rootConfiguration { - let beginIsPortrait: Bool = rootConfiguration.beginOrientation.isPortrait - let currentIsPortrait: Bool = rootConfiguration.currentOrientation.isPortrait - if beginIsPortrait != currentIsPortrait { - self.updateRootController(textInputView: info.textInputView) - } - } else { - self.updateRootController(textInputView: info.textInputView) - } - } - - self.sendEvent() - - // If interactive pop gesture is active then we don't want to remove this textField - if endFrame.height == 0, - !(self.rootConfiguration?.isInteractiveGestureActive ?? false) { - self.updateRootController(textInputView: nil) - } - }) - } - - public func animate(alongsideTransition transition: @escaping () -> Void, completion: (() -> Void)? = nil) { - keyboardObserver.animate(alongsideTransition: transition, completion: completion) - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -extension IQActiveConfiguration { - - var textInputView: (any IQTextInputView)? { - guard let textInputView: UIView = textInputViewObserver.textInputView, - textInputView.iq.isAlertViewTextField() == false else { - return nil - } - - return textInputViewObserver.textInputView - } - - var textInputViewInfo: IQTextInputViewInfo? { - guard let textInputView: UIView = textInputView, - textInputView.iq.isAlertViewTextField() == false else { - return nil - } - - return textInputViewObserver.textInputViewInfo - } - - private func addTextInputViewObserver() { - textInputViewObserver.subscribe(identifier: "IQActiveConfiguration", - changeHandler: { [weak self] event, textInputView in - - guard let self = self else { return } - -// print(info.event.name) - guard (textInputView as UIView).iq.isAlertViewTextField() == false else { - return - } - - if event == .beginEditing { - self.updateRootController(textInputView: textInputView) - self.sendEvent() - } - }) - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -extension IQActiveConfiguration { - - typealias ConfigurationCompletion = (_ event: Event, - _ keyboardInfo: IQKeyboardInfo, - _ textInputViewInfo: IQTextInputViewInfo?) -> Void - - func subscribe(identifier: AnyHashable, changeHandler: @escaping ConfigurationCompletion) { - changeObservers[identifier] = changeHandler - } - - func unsubscribe(identifier: AnyHashable) { - changeObservers[identifier] = nil - } - - private func notify(event: Event, keyboardInfo: IQKeyboardInfo, textInputViewInfo: IQTextInputViewInfo?) { - lastEvent = event - - for block in changeObservers.values { - block(event, keyboardInfo, textInputViewInfo) - } - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQRootControllerConfiguration.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQRootControllerConfiguration.swift deleted file mode 100644 index 4980b73ee..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQRootControllerConfiguration.swift +++ /dev/null @@ -1,95 +0,0 @@ -// -// IQRootControllerConfiguration.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -@available(iOSApplicationExtension, unavailable) -@MainActor -internal struct IQRootControllerConfiguration { - - weak var rootController: UIViewController? - let beginOrigin: CGPoint - let beginSafeAreaInsets: UIEdgeInsets - let beginOrientation: UIInterfaceOrientation - - init(rootController: UIViewController) { - self.rootController = rootController - beginOrigin = rootController.view.frame.origin - beginSafeAreaInsets = rootController.view.safeAreaInsets - - let interfaceOrientation: UIInterfaceOrientation - if let scene = rootController.view.window?.windowScene { - interfaceOrientation = scene.interfaceOrientation - } else { - interfaceOrientation = .unknown - } - - beginOrientation = interfaceOrientation - } - - var currentOrientation: UIInterfaceOrientation { - let interfaceOrientation: UIInterfaceOrientation - if let scene = rootController?.view.window?.windowScene { - interfaceOrientation = scene.interfaceOrientation - } else { - interfaceOrientation = .unknown - } - return interfaceOrientation - } - - var isReady: Bool { - return rootController?.view.window != nil - } - - var hasChanged: Bool { - let origin: CGPoint = rootController?.view.frame.origin ?? .zero - return !origin.equalTo(beginOrigin) - } - - var isInteractiveGestureActive: Bool { - guard let rootController: UIViewController = rootController, - let navigationController: UINavigationController = rootController.navigationController, - let interactiveGestureRecognizer = navigationController.interactivePopGestureRecognizer else { - return false - } - switch interactiveGestureRecognizer.state { - case .began, .changed: - return true - case .possible, .ended, .cancelled, .failed, .recognized: - // swiftlint:disable:next no_fallthrough_only - fallthrough - default: - return false - } - } - @discardableResult - func restore() -> Bool { - guard let rootController: UIViewController = rootController, - !rootController.view.frame.origin.equalTo(beginOrigin) else { return false } - // Setting it's new frame - var rect: CGRect = rootController.view.frame - rect.origin = beginOrigin - rootController.view.frame = rect - return true - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQScrollViewConfiguration.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQScrollViewConfiguration.swift deleted file mode 100644 index 8ced7b524..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQScrollViewConfiguration.swift +++ /dev/null @@ -1,100 +0,0 @@ -// -// IQScrollViewConfiguration.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore - -@available(iOSApplicationExtension, unavailable) -@MainActor -internal struct IQScrollViewConfiguration { - let scrollView: UIScrollView - let startingContentOffset: CGPoint - let startingScrollIndicatorInsets: UIEdgeInsets - let startingContentInset: UIEdgeInsets - - private let canRestoreContentOffset: Bool - - init(scrollView: UIScrollView, canRestoreContentOffset: Bool) { - self.scrollView = scrollView - self.canRestoreContentOffset = canRestoreContentOffset - - startingContentOffset = scrollView.contentOffset - startingContentInset = scrollView.contentInset - startingScrollIndicatorInsets = scrollView.verticalScrollIndicatorInsets - } - - var hasChanged: Bool { - if scrollView.contentInset != self.startingContentInset { - return true - } - - if canRestoreContentOffset, - scrollView.iq.restoreContentOffset, - !scrollView.contentOffset.equalTo(startingContentOffset) { - return true - } - return false - } - - @discardableResult - func restore(for textInputView: (some IQTextInputView)?) -> Bool { - var success: Bool = false - - if scrollView.contentInset != self.startingContentInset { - scrollView.contentInset = self.startingContentInset - scrollView.layoutIfNeeded() // (Bug ID: #1996) - success = true - } - - if scrollView.verticalScrollIndicatorInsets != self.startingScrollIndicatorInsets { - scrollView.verticalScrollIndicatorInsets = self.startingScrollIndicatorInsets - } - - if canRestoreContentOffset, - scrollView.iq.restoreContentOffset, - !scrollView.contentOffset.equalTo(startingContentOffset) { - - // (Bug ID: #1365, #1508, #1541) - let stackView: UIStackView? - if let textInputView: UIView = textInputView { - stackView = textInputView.iq.superviewOf(type: UIStackView.self, - belowView: scrollView) - } else { - stackView = nil - } - // (Bug ID: #1901, #1996) - let animatedContentOffset: Bool = stackView != nil || - scrollView is UICollectionView || - scrollView is UITableView - - if animatedContentOffset { - scrollView.setContentOffset(startingContentOffset, animated: UIView.areAnimationsEnabled) - } else { - scrollView.contentOffset = startingContentOffset - } - success = true - } - - return success - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Debug/IQKeyboardManager+Debug.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Debug/IQKeyboardManager+Debug.swift deleted file mode 100644 index ccea38b98..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Debug/IQKeyboardManager+Debug.swift +++ /dev/null @@ -1,78 +0,0 @@ -// -// IQKeyboardManager+Debug.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -// MARK: Debugging & Developer options -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardManager { - - @MainActor - private struct AssociatedKeys { - static var isDebuggingEnabled: Int = 0 - static var logIndentation: Int = 0 - } - - var isDebuggingEnabled: Bool { - get { - return objc_getAssociatedObject(self, &AssociatedKeys.isDebuggingEnabled) as? Bool ?? false - } - set(newValue) { - objc_setAssociatedObject(self, &AssociatedKeys.isDebuggingEnabled, - newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - - private var logIndentation: Int { - get { - return objc_getAssociatedObject(self, &AssociatedKeys.logIndentation) as? Int ?? 0 - } - set(newValue) { - objc_setAssociatedObject(self, &AssociatedKeys.logIndentation, - newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - - internal func showLog(_ logString: String, indentation: Int = 0) { - - guard isDebuggingEnabled else { - return - } - - if indentation < 0 { - logIndentation = max(0, logIndentation + indentation) - } - - var preLog: String = "IQKeyboardManager" - for _ in 0 ... logIndentation { - preLog += "|\t" - } - - print(preLog + logString) - - if indentation > 0 { - logIndentation += indentation - } - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Deprecated/IQKeyboardManager+Deprecated.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Deprecated/IQKeyboardManager+Deprecated.swift deleted file mode 100644 index 87bb3f9c2..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/Deprecated/IQKeyboardManager+Deprecated.swift +++ /dev/null @@ -1,169 +0,0 @@ -// -// IQKeyboardManager+Deprecated.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -// swiftlint:disable unused_setter_value -// swiftlint:disable line_length -// swiftlint:disable type_name -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardManager { - - @available(*, unavailable, renamed: "keyboardDistance") - var keyboardDistanceFromTextField: CGFloat { - get { fatalError() } - set { } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardManager { - - @available(*, unavailable, message: "This feature has been removed due to few compatibility problems") - func registerTextFieldViewClass(_ aClass: UIView.Type, - didBeginEditingNotificationName: String, - didEndEditingNotificationName: String) { - } - - @available(*, unavailable, message: "This feature has been removed due to few compatibility problems") - func unregisterTextFieldViewClass(_ aClass: UIView.Type, - didBeginEditingNotificationName: String, - didEndEditingNotificationName: String) { - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardManager { - - typealias SizeBlock = (_ size: CGSize) -> Void - - @available(*, unavailable, message: "Please use `IQKeyboardNotification` independently from https://github.com/hackiftekhar/IQKeyboardNotification") - func registerKeyboardSizeChange(identifier: AnyHashable, sizeHandler: @escaping SizeBlock) {} - - @available(*, unavailable, message: "Please use `IQKeyboardNotification` independently from https://github.com/hackiftekhar/IQKeyboardNotification") - func unregisterKeyboardSizeChange(identifier: AnyHashable) {} - - @available(*, unavailable, message: "Please use `IQKeyboardNotification` independently from https://github.com/hackiftekhar/IQKeyboardNotification") - var keyboardShowing: Bool { false } - - @available(*, unavailable, message: "Please use `IQKeyboardNotification` independently from https://github.com/hackiftekhar/IQKeyboardNotification") - var keyboardFrame: CGRect { .zero } -} - -@available(*, unavailable, renamed: "IQKeyboardReturnManager", message: "Please use `IQKeyboardReturnManager` independently from https://github.com/hackiftekhar/IQKeyboardReturnManager") -@MainActor -@objcMembers public final class IQKeyboardReturnKeyHandler: NSObject {} - -@available(*, unavailable, renamed: "IQKeyboardNotification", message: "Please use `IQKeyboardNotification` independently from https://github.com/hackiftekhar/IQKeyboardNotification") -@MainActor -@objcMembers public final class IQKeyboardListener: NSObject {} - -@available(*, unavailable, renamed: "IQTextInputViewNotification", message: "Please use `IQTextInputViewNotification` independently from https://github.com/hackiftekhar/IQTextInputViewNotification") -@MainActor -@objcMembers public final class IQTextFieldViewListener: NSObject {} - -@available(*, unavailable, renamed: "IQDeepResponderContainerView", message: "Please use `IQDeepResponderContainerView` class which is now part of `IQKeyboardToolbarManager` from https://github.com/hackiftekhar/IQKeyboardToolbarManager.") -@MainActor -@objcMembers open class IQPreviousNextView: UIView {} - -@available(*, unavailable, message: "Please use `IQKeyboardToolbar` independently https://github.com/hackiftekhar/IQKeyboardToolbar or through `IQKeyboardToolbarManager` from https://github.com/hackiftekhar/IQKeyboardToolbarManager") -@MainActor -@objcMembers public final class IQToolbarPlaceholderConfigurationDeprecated: NSObject { - public var showPlaceholder: Bool = true - public var font: UIFont? - public var color: UIColor? - public var buttonColor: UIColor? - public override var accessibilityLabel: String? { didSet { } } -} - -@available(iOSApplicationExtension, unavailable) -@available(*, unavailable, message: "Please use `IQKeyboardToolbar` independently https://github.com/hackiftekhar/IQKeyboardToolbar or through `IQKeyboardToolbarManager` from https://github.com/hackiftekhar/IQKeyboardToolbarManager") -@MainActor -@objcMembers public final class IQBarButtonItemConfigurationDeprecated: NSObject { - - public init(systemItem: UIBarButtonItem.SystemItem, action: Selector? = nil) { - self.systemItem = systemItem - self.image = nil - self.title = nil - self.action = action - super.init() - } - - public init(image: UIImage, action: Selector? = nil) { - self.systemItem = nil - self.image = image - self.title = nil - self.action = action - super.init() - } - - public init(title: String, action: Selector? = nil) { - self.systemItem = nil - self.image = nil - self.title = title - self.action = action - super.init() - } - - public let systemItem: UIBarButtonItem.SystemItem? - public let image: UIImage? - public let title: String? - public var action: Selector? - public override var accessibilityLabel: String? { didSet { } } -} - -@available(*, unavailable, message: "Please use `IQKeyboardToolbarManager` independently from https://github.com/hackiftekhar/IQKeyboardToolbarManager") -@objc public enum IQAutoToolbarManageBehaviorDeprecated: Int { - case bySubviews - case byTag - case byPosition -} - -@available(*, unavailable, message: "Please use `IQKeyboardToolbarManager` independently from https://github.com/hackiftekhar/IQKeyboardToolbarManager") -@objc public enum IQPreviousNextDisplayModeDeprecated: Int { - case `default` - case alwaysHide - case alwaysShow -} - -@available(*, unavailable, message: "Please use `IQKeyboardToolbarManager` independently from https://github.com/hackiftekhar/IQKeyboardToolbarManager") -@MainActor -@objcMembers public final class IQToolbarConfiguration: NSObject { - - public var useTextInputViewTintColor: Bool = false - public var tintColor: UIColor? - public var barTintColor: UIColor? - public var previousNextDisplayMode: IQPreviousNextDisplayModeDeprecated = .default - public var manageBehavior: IQAutoToolbarManageBehaviorDeprecated = .bySubviews - public var previousBarButtonConfiguration: IQBarButtonItemConfigurationDeprecated? - public var nextBarButtonConfiguration: IQBarButtonItemConfigurationDeprecated? - public var doneBarButtonConfiguration: IQBarButtonItemConfigurationDeprecated? - public let placeholderConfiguration: IQToolbarPlaceholderConfigurationDeprecated = .init() -} - -// swiftlint:enable line_length -// swiftlint:enable unused_setter_value -// swiftlint:enable type_name diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+ActiveConfiguration.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+ActiveConfiguration.swift deleted file mode 100644 index a09bae866..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+ActiveConfiguration.swift +++ /dev/null @@ -1,126 +0,0 @@ -// -// IQKeyboardManager+ActiveConfiguration.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore -import Combine - -// MARK: UIKeyboard Notifications -@available(iOSApplicationExtension, unavailable) -@MainActor -internal extension IQKeyboardManager { - - func addActiveConfigurationObserver() { - activeConfiguration.subscribe(identifier: "IQKeyboardManager", changeHandler: { [weak self] event, _, _ in - guard let self = self else { return } - - switch event { - case .show: - self.handleKeyboardTextInputViewVisible() - case .change: - self.handleKeyboardTextInputViewChanged() - case .hide: - self.handleKeyboardTextInputViewHide() - } - }) - } - - private func handleKeyboardTextInputViewVisible() { - - setupTextInputView() - - if privateIsEnabled() { - adjustPosition() - } else { - restorePosition() - } - } - - private func handleKeyboardTextInputViewChanged() { - - setupTextInputView() - - if privateIsEnabled() { - adjustPosition() - } else { - restorePosition() - } - } - - private func handleKeyboardTextInputViewHide() { - - self.restorePosition() - self.banishTextInputViewSetup() - - self.lastScrollViewConfiguration = nil - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -internal extension IQKeyboardManager { - - func setupTextInputView() { - - guard let textInputView = activeConfiguration.textInputView else { - return - } - - if let startingConfiguration = startingTextViewConfiguration, - startingConfiguration.hasChanged { - - if startingConfiguration.scrollView.contentInset != startingConfiguration.startingContentInset { - showLog(""" - Restoring textView.contentInset to: \(startingConfiguration.startingContentInset) - """) - } - - activeConfiguration.animate(alongsideTransition: { - startingConfiguration.restore(for: textInputView) - }) - } - startingTextViewConfiguration = nil - } - - func banishTextInputViewSetup() { - - guard let textInputView = activeConfiguration.textInputView else { - return - } - - if let startingConfiguration = startingTextViewConfiguration, - startingConfiguration.hasChanged { - - if startingConfiguration.scrollView.contentInset != startingConfiguration.startingContentInset { - showLog(""" - Restoring textView.contentInset to: \(startingConfiguration.startingContentInset) - """) - } - - activeConfiguration.animate(alongsideTransition: { - startingConfiguration.restore(for: textInputView) - }) - } - startingTextViewConfiguration = nil - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Internal.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Internal.swift deleted file mode 100644 index 59896717c..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Internal.swift +++ /dev/null @@ -1,88 +0,0 @@ -// -// IQKeyboardManager+Internal.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore - -@available(iOSApplicationExtension, unavailable) -@MainActor -internal extension IQKeyboardManager { - - func privateIsEnabled() -> Bool { - - guard let textInputView: any IQTextInputView = activeConfiguration.textInputView else { - return isEnabled - } - - switch textInputView.internalEnableMode { - case .default: - guard var controller = (textInputView as UIView).iq.viewContainingController() else { - return isEnabled - } - - // If it is searchBar textField embedded in Navigation Bar - if (textInputView as UIView).iq.textFieldSearchBar() != nil, - let navController: UINavigationController = controller as? UINavigationController, - let topController: UIViewController = navController.topViewController { - controller = topController - } - - // If viewController is in enabledDistanceHandlingClasses, then assuming it's enabled. - let isWithEnabledClass: Bool = enabledDistanceHandlingClasses.contains(where: { controller.isKind(of: $0) }) - var isEnabled: Bool = isEnabled || isWithEnabledClass - - if isEnabled { - // If viewController is in disabledDistanceHandlingClasses, - // then assuming it's disabled. - if disabledDistanceHandlingClasses.contains(where: { controller.isKind(of: $0) }) { - isEnabled = false - } else { - // Special Controllers - let classNameString: String = "\(type(of: controller.self))" - - // _UIAlertControllerTextFieldViewController - if classNameString.contains("UIAlertController"), - classNameString.hasSuffix("TextFieldViewController") { - isEnabled = false - } - } - } - - return isEnabled - case .enabled: - return true - case .disabled: - return false - @unknown default: - return false - } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -fileprivate extension IQTextInputView { - var internalEnableMode: IQEnableMode { - return iq.enableMode - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Position.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Position.swift deleted file mode 100644 index 478aa4398..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Position.swift +++ /dev/null @@ -1,795 +0,0 @@ -// -// IQKeyboardManager+Position.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore - -// swiftlint:disable file_length -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardManager { - - private typealias IQLayoutGuide = (top: CGFloat, bottom: CGFloat) - - @MainActor - private struct AssociatedKeys { - static var movedDistance: Int = 0 - static var movedDistanceChanged: Int = 0 - static var lastScrollViewConfiguration: Int = 0 - static var startingTextViewConfiguration: Int = 0 - static var activeConfiguration: Int = 0 - } - - /** - moved distance to the top used to maintain distance between keyboard and textInputView. - Most of the time this will be a positive value. - */ - private(set) var movedDistance: CGFloat { - get { - return objc_getAssociatedObject(self, &AssociatedKeys.movedDistance) as? CGFloat ?? 0.0 - } - set(newValue) { - objc_setAssociatedObject(self, &AssociatedKeys.movedDistance, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - movedDistanceChanged?(movedDistance) - } - } - - /** - Will be called then movedDistance will be changed - */ - var movedDistanceChanged: ((CGFloat) -> Void)? { - get { - return objc_getAssociatedObject(self, &AssociatedKeys.movedDistanceChanged) as? ((CGFloat) -> Void) - } - set(newValue) { - objc_setAssociatedObject(self, &AssociatedKeys.movedDistanceChanged, - newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - movedDistanceChanged?(movedDistance) - } - } - - /** Variable to save lastScrollView that was scrolled. */ - @nonobjc - internal var lastScrollViewConfiguration: IQScrollViewConfiguration? { - get { - return objc_getAssociatedObject(self, - &AssociatedKeys.lastScrollViewConfiguration) as? IQScrollViewConfiguration - } - set(newValue) { - objc_setAssociatedObject(self, &AssociatedKeys.lastScrollViewConfiguration, - newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - - /** used to adjust contentInset of UITextView. */ - @nonobjc - internal var startingTextViewConfiguration: IQScrollViewConfiguration? { - get { - return objc_getAssociatedObject(self, - &AssociatedKeys.startingTextViewConfiguration) as? IQScrollViewConfiguration - } - set(newValue) { - objc_setAssociatedObject(self, &AssociatedKeys.startingTextViewConfiguration, - newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - - internal func applicationDidBecomeActive(_ notification: Notification) { - - guard privateIsEnabled(), - activeConfiguration.keyboardInfo.isVisible, - activeConfiguration.isReady else { - return - } - adjustPosition() - } - - /* Adjusting RootViewController's frame according to interface orientation. */ - // swiftlint:disable function_body_length - internal func adjustPosition() { - - guard UIApplication.shared.applicationState == .active, - let textInputView: any IQTextInputView = activeConfiguration.textInputView, - let superview: UIView = textInputView.superview, - let rootConfiguration = activeConfiguration.rootConfiguration, - let rootController: UIViewController = rootConfiguration.rootController, - let window: UIWindow = rootController.view.window else { - return - } - - showLog(">>>>> \(#function) started >>>>>", indentation: 1) - - defer { - showLog("<<<<< \(#function) ended <<<<<", indentation: -1) - } - - let textInputViewRectInWindow: CGRect = superview.convert(textInputView.frame, to: window) - let textInputViewRectInRootSuperview: CGRect = superview.convert(textInputView.frame, - to: rootController.view.superview) - - // Getting RootViewOrigin. - let rootViewOrigin: CGPoint = rootController.view.frame.origin - - let keyboardDistance: CGFloat = getSpecialTextInputViewDistance(textInputView: textInputView) - - let kbSize: CGSize = Self.getKeyboardSize(keyboardDistance: keyboardDistance, - keyboardFrame: activeConfiguration.keyboardInfo.endFrame, - safeAreaInsets: rootConfiguration.beginSafeAreaInsets, - windowFrame: window.frame) - let originalKbSize: CGSize = activeConfiguration.keyboardInfo.endFrame.size - - let isScrollableTextInputView: Bool - - if let textInputView: UIScrollView = textInputView as? UITextView { - isScrollableTextInputView = textInputView.isScrollEnabled - } else { - isScrollableTextInputView = false - } - - let layoutGuide: IQLayoutGuide = Self.getLayoutGuides(rootController: rootController, window: window, - isScrollableTextInputView: isScrollableTextInputView) - - // Move positive = textInputView is hidden. - // Move negative = textInputView is showing. - // Calculating move position. - var moveUp: CGFloat = Self.getMoveUpDistance(keyboardSize: kbSize, - layoutGuide: layoutGuide, - textInputViewRectInRootSuperview: textInputViewRectInRootSuperview, - textInputViewRectInWindow: textInputViewRectInWindow, - windowFrame: window.frame) - - showLog("Need to move: \(moveUp), will be moving \(moveUp < 0 ? "down" : "up")") - - var superScrollView: UIScrollView? - var superView: UIScrollView? = (textInputView as UIView).iq.superviewOf(type: UIScrollView.self) - - // Getting UIScrollView whose scrolling is enabled. // (Bug ID: #285) - while let view: UIScrollView = superView { - - if view.isScrollEnabled, !view.iq.ignoreScrollingAdjustment { - superScrollView = view - break - } else { - // Getting it's superScrollView. // (Enhancement ID: #21, #24) - superView = view.iq.superviewOf(type: UIScrollView.self) - } - } - - setupActiveScrollViewConfiguration(superScrollView: superScrollView, textInputView: textInputView) - - // Special case for ScrollView. - // If we found lastScrollView then setting it's contentOffset to show textInputView. - if let lastScrollViewConfiguration: IQScrollViewConfiguration = lastScrollViewConfiguration { - adjustScrollViewContentOffsets(moveUp: &moveUp, textInputView: textInputView, - lastScrollViewConfiguration: lastScrollViewConfiguration, - rootSuperview: rootController.view.superview, layoutGuide: layoutGuide, - textInputViewRectInRootSuperview: textInputViewRectInRootSuperview, - isScrollableTextInputView: isScrollableTextInputView, window: window, - kbSize: kbSize, keyboardDistance: keyboardDistance, - rootBeginSafeAreaInsets: rootConfiguration.beginSafeAreaInsets) - } - - // Special case for UITextView - // (Readjusting textInputView.contentInset when textInputView hight is too big to fit on screen) - // _lastScrollView If not having inside any scrollView, now contentInset manages the full screen textInputView. - // If is a UITextView type - if isScrollableTextInputView, let textInputView = textInputView as? UITextView { - - adjustTextInputViewContentInset(window: window, originalKbSize: originalKbSize, - rootSuperview: rootController.view.superview, - layoutGuide: layoutGuide, - textInputView: textInputView) - } - - adjustRootController(moveUp: moveUp, rootViewOrigin: rootViewOrigin, originalKbSize: originalKbSize, - rootController: rootController, rootBeginOrigin: rootConfiguration.beginOrigin) - } - // swiftlint:enable function_body_length - - internal func restorePosition() { - - // Setting rootViewController frame to it's original position. // (Bug ID: #18) - guard let configuration: IQRootControllerConfiguration = activeConfiguration.rootConfiguration else { - return - } - showLog(">>>>> \(#function) started >>>>>", indentation: 1) - - defer { - showLog("<<<<< \(#function) ended <<<<<", indentation: -1) - } - - activeConfiguration.animate(alongsideTransition: { - if configuration.hasChanged { - let classNameString: String = "\(type(of: configuration.rootController.self))" - self.showLog("Restoring \(classNameString) origin to: \(configuration.beginOrigin)") - } - configuration.restore() - - // Animating content if needed (Bug ID: #204) - if self.layoutIfNeededOnUpdate { - // Animating content (Bug ID: #160) - configuration.rootController?.view.setNeedsLayout() - configuration.rootController?.view.layoutIfNeeded() - } - }) - // Restoring the contentOffset of the lastScrollView - if let lastConfiguration: IQScrollViewConfiguration = lastScrollViewConfiguration { - let textInputView: (any IQTextInputView)? = activeConfiguration.textInputView - - restoreScrollViewConfigurationIfChanged(configuration: lastConfiguration, textInputView: textInputView) - - activeConfiguration.animate(alongsideTransition: { - // This is temporary solution. Have to implement the save and restore scrollView state - self.restoreScrollViewContentOffset(superScrollView: lastConfiguration.scrollView, - textInputView: textInputView) - }) - } - - self.movedDistance = 0 - } -} - -// swiftlint:disable function_parameter_count -@available(iOSApplicationExtension, unavailable) -@MainActor -private extension IQKeyboardManager { - - func getSpecialTextInputViewDistance(textInputView: some IQTextInputView) -> CGFloat { - // Maintain keyboardDistance - let specialKeyboardDistance: CGFloat - - if let searchBar: UISearchBar = textInputView.iq.textFieldSearchBar() { - specialKeyboardDistance = searchBar.iq.distanceFromKeyboard - } else { - specialKeyboardDistance = textInputView.iq.distanceFromKeyboard - } - - if specialKeyboardDistance == UIView.defaultKeyboardDistance { - return keyboardDistance - } else { - return specialKeyboardDistance - } - } - - static func getKeyboardSize(keyboardDistance: CGFloat, keyboardFrame: CGRect, - safeAreaInsets: UIEdgeInsets, windowFrame: CGRect) -> CGSize { - let kbSize: CGSize - var kbFrame: CGRect = keyboardFrame - - kbFrame.origin.y -= keyboardDistance - kbFrame.size.height += keyboardDistance - - kbFrame.origin.y -= safeAreaInsets.bottom - kbFrame.size.height += safeAreaInsets.bottom - - // (Bug ID: #469) (Bug ID: #381) (Bug ID: #1506) - // Calculating actual keyboard covered size respect to window, - // keyboard frame may be different when hardware keyboard is attached - let intersectRect: CGRect = kbFrame.intersection(windowFrame) - - if intersectRect.isNull { - kbSize = CGSize(width: kbFrame.size.width, height: 0) - } else { - kbSize = intersectRect.size - } - return kbSize - } - - static private func getLayoutGuides(rootController: UIViewController, window: UIWindow, - isScrollableTextInputView: Bool) -> IQLayoutGuide { - let navigationBarAreaHeight: CGFloat - if let navigationController: UINavigationController = rootController.navigationController { - navigationBarAreaHeight = navigationController.navigationBar.frame.maxY - } else { - let statusBarHeight: CGFloat = window.windowScene?.statusBarManager?.statusBarFrame.height ?? 0 - navigationBarAreaHeight = statusBarHeight - } - - let directionalLayoutMargin: NSDirectionalEdgeInsets = rootController.view.directionalLayoutMargins - let topLayoutGuide: CGFloat = CGFloat.maximum(navigationBarAreaHeight, directionalLayoutMargin.top) - - // Validation of textInputView for case where there is a tab bar - // at the bottom or running on iPhone X and textInputView is at the bottom. - let bottomLayoutGuide: CGFloat = isScrollableTextInputView ? 0 : directionalLayoutMargin.bottom - return (topLayoutGuide, bottomLayoutGuide) - } - - static private func getMoveUpDistance(keyboardSize: CGSize, - layoutGuide: IQLayoutGuide, - textInputViewRectInRootSuperview: CGRect, - textInputViewRectInWindow: CGRect, - windowFrame: CGRect) -> CGFloat { - - // Move positive = textInputView is hidden. - // Move negative = textInputView is showing. - // Calculating move position. - let visibleHeight: CGFloat = windowFrame.height-keyboardSize.height - - let topMovement: CGFloat = textInputViewRectInRootSuperview.minY-layoutGuide.top - let bottomMovement: CGFloat = textInputViewRectInWindow.maxY - visibleHeight + layoutGuide.bottom - var moveUp: CGFloat = CGFloat.minimum(topMovement, bottomMovement) - moveUp = CGFloat(Int(moveUp)) - return moveUp - } - - func setupActiveScrollViewConfiguration(superScrollView: UIScrollView?, textInputView: some IQTextInputView) { - // If there was a lastScrollView. // (Bug ID: #34) - guard let lastConfiguration: IQScrollViewConfiguration = lastScrollViewConfiguration else { - if let superScrollView: UIScrollView = superScrollView { - // If there was no lastScrollView and we found a current scrollView. then setting it as lastScrollView. - let configuration = IQScrollViewConfiguration(scrollView: superScrollView, - canRestoreContentOffset: true) - self.lastScrollViewConfiguration = configuration - showLog(""" - Saving ScrollView New contentInset: \(configuration.startingContentInset) - and contentOffset: \(configuration.startingContentOffset) - """) - } - return - } - - // If we can't find current superScrollView, then setting lastScrollView to it's original form. - if superScrollView == nil { - restoreScrollViewConfigurationIfChanged(configuration: lastConfiguration, - textInputView: textInputView) - self.lastScrollViewConfiguration = nil - } else if superScrollView != lastConfiguration.scrollView { - // If both scrollView's are different, - // then reset lastScrollView to it's original frame and setting current scrollView as last scrollView. - restoreScrollViewConfigurationIfChanged(configuration: lastConfiguration, - textInputView: textInputView) - - if let superScrollView = superScrollView { - let configuration = IQScrollViewConfiguration(scrollView: superScrollView, - canRestoreContentOffset: true) - self.lastScrollViewConfiguration = configuration - showLog(""" - Saving ScrollView New contentInset: \(configuration.startingContentInset) - and contentOffset: \(configuration.startingContentOffset) - """) - } else { - self.lastScrollViewConfiguration = nil - } - } - // Else the case where superScrollView == lastScrollView means we are on same scrollView - // after switching to different textInputView. So doing nothing, going ahead - } - - func restoreScrollViewConfigurationIfChanged(configuration: IQScrollViewConfiguration, - textInputView: (some IQTextInputView)?) { - guard configuration.hasChanged else { return } - if configuration.scrollView.contentInset != configuration.startingContentInset { - showLog("Restoring contentInset to: \(configuration.startingContentInset)") - } - - if configuration.scrollView.iq.restoreContentOffset, - !configuration.scrollView.contentOffset.equalTo(configuration.startingContentOffset) { - showLog("Restoring contentOffset to: \(configuration.startingContentOffset)") - } - - activeConfiguration.animate(alongsideTransition: { - configuration.restore(for: textInputView) - }) - } - - // swiftlint:disable function_body_length - private func adjustScrollViewContentOffsets(moveUp: inout CGFloat, textInputView: some IQTextInputView, - lastScrollViewConfiguration: IQScrollViewConfiguration, - rootSuperview: UIView?, - layoutGuide: IQLayoutGuide, - textInputViewRectInRootSuperview: CGRect, - isScrollableTextInputView: Bool, window: UIWindow, - kbSize: CGSize, keyboardDistance: CGFloat, - rootBeginSafeAreaInsets: UIEdgeInsets) { - // Saving - var lastView: UIView = textInputView - var superScrollView: UIScrollView? = lastScrollViewConfiguration.scrollView - - while let scrollView: UIScrollView = superScrollView { - - var isContinue: Bool = false - - if moveUp > 0 { - isContinue = moveUp > (-scrollView.contentOffset.y - scrollView.contentInset.top) - - } else if let tableView: UITableView = scrollView.iq.superviewOf(type: UITableView.self) { - // Special treatment for UITableView due to their cell reusing logic - - isContinue = scrollView.contentOffset.y > 0 - - Self.handleTableViewCase(moveUp: &moveUp, isContinue: isContinue, textInputView: textInputView, - tableView: tableView, rootSuperview: rootSuperview, layoutGuide: layoutGuide) - } else if let collectionView = scrollView.iq.superviewOf(type: UICollectionView.self) { - // Special treatment for UICollectionView due to their cell reusing logic - - isContinue = scrollView.contentOffset.y > 0 - - Self.handleCollectionViewCase(moveUp: &moveUp, isContinue: isContinue, - textInputView: textInputView, collectionView: collectionView, - rootSuperview: rootSuperview, layoutGuide: layoutGuide) - } else { - isContinue = textInputViewRectInRootSuperview.minY < layoutGuide.top - - if isContinue { - moveUp = CGFloat.minimum(0, textInputViewRectInRootSuperview.minY - layoutGuide.top) - } - } - - // Looping in upper hierarchy until we don't found any scrollView - // in it's upper hierarchy till UIWindow object. - if isContinue { - - var tempScrollView: UIScrollView? = scrollView.iq.superviewOf(type: UIScrollView.self) - var nextScrollView: UIScrollView? - while let view: UIScrollView = tempScrollView { - - if view.isScrollEnabled, !view.iq.ignoreScrollingAdjustment { - nextScrollView = view - break - } else { - tempScrollView = view.iq.superviewOf(type: UIScrollView.self) - } - } - - // Getting lastViewRect. - if let lastViewRect: CGRect = lastView.superview?.convert(lastView.frame, to: scrollView) { - - // Calculating the expected Y offset from move and scrollView's contentOffset. - let minimumMovement: CGFloat = CGFloat.minimum(scrollView.contentOffset.y, -moveUp) - var suggestedOffsetY: CGFloat = scrollView.contentOffset.y - minimumMovement - - // Rearranging the expected Y offset according to the view. - suggestedOffsetY = CGFloat.minimum(suggestedOffsetY, lastViewRect.minY) - - updateSuggestedOffsetYAndMoveUp(suggestedOffsetY: &suggestedOffsetY, moveUp: &moveUp, - isScrollableTextInputView: isScrollableTextInputView, - nextScrollView: nextScrollView, textInputView: textInputView, - window: window, layoutGuide: layoutGuide, - scrollViewContentOffset: scrollView.contentOffset) - - let newContentOffset: CGPoint = CGPoint(x: scrollView.contentOffset.x, y: suggestedOffsetY) - - if !scrollView.contentOffset.equalTo(newContentOffset) { - - updateScrollViewContentOffset(scrollView: scrollView, newContentOffset: newContentOffset, - moveUp: moveUp, textInputView: textInputView) - } - } - - // Getting next lastView & superScrollView. - lastView = scrollView - superScrollView = nextScrollView - } else { - moveUp = 0 - break - } - } - - adjustScrollViewContentInset(lastScrollViewConfiguration: lastScrollViewConfiguration, window: window, - kbSize: kbSize, keyboardDistance: keyboardDistance, - rootBeginSafeAreaInsets: rootBeginSafeAreaInsets) - } - // swiftlint:enable function_body_length - - private static func handleTableViewCase(moveUp: inout CGFloat, isContinue: Bool, - textInputView: some IQTextInputView, tableView: UITableView, - rootSuperview: UIView?, layoutGuide: IQLayoutGuide) { - guard isContinue, - let tableCell: UITableViewCell = textInputView.iq.superviewOf(type: UITableViewCell.self), - let indexPath: IndexPath = tableView.indexPath(for: tableCell), - let previousIndexPath: IndexPath = tableView.previousIndexPath(of: indexPath) else { return } - - let previousCellRect: CGRect = tableView.rectForRow(at: previousIndexPath) - guard !previousCellRect.isEmpty else { return } - - let previousCellRectInRootSuperview: CGRect = tableView.convert(previousCellRect, - to: rootSuperview) - - moveUp = CGFloat.minimum(0, previousCellRectInRootSuperview.maxY - layoutGuide.top) - } - - private static func handleCollectionViewCase(moveUp: inout CGFloat, isContinue: Bool, - textInputView: some IQTextInputView, collectionView: UICollectionView, - rootSuperview: UIView?, - layoutGuide: IQLayoutGuide) { - guard isContinue, - let collectionCell = textInputView.iq.superviewOf(type: UICollectionViewCell.self), - let indexPath: IndexPath = collectionView.indexPath(for: collectionCell), - let previousIndexPath: IndexPath = collectionView.previousIndexPath(of: indexPath), - let attributes = collectionView.layoutAttributesForItem(at: previousIndexPath) else { return } - - let previousCellRect: CGRect = attributes.frame - guard !previousCellRect.isEmpty else { return } - let previousCellRectInRootSuperview: CGRect = collectionView.convert(previousCellRect, - to: rootSuperview) - - moveUp = CGFloat.minimum(0, previousCellRectInRootSuperview.maxY - layoutGuide.top) - } - - private func updateSuggestedOffsetYAndMoveUp(suggestedOffsetY: inout CGFloat, moveUp: inout CGFloat, - isScrollableTextInputView: Bool, nextScrollView: UIScrollView?, - textInputView: some IQTextInputView, window: UIWindow, - layoutGuide: IQLayoutGuide, - scrollViewContentOffset: CGPoint) { - // If is a UITextView type - // nextScrollView == nil - // If processing scrollView is last scrollView in upper hierarchy - // (there is no other scrollView in upper hierarchy.) - // - // suggestedOffsetY >= 0 - // suggestedOffsetY must be >= 0 in order to keep distance from navigationBar (Bug ID: #92) - guard isScrollableTextInputView, - nextScrollView == nil, - suggestedOffsetY >= 0, - let superview: UIView = textInputView.superview else { - // Subtracting the Y offset from the move variable, - // because we are going to change scrollView's contentOffset.y to suggestedOffsetY. - moveUp -= (suggestedOffsetY-scrollViewContentOffset.y) - return - } - - let currentTextInputViewRect: CGRect = superview.convert(textInputView.frame, - to: window) - - // Calculating expected fix distance which needs to be managed from navigation bar - let expectedFixDistance: CGFloat = currentTextInputViewRect.minY - layoutGuide.top - - // Now if expectedOffsetY (scrollView.contentOffset.y + expectedFixDistance) - // is lower than current suggestedOffsetY, which means we're in a position where - // navigationBar up and hide, then reducing suggestedOffsetY with expectedOffsetY - // (scrollView.contentOffset.y + expectedFixDistance) - let expectedOffsetY: CGFloat = scrollViewContentOffset.y + expectedFixDistance - suggestedOffsetY = CGFloat.minimum(suggestedOffsetY, expectedOffsetY) - - // Setting move to 0 because now we don't want to move any view anymore - // (All will be managed by our contentInset logic. - moveUp = 0 - } - - func updateScrollViewContentOffset(scrollView: UIScrollView, newContentOffset: CGPoint, - moveUp: CGFloat, textInputView: some IQTextInputView) { - showLog(""" - old contentOffset: \(scrollView.contentOffset) - new contentOffset: \(newContentOffset) - """) - showLog("Remaining Move: \(moveUp)") - - // Getting problem while using `setContentOffset:animated:`, So I used animation API. - activeConfiguration.animate(alongsideTransition: { - - // (Bug ID: #1365, #1508, #1541) - let stackView: UIStackView? = textInputView.iq.superviewOf(type: UIStackView.self, - belowView: scrollView) - // (Bug ID: #1901, #1996) - let animatedContentOffset: Bool = stackView != nil || - scrollView is UICollectionView || - scrollView is UITableView - - if animatedContentOffset { - scrollView.setContentOffset(newContentOffset, animated: UIView.areAnimationsEnabled) - } else { - scrollView.contentOffset = newContentOffset - } - }, completion: { - - if scrollView is UITableView || scrollView is UICollectionView { - // This will update the next/previous states - textInputView.reloadInputViews() - } - }) - } - - func adjustScrollViewContentInset(lastScrollViewConfiguration: IQScrollViewConfiguration, - window: UIWindow, kbSize: CGSize, keyboardDistance: CGFloat, - rootBeginSafeAreaInsets: UIEdgeInsets) { - - let lastScrollView = lastScrollViewConfiguration.scrollView - - guard let lastScrollViewRect: CGRect = lastScrollView.superview?.convert(lastScrollView.frame, to: window), - !lastScrollView.iq.ignoreContentInsetAdjustment else { return } - - // Updating contentInset - var bottomInset: CGFloat = (kbSize.height)-(window.frame.height-lastScrollViewRect.maxY) - let keyboardAndSafeArea: CGFloat = keyboardDistance + rootBeginSafeAreaInsets.bottom - var bottomScrollIndicatorInset: CGFloat = bottomInset - keyboardAndSafeArea - - // Update the insets so that the scrollView doesn't shift incorrectly - // when the offset is near the bottom of the scroll view. - bottomInset = CGFloat.maximum(lastScrollViewConfiguration.startingContentInset.bottom, bottomInset) - let startingScrollInset: UIEdgeInsets = lastScrollViewConfiguration.startingScrollIndicatorInsets - bottomScrollIndicatorInset = CGFloat.maximum(startingScrollInset.bottom, - bottomScrollIndicatorInset) - - bottomInset -= lastScrollView.safeAreaInsets.bottom - bottomScrollIndicatorInset -= lastScrollView.safeAreaInsets.bottom - - var movedInsets: UIEdgeInsets = lastScrollView.contentInset - movedInsets.bottom = bottomInset - - guard lastScrollView.contentInset != movedInsets else { return } - showLog(""" - old ContentInset: \(lastScrollView.contentInset) new ContentInset: \(movedInsets) - """) - - activeConfiguration.animate(alongsideTransition: { - lastScrollView.contentInset = movedInsets - lastScrollView.layoutIfNeeded() // (Bug ID: #1996) - - var newScrollIndicatorInset: UIEdgeInsets = lastScrollView.verticalScrollIndicatorInsets - - newScrollIndicatorInset.bottom = bottomScrollIndicatorInset - lastScrollView.scrollIndicatorInsets = newScrollIndicatorInset - }) - } - - private func adjustTextInputViewContentInset(window: UIWindow, originalKbSize: CGSize, - rootSuperview: UIView?, - layoutGuide: IQLayoutGuide, - textInputView: UIScrollView) { - let keyboardYPosition: CGFloat = window.frame.height - originalKbSize.height - var rootSuperViewFrameInWindow: CGRect = window.frame - if let rootSuperview: UIView = rootSuperview { - rootSuperViewFrameInWindow = rootSuperview.convert(rootSuperview.bounds, to: window) - } - - let keyboardOverlapping: CGFloat = rootSuperViewFrameInWindow.maxY - keyboardYPosition - - let availableHeight: CGFloat = rootSuperViewFrameInWindow.height-layoutGuide.top-keyboardOverlapping - let textInputViewHeight: CGFloat = CGFloat.minimum(textInputView.frame.height, availableHeight) - - guard textInputView.frame.size.height-textInputView.contentInset.bottom>textInputViewHeight else { return } - // If frame is not change by library in past, then saving user textInputView properties (Bug ID: #92) - if startingTextViewConfiguration == nil { - startingTextViewConfiguration = IQScrollViewConfiguration(scrollView: textInputView, - canRestoreContentOffset: false) - } - - var newContentInset: UIEdgeInsets = textInputView.contentInset - newContentInset.bottom = textInputView.frame.size.height-textInputViewHeight - newContentInset.bottom -= textInputView.safeAreaInsets.bottom - - guard textInputView.contentInset != newContentInset else { return } - showLog(""" - \(textInputView) Old textInputView.contentInset: \(textInputView.contentInset) - New textInputView.contentInset: \(newContentInset) - """) - - activeConfiguration.animate(alongsideTransition: { - - textInputView.contentInset = newContentInset - textInputView.layoutIfNeeded() // (Bug ID: #1996) - textInputView.scrollIndicatorInsets = newContentInset - }) - } - - func adjustRootController(moveUp: CGFloat, rootViewOrigin: CGPoint, originalKbSize: CGSize, - rootController: UIViewController, rootBeginOrigin: CGPoint) { - // +Positive or zero. - var rootViewOrigin: CGPoint = rootViewOrigin - if moveUp >= 0 { - - rootViewOrigin.y = CGFloat.maximum(rootViewOrigin.y - moveUp, CGFloat.minimum(0, -originalKbSize.height)) - - if !rootController.view.frame.origin.equalTo(rootViewOrigin) { - showLog("Moving Upward") - - activeConfiguration.animate(alongsideTransition: { - - var rect: CGRect = rootController.view.frame - rect.origin = rootViewOrigin - rootController.view.frame = rect - - // Animating content if needed (Bug ID: #204) - if self.layoutIfNeededOnUpdate { - // Animating content (Bug ID: #160) - rootController.view.setNeedsLayout() - rootController.view.layoutIfNeeded() - } - - let classNameString: String = "\(type(of: rootController.self))" - self.showLog("Set \(classNameString) origin to: \(rootViewOrigin)") - }) - } - - movedDistance = rootBeginOrigin.y-rootViewOrigin.y - } else { // -Negative - let disturbDistance: CGFloat = rootViewOrigin.y-rootBeginOrigin.y - - // disturbDistance Negative = frame disturbed. - // disturbDistance positive = frame not disturbed. - if disturbDistance <= 0 { - - rootViewOrigin.y -= CGFloat.maximum(moveUp, disturbDistance) - - if !rootController.view.frame.origin.equalTo(rootViewOrigin) { - showLog("Moving Downward") - // Setting adjusted rootViewRect - // Setting adjusted rootViewRect - - activeConfiguration.animate(alongsideTransition: { - - var rect: CGRect = rootController.view.frame - rect.origin = rootViewOrigin - rootController.view.frame = rect - - // Animating content if needed (Bug ID: #204) - if self.layoutIfNeededOnUpdate { - // Animating content (Bug ID: #160) - rootController.view.setNeedsLayout() - rootController.view.layoutIfNeeded() - } - - let classNameString: String = "\(type(of: rootController.self))" - self.showLog("Set \(classNameString) origin to: \(rootViewOrigin)") - }) - } - - movedDistance = rootBeginOrigin.y-rootViewOrigin.y - } - } - } - - func restoreScrollViewContentOffset(superScrollView: UIScrollView, textInputView: (some IQTextInputView)?) { - var superScrollView: UIScrollView? = superScrollView - while let scrollView: UIScrollView = superScrollView { - - let width: CGFloat = CGFloat.maximum(scrollView.contentSize.width, scrollView.frame.width) - let height: CGFloat = CGFloat.maximum(scrollView.contentSize.height, scrollView.frame.height) - let contentSize: CGSize = CGSize(width: width, height: height) - - let minimumY: CGFloat = contentSize.height - scrollView.frame.height - - if minimumY < scrollView.contentOffset.y { - - let newContentOffset: CGPoint = CGPoint(x: scrollView.contentOffset.x, y: minimumY) - if !scrollView.contentOffset.equalTo(newContentOffset) { - - // (Bug ID: #1365, #1508, #1541) - let stackView: UIStackView? - if let textInputView: UIView = textInputView { - stackView = textInputView.iq.superviewOf(type: UIStackView.self, - belowView: scrollView) - } else { - stackView = nil - } - - // (Bug ID: #1901, #1996) - let animatedContentOffset: Bool = stackView != nil || - scrollView is UICollectionView || - scrollView is UITableView - - if animatedContentOffset { - scrollView.setContentOffset(newContentOffset, animated: UIView.areAnimationsEnabled) - } else { - scrollView.contentOffset = newContentOffset - } - - showLog("Restoring contentOffset to: \(newContentOffset)") - } - } - - superScrollView = scrollView.iq.superviewOf(type: UIScrollView.self) - } - } -} -// swiftlint:enable function_parameter_count diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager.swift deleted file mode 100644 index b6f232f64..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager.swift +++ /dev/null @@ -1,133 +0,0 @@ -// -// IQKeyboardManager.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -/** -Code-less drop-in universal library allows to prevent issues of keyboard sliding up and cover TextInputView. - Neither need to write any code nor any setup required and much more. -*/ -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers public final class IQKeyboardManager: NSObject { - - /** - Returns the default singleton instance. - */ - @MainActor - public static let shared: IQKeyboardManager = .init() - - internal var activeConfiguration: IQActiveConfiguration = .init() - - // MARK: UIKeyboard handling - - /** - Enable/disable managing distance between keyboard and textInputView. - Default is YES(Enabled when class loads in `+(void)load` method). - */ - public var isEnabled: Bool = false { - didSet { - guard isEnabled != oldValue else { return } - // If not enable, enable it. - if isEnabled { - // If keyboard is currently showing. - if activeConfiguration.keyboardInfo.isVisible { - adjustPosition() - } else { - restorePosition() - } - showLog("Enabled") - } else { // If not disable, disable it. - restorePosition() - showLog("Disabled") - } - } - } - - /** - To set keyboard distance from textInputView. can't be less than zero. Default is 10.0. - */ - public var keyboardDistance: CGFloat = 10.0 - - /*******************************************/ - - // MARK: UIAnimation handling - - /** - If YES, then calls 'setNeedsLayout' and 'layoutIfNeeded' on any frame update of to viewController's view. - */ - public var layoutIfNeededOnUpdate: Bool = false - - // MARK: Class Level disabling methods - - /** - Disable distance handling within the scope of disabled distance handling viewControllers classes. - Within this scope, 'enabled' property is ignored. Class should be kind of UIViewController. - */ - public var disabledDistanceHandlingClasses: [UIViewController.Type] = [ - UITableViewController.self, - UIInputViewController.self, - UIAlertController.self - ] - - /** - Enable distance handling within the scope of enabled distance handling viewControllers classes. - Within this scope, 'enabled' property is ignored. Class should be kind of UIViewController. - If same Class is added in disabledDistanceHandlingClasses list, - then enabledDistanceHandlingClasses will be ignored. - */ - public var enabledDistanceHandlingClasses: [UIViewController.Type] = [] - - /**************************************************************************************/ - - // MARK: Initialization/De-initialization - - /* Singleton Object Initialization. */ - private override init() { - - super.init() - - self.addActiveConfigurationObserver() - - NotificationCenter.default.addObserver(self, selector: #selector(applicationDidBecomeActive(_:)), - name: UIApplication.didBecomeActiveNotification, object: nil) - } - - deinit { - // Disable the keyboard manager. - isEnabled = false - } - - // MARK: Public Methods - - /* Refreshes textInputView position if any external changes is explicitly made by user. */ - public func reloadLayoutIfNeeded() { - - guard privateIsEnabled(), - activeConfiguration.keyboardInfo.isVisible, - activeConfiguration.isReady else { - return - } - adjustPosition() - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtension.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtension.swift deleted file mode 100644 index 91c253433..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtension.swift +++ /dev/null @@ -1,118 +0,0 @@ -// -// UIScrollView+IQKeyboardManagerExtension.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore - -@available(iOSApplicationExtension, unavailable) -@MainActor -private struct AssociatedKeys { - static var ignoreScrollingAdjustment: Int = 0 - static var ignoreContentInsetAdjustment: Int = 0 - static var restoreContentOffset: Int = 0 -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -public extension IQKeyboardExtension where Base: UIScrollView { - - /** - If YES, then scrollview will ignore scrolling (simply not scroll it) for adjusting textInputView position. - Default is NO. - */ - var ignoreScrollingAdjustment: Bool { - get { - if let base = base { - return objc_getAssociatedObject(base, &AssociatedKeys.ignoreScrollingAdjustment) as? Bool ?? false - } - return false - } - set(newValue) { - if let base = base { - objc_setAssociatedObject(base, &AssociatedKeys.ignoreScrollingAdjustment, - newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - } - - /** - If YES, then scrollview will ignore content inset adjustment (simply not updating it) when keyboard is shown. - Default is NO. - */ - var ignoreContentInsetAdjustment: Bool { - get { - if let base = base { - return objc_getAssociatedObject(base, &AssociatedKeys.ignoreContentInsetAdjustment) as? Bool ?? false - } - return false - } - set(newValue) { - if let base = base { - objc_setAssociatedObject(base, &AssociatedKeys.ignoreContentInsetAdjustment, - newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - } - - /** - If we should restore scrollView contentOffset to it's initial position - */ - var restoreContentOffset: Bool { - get { - if let base = base { - return objc_getAssociatedObject(base, &AssociatedKeys.restoreContentOffset) as? Bool ?? false - } - return false - } - set(newValue) { - if let base = base { - objc_setAssociatedObject(base, &AssociatedKeys.restoreContentOffset, - newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - } -} - -// swiftlint:disable unused_setter_value -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension UIScrollView { - @available(*, unavailable, renamed: "iq.ignoreScrollingAdjustment") - var shouldIgnoreScrollingAdjustment: Bool { - get { false } - set { } - } - - @available(*, unavailable, renamed: "iq.ignoreContentInsetAdjustment") - var shouldIgnoreContentInsetAdjustment: Bool { - get { false } - set { } - } - - @available(*, unavailable, renamed: "iq.restoreContentOffset") - var shouldRestoreScrollViewContentOffset: Bool { - get { false } - set { } - } -} -// swiftlint:enable unused_setter_value diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtensionObjc.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtensionObjc.swift deleted file mode 100644 index 7a7c4b460..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtensionObjc.swift +++ /dev/null @@ -1,46 +0,0 @@ -// -// UIScrollView+IQKeyboardManagerExtensionObjc.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -// MARK: For ObjectiveC Compatibility - -// swiftlint:disable identifier_name -@objc public extension UIScrollView { - - var iq_ignoreScrollingAdjustment: Bool { - get { iq.ignoreScrollingAdjustment } - set { iq.ignoreScrollingAdjustment = newValue } - } - - var iq_ignoreContentInsetAdjustment: Bool { - get { iq.ignoreContentInsetAdjustment } - set { iq.ignoreContentInsetAdjustment = newValue } - } - - var iq_restoreContentOffset: Bool { - get { iq.restoreContentOffset } - set { iq.restoreContentOffset = newValue } - } -} -// swiftlint:enable identifier_name diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtension.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtension.swift deleted file mode 100644 index 57fb2c886..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtension.swift +++ /dev/null @@ -1,106 +0,0 @@ -// -// UIView+IQKeyboardManagerExtension.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore - -@available(iOSApplicationExtension, unavailable) -@MainActor -private struct AssociatedKeys { - static var distanceFromKeyboard: Int = 0 - static var enableMode: Int = 0 -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension UIView { - nonisolated static let defaultKeyboardDistance: CGFloat = .greatestFiniteMagnitude -} - -@available(iOSApplicationExtension, unavailable) -@available(*, unavailable, renamed: "UIView.defaultKeyboardDistance") -nonisolated public let kIQUseDefaultKeyboardDistance: CGFloat = .greatestFiniteMagnitude - -/** - TextInputView category for managing distance handling -*/ -@available(iOSApplicationExtension, unavailable) -@MainActor -public extension IQKeyboardExtension where Base: IQTextInputView { - - /** - To set customized distance from keyboard for textInputView. Can't be less than zero - */ - var distanceFromKeyboard: CGFloat { - get { - if let base = base { - if let value = objc_getAssociatedObject(base, &AssociatedKeys.distanceFromKeyboard) as? CGFloat { - return value - } - } - return UIView.defaultKeyboardDistance - } - set(newValue) { - if let base = base { - objc_setAssociatedObject(base, &AssociatedKeys.distanceFromKeyboard, - newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - } - - /** - Override Enable/disable managing distance between - keyboard and textInputView behavior for this particular textInputView. - */ - var enableMode: IQEnableMode { - get { - if let base = base { - return objc_getAssociatedObject(base, &AssociatedKeys.enableMode) as? IQEnableMode ?? .default - } - return .default - } - set(newValue) { - if let base = base { - objc_setAssociatedObject(base, &AssociatedKeys.enableMode, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - } -} - -// swiftlint:disable unused_setter_value -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension UIView { - @available(*, unavailable, renamed: "iq.distanceFromKeyboard") - var keyboardDistanceFromTextField: CGFloat { - get { 0 } - set { } - } - - @available(*, unavailable, renamed: "iq.enableMode") - var enableMode: IQEnableMode { - get { .default } - set { } - } -} -// swiftlint:enable unused_setter_value diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtensionObjc.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtensionObjc.swift deleted file mode 100644 index 84b52c8c9..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtensionObjc.swift +++ /dev/null @@ -1,55 +0,0 @@ -// -// UIView+IQKeyboardManagerExtensionObjc.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore - -// MARK: For ObjectiveC Compatibility - -// swiftlint:disable identifier_name -@objc public extension UITextField { - - var iq_distanceFromKeyboard: CGFloat { - get { iq.distanceFromKeyboard } - set { iq.distanceFromKeyboard = newValue } - } - - var iq_enableMode: IQEnableMode { - get { iq.enableMode } - set { iq.enableMode = newValue } - } -} - -@objc public extension UITextView { - - var iq_distanceFromKeyboard: CGFloat { - get { iq.distanceFromKeyboard } - set { iq.distanceFromKeyboard = newValue } - } - - var iq_enableMode: IQEnableMode { - get { iq.enableMode } - set { iq.enableMode = newValue } - } -} -// swiftlint:enable identifier_name diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UICollectionView+IndexPaths.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UICollectionView+IndexPaths.swift deleted file mode 100644 index 99238adde..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UICollectionView+IndexPaths.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// UICollectionView+IndexPaths.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -@available(iOSApplicationExtension, unavailable) -@MainActor -internal extension UICollectionView { - - func previousIndexPath(of indexPath: IndexPath) -> IndexPath? { - var previousRow: Int = indexPath.row - 1 - var previousSection: Int = indexPath.section - - // Fixing indexPath - if previousRow < 0 { - previousSection -= 1 - if previousSection >= 0 { - previousRow = self.numberOfItems(inSection: previousSection) - 1 - } - } - - guard previousRow >= 0, previousSection >= 0 else { return nil } - return IndexPath(item: previousRow, section: previousSection) - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UITableView+IndexPaths.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UITableView+IndexPaths.swift deleted file mode 100644 index 5b61fa81d..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UITableView+IndexPaths.swift +++ /dev/null @@ -1,45 +0,0 @@ -// -// UITableView+IndexPaths.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -@available(iOSApplicationExtension, unavailable) -@MainActor -internal extension UITableView { - - func previousIndexPath(of indexPath: IndexPath) -> IndexPath? { - var previousRow: Int = indexPath.row - 1 - var previousSection: Int = indexPath.section - - // Fixing indexPath - if previousRow < 0 { - previousSection -= 1 - if previousSection >= 0 { - previousRow = self.numberOfRows(inSection: previousSection) - 1 - } - } - - guard previousRow >= 0, previousSection >= 0 else { return nil } - return IndexPath(row: previousRow, section: previousSection) - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+Parent.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+Parent.swift deleted file mode 100644 index cf2e63c5e..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+Parent.swift +++ /dev/null @@ -1,99 +0,0 @@ -// -// UIView+Parent.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore - -/** -UIView hierarchy category. -*/ - -@available(iOSApplicationExtension, unavailable) -@MainActor -public extension IQKeyboardExtension where Base: UIView { - - /** - Returns the UIViewController object that is actually the parent of this object. - Most of the time it's the viewController object which actually contains it, - but result may be different if it's viewController is added as childViewController of another viewController. - */ - func parentContainerViewController() -> UIViewController? { - - var matchController: UIViewController? = viewContainingController() - var parentContainerViewController: UIViewController? - - if var navController: UINavigationController = matchController?.navigationController { - - while let parentNav: UINavigationController = navController.navigationController { - navController = parentNav - } - - var parentController: UIViewController = navController - - while let parent: UIViewController = parentController.parent, - !(parent is UINavigationController) && - !(parent is UITabBarController) && - !(parent is UISplitViewController) { - - parentController = parent - } - - if navController == parentController { - parentContainerViewController = navController.topViewController - } else { - parentContainerViewController = parentController - } - } else if let tabController: UITabBarController = matchController?.tabBarController { - let selectedController = tabController.selectedViewController - if let navController: UINavigationController = selectedController as? UINavigationController { - parentContainerViewController = navController.topViewController - } else { - parentContainerViewController = tabController.selectedViewController - } - } else { - while let parent: UIViewController = matchController?.parent, - !(parent is UINavigationController) && - !(parent is UITabBarController) && - !(parent is UISplitViewController) { - - matchController = parent - } - - parentContainerViewController = matchController - } - - if let controller: UIViewController = parentContainerViewController?.iq_parentContainerViewController() { - return controller - } else { - return parentContainerViewController - } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension UIView { - - @available(*, unavailable, renamed: "iq.parentContainerViewController()") - func parentContainerViewController() -> UIViewController? { nil } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+ParentObjc.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+ParentObjc.swift deleted file mode 100644 index 9c0730e19..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+ParentObjc.swift +++ /dev/null @@ -1,31 +0,0 @@ -// -// UIView+ParentObjc.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -@objc public extension UIView { - - func iq_parentContainerViewController() -> UIViewController? { - iq.parentContainerViewController() - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIViewController+ParentContainer.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIViewController+ParentContainer.swift deleted file mode 100644 index 7fc96a958..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIViewController+ParentContainer.swift +++ /dev/null @@ -1,49 +0,0 @@ -// -// UIViewController+ParentContainer.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc extension UIViewController { - - /** - This method is provided to override by viewController's - if the library lifts a viewController which you doesn't want to lift. - This may happen if you have implemented side menu feature - in your app and the library try to lift the side menu controller. - Overriding this method in side menu class to return correct controller should fix the problem. - */ - open func iq_parentContainerViewController() -> UIViewController? { - return self - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc extension UIViewController { - @available(*, unavailable, renamed: "iq_parentContainerViewController()") - open func parentIQContainerViewController() -> UIViewController? { - return self - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManager.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManager.swift deleted file mode 100644 index 4cf109ce4..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManager.swift +++ /dev/null @@ -1,137 +0,0 @@ -// -// IQKeyboardManager+ToolbarManager.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardToolbarManager - -@available(iOSApplicationExtension, unavailable) -// swiftlint:disable line_length -@available(*, deprecated, - message: "Please use `IQKeyboardToolbarManager` independently from https://github.com/hackiftekhar/IQKeyboardToolbarManager") -// swiftlint:enable line_length -@MainActor -@objc public extension IQKeyboardManager { - - @MainActor - private struct AssociatedKeys { - static var toolbarManager: Int = 0 - } - - internal var toolbarManager: IQKeyboardToolbarManager { - IQKeyboardToolbarManager.shared - } - - var enableToolbarDebugging: Bool { - get { toolbarManager.isDebuggingEnabled } - set { toolbarManager.isDebuggingEnabled = newValue } - } - - /** - Automatic add the toolbar functionality. Default is YES. - */ - var enableAutoToolbar: Bool { - get { toolbarManager.isEnabled } - set { toolbarManager.isEnabled = newValue } - } - - /** - Configurations related to the toolbar display over the keyboard. - */ - var toolbarConfiguration: IQKeyboardToolbarConfiguration { - toolbarManager.toolbarConfiguration - } - - // MARK: UISound handling - - /** - If YES, then it plays inputClick sound on next/previous/done click. - */ - var playInputClicks: Bool { - get { toolbarManager.playInputClicks } - set { toolbarManager.playInputClicks = newValue } - } - - /** - Disable automatic toolbar creation within the scope of disabled toolbar viewControllers classes. - Within this scope, 'enableAutoToolbar' property is ignored. Class should be kind of UIViewController. - */ - var disabledToolbarClasses: [UIViewController.Type] { - get { toolbarManager.disabledToolbarClasses } - set { toolbarManager.disabledToolbarClasses = newValue } - } - - /** - Enable automatic toolbar creation within the scope of enabled toolbar viewControllers classes. - Within this scope, 'enableAutoToolbar' property is ignored. Class should be kind of UIViewController. - If same Class is added in disabledToolbarClasses list, then enabledToolbarClasses will be ignore. - */ - var enabledToolbarClasses: [UIViewController.Type] { - get { toolbarManager.enabledToolbarClasses } - set { toolbarManager.enabledToolbarClasses = newValue } - } - - /** - Allowed subclasses of UIView to add all inner textField, - this will allow to navigate between textField contains in different superview. - Class should be kind of UIView. - */ - var deepResponderAllowedContainerClasses: [UIView.Type] { - get { toolbarManager.deepResponderAllowedContainerClasses } - set { toolbarManager.deepResponderAllowedContainerClasses = newValue } - } - - /** reloadInputViews to reload toolbar buttons enable/disable state on the fly Enhancement ID #434. */ - func reloadInputViews() { - toolbarManager.reloadInputViews() - } - - /** - Returns YES if can navigate to previous responder textInputView, otherwise NO. - */ - var canGoPrevious: Bool { - toolbarManager.canGoPrevious - } - - /** - Returns YES if can navigate to next responder textInputViews, otherwise NO. - */ - var canGoNext: Bool { - toolbarManager.canGoNext - } - - /** - Navigate to previous responder textInputViews - */ - @discardableResult - func goPrevious() -> Bool { - toolbarManager.goPrevious() - } - - /** - Navigate to next responder textInputView. - */ - @discardableResult - func goNext() -> Bool { - toolbarManager.goNext() - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManagerDeprecated.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManagerDeprecated.swift deleted file mode 100644 index e6b7321a3..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManagerDeprecated.swift +++ /dev/null @@ -1,177 +0,0 @@ -// -// IQKeyboardManager+ToolbarManagerDeprecated.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardToolbarManager - -// swiftlint:disable unused_setter_value -// swiftlint:disable identifier_name -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardManager { - - @available(*, unavailable, renamed: "playInputClicks") - var shouldPlayInputClicks: Bool { - get { false } - set { } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardManager { - - @available(*, unavailable, renamed: "toolbarConfiguration.manageBehavior") - var toolbarManageBehaviour: IQKeyboardToolbarManageBehavior { - get { .bySubviews } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.useTextInputViewTintColor") - var shouldToolbarUsesTextFieldTintColor: Bool { - get { false } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.tintColor") - var toolbarTintColor: UIColor? { - get { nil } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.barTintColor") - var toolbarBarTintColor: UIColor? { - get { nil } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.previousNextDisplayMode") - var previousNextDisplayMode: IQPreviousNextDisplayMode { - get { .default } - set { } - } - - @available(*, unavailable, renamed: "deepResponderAllowedContainerClasses") - var toolbarPreviousNextAllowedClasses: [UIView.Type] { - get { [] } - set { } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardManager { - @available(*, unavailable, renamed: "toolbarConfiguration.previousBarButtonConfiguration.image", - message: "To change, please assign a new toolbarConfiguration.previousBarButtonConfiguration") - var toolbarPreviousBarButtonItemImage: UIImage? { - get { nil } - set { } - } - @available(*, unavailable, renamed: "toolbarConfiguration.previousBarButtonConfiguration.title", - message: "To change, please assign a new toolbarConfiguration.previousBarButtonConfiguration") - var toolbarPreviousBarButtonItemText: String? { - get { nil } - set { } - } - @available(*, unavailable, renamed: "toolbarConfiguration.previousBarButtonConfiguration.accessibilityLabel", - message: "To change, please assign a new toolbarConfiguration.previousBarButtonConfiguration") - var toolbarPreviousBarButtonItemAccessibilityLabel: String? { - get { nil } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.nextBarButtonConfiguration.image", - message: "To change, please assign a new toolbarConfiguration.nextBarButtonConfiguration") - var toolbarNextBarButtonItemImage: UIImage? { - get { nil } - set { } - } - @available(*, unavailable, renamed: "toolbarConfiguration.nextBarButtonConfiguration.title", - message: "To change, please assign a new toolbarConfiguration.nextBarButtonConfiguration") - var toolbarNextBarButtonItemText: String? { - get { nil } - set { } - } - @available(*, unavailable, renamed: "toolbarConfiguration.nextBarButtonConfiguration.accessibilityLabel", - message: "To change, please assign a new toolbarConfiguration.nextBarButtonConfiguration") - var toolbarNextBarButtonItemAccessibilityLabel: String? { - get { nil } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.doneBarButtonConfiguration.image", - message: "To change, please assign a new toolbarConfiguration.doneBarButtonConfiguration") - var toolbarDoneBarButtonItemImage: UIImage? { - get { nil } - set { } - } - @available(*, unavailable, renamed: "toolbarConfiguration.doneBarButtonConfiguration.title", - message: "To change, please assign a new toolbarConfiguration.doneBarButtonConfiguration") - var toolbarDoneBarButtonItemText: String? { - get { nil } - set { } - } - @available(*, unavailable, renamed: "toolbarConfiguration.doneBarButtonConfiguration.accessibilityLabel", - message: "To change, please assign a new toolbarConfiguration.doneBarButtonConfiguration") - var toolbarDoneBarButtonItemAccessibilityLabel: String? { - get { nil } - set { } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardManager { - - @available(*, unavailable, renamed: "toolbarConfiguration.placeholderConfiguration.accessibilityLabel") - var toolbarTitleBarButtonItemAccessibilityLabel: String? { - get { nil } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.placeholderConfiguration.showPlaceholder") - var shouldShowToolbarPlaceholder: Bool { - get { false } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.placeholderConfiguration.font") - var placeholderFont: UIFont? { - get { nil } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.placeholderConfiguration.color") - var placeholderColor: UIColor? { - get { nil } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.placeholderConfiguration.buttonColor") - var placeholderButtonColor: UIColor? { - get { nil } - set { } - } -} -// swiftlint:enable unused_setter_value -// swiftlint:enable identifier_name diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/PrivacyInfo.xcprivacy b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/PrivacyInfo.xcprivacy deleted file mode 100644 index 90211906c..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,14 +0,0 @@ - - - - - NSPrivacyAccessedAPITypes - - NSPrivacyTrackingDomains - - NSPrivacyCollectedDataTypes - - NSPrivacyTracking - - - diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign.swift deleted file mode 100644 index 5fc408d44..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign.swift +++ /dev/null @@ -1,100 +0,0 @@ -// -// IQKeyboardManager+Resign.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardManager { - - @MainActor - private struct AssociatedKeys { - static var resignHandler: Int = 0 - } - - internal var resignHandler: IQKeyboardResignHandler { - if let object = objc_getAssociatedObject(self, &AssociatedKeys.resignHandler) - as? IQKeyboardResignHandler { - return object - } - - let object: IQKeyboardResignHandler = .init() - objc_setAssociatedObject(self, &AssociatedKeys.resignHandler, - object, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - - return object - } - - /** - Resigns Keyboard on touching outside TextInputView. Default is NO. - */ - var resignOnTouchOutside: Bool { - get { resignHandler.resignOnTouchOutside } - set { resignHandler.resignOnTouchOutside = newValue } - } - - /** TapGesture to resign keyboard on view's touch. - It's a readonly property and exposed only for adding/removing dependencies - if your added gesture does have collision with this one - */ - var resignGesture: UITapGestureRecognizer { - get { resignHandler.resignGesture } - set { resignHandler.resignGesture = newValue } - } - - /** - Disabled classes to ignore resignOnTouchOutside' property, Class should be kind of UIViewController. - */ - var disabledTouchResignedClasses: [UIViewController.Type] { - get { resignHandler.disabledTouchResignedClasses } - set { resignHandler.disabledTouchResignedClasses = newValue } - } - - /** - Enabled classes to forcefully enable 'resignOnTouchOutside' property. - Class should be kind of UIViewController - . If same Class is added in disabledTouchResignedClasses list, then enabledTouchResignedClasses will be ignored. - */ - var enabledTouchResignedClasses: [UIViewController.Type] { - get { resignHandler.enabledTouchResignedClasses } - set { resignHandler.enabledTouchResignedClasses = newValue } - } - - /** - if resignOnTouchOutside is enabled then you can customize the behavior - to not recognize gesture touches on some specific view subclasses. - Class should be kind of UIView. Default is [UIControl, UINavigationBar] - */ - var touchResignedGestureIgnoreClasses: [UIView.Type] { - get { resignHandler.touchResignedGestureIgnoreClasses } - set { resignHandler.touchResignedGestureIgnoreClasses = newValue } - } - - /** - Resigns currently first responder field. - */ - @discardableResult - func resignFirstResponder() -> Bool { - resignHandler.resignFirstResponder() - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign_Deprecated.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign_Deprecated.swift deleted file mode 100644 index b304c728f..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign_Deprecated.swift +++ /dev/null @@ -1,37 +0,0 @@ -// -// IQKeyboardManager+Resign_Deprecated.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -// swiftlint:disable unused_setter_value -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardManager { - - @available(*, unavailable, renamed: "resignOnTouchOutside") - var shouldResignOnTouchOutside: Bool { - get { false } - set { } - } -} -// swiftlint:enable unused_setter_value diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler+Internal.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler+Internal.swift deleted file mode 100644 index 3c59049e7..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler+Internal.swift +++ /dev/null @@ -1,103 +0,0 @@ -// -// IQKeyboardResignHandler+Internal.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore - -@available(iOSApplicationExtension, unavailable) -@MainActor -internal extension IQKeyboardResignHandler { - - func removeTextInputViewObserver() { - textInputViewObserver.unsubscribe(identifier: "IQKeyboardResignHandler") - } - - func addTextInputViewObserver() { - textInputViewObserver.subscribe(identifier: "IQKeyboardResignHandler", - changeHandler: { [weak self] event, textInputView in - guard let self = self else { return } - switch event { - case .beginEditing: - self.resignGesture.isEnabled = self.privateResignOnTouchOutside() - textInputView.window?.addGestureRecognizer(self.resignGesture) - case .endEditing: - textInputView.window?.removeGestureRecognizer(self.resignGesture) - } - }) - } - - func privateResignOnTouchOutside() -> Bool { - - guard let textInputView: any IQTextInputView = textInputViewObserver.textInputView else { - return resignOnTouchOutside - } - - switch textInputView.internalResignOnTouchOutsideMode { - case .default: - guard var controller = (textInputView as UIView).iq.viewContainingController() else { - return resignOnTouchOutside - } - - // If it is searchBar textField embedded in Navigation Bar - if (textInputView as UIView).iq.textFieldSearchBar() != nil, - let navController: UINavigationController = controller as? UINavigationController, - let topController: UIViewController = navController.topViewController { - controller = topController - } - - // If viewController is in enabledTouchResignedClasses, then assuming resignOnTouchOutside is enabled. - let isWithEnabledClass: Bool = enabledTouchResignedClasses.contains(where: { controller.isKind(of: $0) }) - var isEnabled: Bool = resignOnTouchOutside || isWithEnabledClass - - if isEnabled { - - // If viewController is in disabledTouchResignedClasses, - // then assuming resignOnTouchOutside is disable. - if disabledTouchResignedClasses.contains(where: { controller.isKind(of: $0) }) { - isEnabled = false - } else { - let classNameString: String = "\(type(of: controller.self))" - - // _UIAlertControllerTextFieldViewController - if classNameString.contains("UIAlertController"), - classNameString.hasSuffix("TextFieldViewController") { - isEnabled = false - } - } - } - return isEnabled - case .enabled: - return true - case .disabled: - return false - } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -fileprivate extension IQTextInputView { - var internalResignOnTouchOutsideMode: IQEnableMode { - iq.resignOnTouchOutsideMode - } -} diff --git a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler.swift b/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler.swift deleted file mode 100644 index 2ce066798..000000000 --- a/Example/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler.swift +++ /dev/null @@ -1,149 +0,0 @@ -// -// IQKeyboardResignHandler.swift -// https://github.com/hackiftekhar/IQKeyboardManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore -import IQTextInputViewNotification - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers internal final class IQKeyboardResignHandler: NSObject { - - let textInputViewObserver: IQTextInputViewNotification = .init() - - /** - Resigns Keyboard on touching outside of TextInputView. Default is NO. - */ - public var resignOnTouchOutside: Bool = false { - - didSet { - resignGesture.isEnabled = privateResignOnTouchOutside() - - IQKeyboardManager.shared.showLog("resignOnTouchOutside: \(resignOnTouchOutside ? "Yes" : "No")") - } - } - - /** TapGesture to resign keyboard on view's touch. - It's a readonly property and exposed only for adding/removing dependencies - if your added gesture does have collision with this one - */ - public var resignGesture: UITapGestureRecognizer = .init() - - /** - Disabled classes to ignore resignOnTouchOutside' property, Class should be kind of UIViewController. - */ - public var disabledTouchResignedClasses: [UIViewController.Type] = [ - UIAlertController.self, - UIInputViewController.self - ] - - /** - Enabled classes to forcefully enable 'resignOnTouchOutside' property. - Class should be kind of UIViewController - . If same Class is added in disabledTouchResignedClasses list, then enabledTouchResignedClasses will be ignored. - */ - public var enabledTouchResignedClasses: [UIViewController.Type] = [] - - /** - if resignOnTouchOutside is enabled then you can customize the behavior - to not recognize gesture touches on some specific view subclasses. - Class should be kind of UIView. Default is [UIControl, UINavigationBar] - */ - public var touchResignedGestureIgnoreClasses: [UIView.Type] = [ - UIControl.self, - UINavigationBar.self - ] - - /** - Resigns currently first responder field. - */ - @discardableResult - public func resignFirstResponder() -> Bool { - - guard let textInputView: any IQTextInputView = textInputViewObserver.textInputView else { - return false - } - - // Resigning first responder - guard textInputView.resignFirstResponder() else { -// showLog("Refuses to resign first responder: \(textInputView)") - // If it refuses then becoming it as first responder again. (Bug ID: #96) - // If it refuses to resign then becoming it first responder again for getting notifications callback. - textInputView.becomeFirstResponder() - return false - } - return true - } - - public override init() { - super.init() - - resignGesture.addTarget(self, action: #selector(self.tapRecognized(_:))) - resignGesture.cancelsTouchesInView = false - resignGesture.delegate = self - resignGesture.isEnabled = false - - addTextInputViewObserver() - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc extension IQKeyboardResignHandler: UIGestureRecognizerDelegate { - - /** Resigning on tap gesture. (Enhancement ID: #14)*/ - private func tapRecognized(_ gesture: UITapGestureRecognizer) { - - if gesture.state == .ended { - - // Resigning currently responder textInputView. - resignFirstResponder() - } - } - - /** Note: returning YES is guaranteed to allow simultaneous recognition. - returning NO is not guaranteed to prevent simultaneous recognition, - as the other gesture's delegate may return YES. - */ - public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, - shouldRecognizeSimultaneouslyWith - otherGestureRecognizer: UIGestureRecognizer) -> Bool { - return false - } - - /** - To not detect touch events in a subclass of UIControl, - these may have added their own selector for specific work - */ - public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, - shouldReceive touch: UITouch) -> Bool { - // (Bug ID: #145) - // Should not recognize gesture if the clicked view is either UIControl or UINavigationBar( - Icon -

- -[![LICENSE.md](https://img.shields.io/github/license/hackiftekhar/IQKeyboardManager.svg)]([https://travis-ci.org/hackiftekhar/IQKeyboardManager](https://github.com/hackiftekhar/IQKeyboardManager/blob/master/LICENSE.md)) -[![Build Status](https://travis-ci.org/hackiftekhar/IQKeyboardManager.svg)](https://travis-ci.org/hackiftekhar/IQKeyboardManager) -![Platform iOS](https://img.shields.io/badge/Platform-iOS-blue.svg?style=fla) -[![CocoaPods](https://img.shields.io/cocoapods/v/IQKeyboardManagerSwift.svg)](http://cocoadocs.org/docsets/IQKeyboardManagerSwift) -[![Github tag](https://img.shields.io/github/tag/hackiftekhar/iqkeyboardmanager.svg)](https://github.com/hackiftekhar/IQKeyboardManager/tags) - -## Major updates have arrived! - -#### First of all, Thank You for using IQKeyboardManager! -It's been 12 years since it's first release in 2013. The library has grown a lot and we have added many new features since then. - -#### Motivation -Recently while working on bug fixes, I realized that in 2013 there were only 2 files IQKeyboardManager.{h,m} in Objective-C version, while now in Swift version there were 50+ files (version 7.x.x) which makes the debugging a lot difficult than before. Also, some of the features are rarely used in apps. - -#### New Idea -I realized that some of the features are not tightly linked to each other and can be moved out of the library easily. For Example:- -- `IQTextView` class -- `IQKeyboardListener` class -- `IQTextFieldViewListener` class -- `IQReturnKeyHandler` class -- Toolbar related features like `IQToolbar` and `IQBarButtonItem` and their support classes. -- ... - -Moving above things out will make the library more lightweight and user can plug in/out features as per their needs. - -#### Action Plan Execution -I had decided to move loosely linked features out, and publish them to their separate github repo, and use them as dependencies as per requirements. - -- [x] Published [IQKeyboardCore](https://github.com/hackiftekhar/IQKeyboardCore) - - This contains necessary classes and functions to be used by `IQKeyboardManager` related libraries. Please note that you shouldn't directly install this as dependency -- [x] Published [IQTextView](https://github.com/hackiftekhar/IQTextView) - - This is purely separated a separate library now. - - This is usually used for showing placeholder in `UITextView`. -- [x] Published [IQKeyboardReturnManager](https://github.com/hackiftekhar/IQKeyboardReturnManager) - - This is a renamed of `IQReturnKeyHandler`. This is also separated from the library and can be used independently. - - This depends on `IQKeyboardCore` for `TextInputView` type confirmation. -- [x] Published [IQTextInputViewNotification](https://github.com/hackiftekhar/IQTextInputViewNotification) - - This is a renamed of `IQTextFieldViewListener`. This can be used independently to subscribe/unsubscribe for `UITextView`/`UITextField` beginEditing/endEditing events. - - This depends on the `IQKeyboardCore` to add some additional customized features for `UITextView`/`UITextField`. -- [x] Published [IQKeyboardToolbar](https://github.com/hackiftekhar/IQKeyboardToolbar) - - This contains toolbar related classes like `IQKeyboardToolbar`, `IQBarButtonItem`, `IQTitleBarButtonItems`, their configuration classes and other useful functions to add toolbar in keyboard. This can be used independently to add toolbar in keyboard. - - This depends on the `IQKeyboardCore` to add some additional customized features for `UITextView`/`UITextField`. -- [x] Published [IQKeyboardToolbarManager](https://github.com/hackiftekhar/IQKeyboardToolbarManager) - - This is something similar to `IQKeyboardManager`. This has been moved out of the library as a huge update. - - This depends on the `IQTextInputViewNotification` to know which textField is currently in focus. - - This depends on the `IQKeyboardToolbar` to add/remove toolbars over keyboard. -- [x] Published [IQKeyboardNotification](https://github.com/hackiftekhar/IQKeyboardNotification) - - This is a renamed of `IQKeyboardListener`. This can be used independently to subscribe/unsubscribe for keyboard events. -- [x] Published [IQKeyboardManager](https://github.com/hackiftekhar/IQKeyboardManager) 7.2.0 for all the current support without any compilation error but by deprecating most of the things which are moved out of the library. - - This now only contains functions for handling distance between `UITextView`/`UITextField` and their useful functions. - - This depends on the `IQKeyboardNotification` to get keyboard notification callbacks. - - This depends on the `IQTextInputViewNotification` to know which textField is currently in focus. - - Now there are subspecs support since 7.2.0. - - `IQKeyboardManagerSwift/Appearance` - - `IQKeyboardManagerSwift/IQKeyboardReturnManager` - - `IQKeyboardManagerSwift/IQKeyboardToolbarManager` - - `IQKeyboardManagerSwift/IQTextView` - - `IQKeyboardManagerSwift/Resign` -- [x] Published [IQKeyboardManager](https://github.com/hackiftekhar/IQKeyboardManager) 8.0.0 by marking deprecated classes as unavailable. - - In this release, we removed deprecated classes and marking some of them as unavailable for easier migration. -- [ ] Bug fixes which may have arrived due to the library segregation. - - We need your support on this one. - -## Introduction -While developing iOS apps, we often run into issues where the iPhone keyboard slides up and covers the `UITextField/UITextView`. `IQKeyboardManager` allows you to prevent this issue of keyboard sliding up and covering `UITextField/UITextView` without needing you to write any code or make any additional setup. To use `IQKeyboardManager` you simply need to add source files to your project. - - -## Key Features - -1) `One Lines of Code` - -2) `Works Automatically` - -3) `No More UIScrollView` - -4) `No More Subclasses` - -5) `No More Manual Work` - -6) `No More #imports` - -`IQKeyboardManager` works on all orientations, and with the toolbar. It also has nice optional features allowing you to customize the distance from the text field, behavior of previous, next and done buttons in the keyboard toolbar, play sound when the user navigates through the form and more. - - -## Screenshot -[![Screenshot 1](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/README_Screenshot1.png)](http://youtu.be/6nhLw6hju2A) -[![Screenshot 2](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/README_Screenshot2.png)](http://youtu.be/6nhLw6hju2A) -[![Screenshot 3](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/README_Screenshot3.png)](http://youtu.be/6nhLw6hju2A) -[![Screenshot 4](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/README_Screenshot4.png)](http://youtu.be/6nhLw6hju2A) -[![Screenshot 5](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/README_Screenshot5.png)](http://youtu.be/6nhLw6hju2A) - -## GIF animation -[![IQKeyboardManager](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/v3.3.0/Screenshot/IQKeyboardManager.gif)](http://youtu.be/6nhLw6hju2A) - -## Video - - - -## Tutorial video by @rebeloper ([#1135](https://github.com/hackiftekhar/IQKeyboardManager/issues/1135)) - -@rebeloper demonstrated two videos on how to implement **IQKeyboardManager** at it's core: - - - -https://www.youtube.com/playlist?list=PL_csAAO9PQ8aTL87XnueOXi3RpWE2m_8v - -## Warning - -- **If you're planning to build SDK/library/framework and want to handle UITextField/UITextView with IQKeyboardManager then you're totally going the wrong way.** I would never suggest to add **IQKeyboardManager** as **dependency/adding/shipping** with any third-party library. Instead of adding **IQKeyboardManager** you should implement your own solution to achieve same kind of results. **IQKeyboardManager** is totally designed for projects to help developers for their convenience, it's not designed for **adding/dependency/shipping** with any **third-party library**, because **doing this could block adoption by other developers for their projects as well (who are not using IQKeyboardManager and have implemented their custom solution to handle UITextField/UITextView in the project).** -- If **IQKeyboardManager** conflicts with other **third-party library**, then it's **developer responsibility** to **enable/disable IQKeyboardManager** when **presenting/dismissing** third-party library UI. Third-party libraries are not responsible to handle IQKeyboardManager. - -## Requirements - -| | Language | Minimum iOS Target | Minimum Xcode Version | -|------------------------|----------|--------------------|-----------------------| -| IQKeyboardManager | Obj-C | iOS 13.0 | Xcode 13 | -| IQKeyboardManagerSwift | Swift | iOS 13.0 | Xcode 13 | -| Demo Project | | | Xcode 15 | - -#### Swift versions support - -| Swift | Xcode | IQKeyboardManagerSwift | -|-------------------|-------|------------------------| -| 5.9, 5.8, 5.7 | 16 | >= 7.0.0 | -| 5.9, 5.8, 5.7, 5.6| 15 | >= 7.0.0 | -| 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 4.2| 11 | >= 6.5.7 | -| 5.1, 5.0, 4.2, 4.0, 3.2, 3.0| 11 | >= 6.5.0 | -| 5.0,4.2, 4.0, 3.2, 3.0| 10.2 | >= 6.2.1 | -| 4.2, 4.0, 3.2, 3.0| 10.0 | >= 6.0.4 | -| 4.0, 3.2, 3.0 | 9.0 | 5.0.0 | - - -Installation -========================== - -#### CocoaPods - -***IQKeyboardManager (Objective-C):*** To install it, simply add the following line to your Podfile: ([#9](https://github.com/hackiftekhar/IQKeyboardManager/issues/9)) - -```ruby -pod 'IQKeyboardManager' #iOS13 and later -``` - -***IQKeyboardManager (Swift):*** To install it, simply add the following line to your Podfile: ([#236](https://github.com/hackiftekhar/IQKeyboardManager/issues/236)) - -```ruby -pod 'IQKeyboardManagerSwift' -``` - -*Or you can choose the version you need based on Swift support table from [Requirements](README.md#requirements)* - -```ruby -pod 'IQKeyboardManagerSwift', '8.0.0' -``` - -#### Carthage - -To integrate `IQKeyboardManger` or `IQKeyboardManagerSwift` into your Xcode project using Carthage, add the following line to your `Cartfile`: - -```ogdl -github "hackiftekhar/IQKeyboardManager" -``` - -Run `carthage update --use-xcframeworks` to build the frameworks and drag the appropriate framework (`IQKeyboardManager.xcframework` or `IQKeyboardManagerSwift.xcframework`) into your Xcode project based on your need. Make sure to add only one framework, not both. - -#### Swift Package Manager (SPM) - -To install `IQKeyboardManagerSwift` package via Xcode - - * Go to File -> Swift Packages -> Add Package Dependency... - * Then search for https://github.com/hackiftekhar/IQKeyboardManager.git - * And choose the version you want - -#### Source Code - -***IQKeyboardManager (Objective-C):*** Just ***drag and drop*** `IQKeyboardManager` directory from demo project to your project. That's it. - -***IQKeyboardManager (Swift):*** Source code installation is not supported (since 7.2.0) because now the library depends on some other independent libraries. Due to this you may face compilation issues. - -#### Basic Usage - -In `AppDelegate.swift`, just `import IQKeyboardManagerSwift` framework and enable IQKeyboardManager. - -```swift -import IQKeyboardManagerSwift - -@UIApplicationMain -class AppDelegate: UIResponder, UIApplicationDelegate { - - var window: UIWindow? - - func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { - - IQKeyboardManager.shared.isEnabled = true - - return true - } -} -``` - - - -Migration Guide -========================== -- [IQKeyboardManager 8.0.0 Migration Guide](https://github.com/hackiftekhar/IQKeyboardManager/blob/master/Documentation/MIGRATION%20GUIDE%207.0%20TO%208.0.md) - -Other Links -========================== - -- [Known Issues](https://github.com/hackiftekhar/IQKeyboardManager/wiki/Known-Issues) -- [Manual Management Tweaks](https://github.com/hackiftekhar/IQKeyboardManager/wiki/Manual-Management) -- [Properties and functions usage](https://github.com/hackiftekhar/IQKeyboardManager/wiki/Properties-&-Functions) - -## Flow Diagram -[![IQKeyboardManager CFD](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/IQKeyboardManagerFlowDiagram.jpg)](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/master/Screenshot/IQKeyboardManagerFlowDiagram.jpg) - -If you would like to see detailed Flow diagram then check [Detailed Flow Diagram](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardManager/v3.3.0/Screenshot/IQKeyboardManagerCFD.jpg). - - -LICENSE ---- -Distributed under the MIT License. - -Contributions ---- -Any contribution is more than welcome! You can contribute through pull requests and issues on GitHub. - -Author ---- -If you wish to contact me, email at: hack.iftekhar@gmail.com diff --git a/Example/Pods/IQKeyboardNotification/IQKeyboardNotification/Assets/PrivacyInfo.xcprivacy b/Example/Pods/IQKeyboardNotification/IQKeyboardNotification/Assets/PrivacyInfo.xcprivacy deleted file mode 100644 index 90211906c..000000000 --- a/Example/Pods/IQKeyboardNotification/IQKeyboardNotification/Assets/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,14 +0,0 @@ - - - - - NSPrivacyAccessedAPITypes - - NSPrivacyTrackingDomains - - NSPrivacyCollectedDataTypes - - NSPrivacyTracking - - - diff --git a/Example/Pods/IQKeyboardNotification/IQKeyboardNotification/Classes/IQKeyboardInfo.swift b/Example/Pods/IQKeyboardNotification/IQKeyboardNotification/Classes/IQKeyboardInfo.swift deleted file mode 100644 index 0f6243de2..000000000 --- a/Example/Pods/IQKeyboardNotification/IQKeyboardNotification/Classes/IQKeyboardInfo.swift +++ /dev/null @@ -1,227 +0,0 @@ -// -// IQKeyboardInfo.swift -// https://github.com/hackiftekhar/IQKeyboardNotification -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -@available(iOSApplicationExtension, unavailable) -public struct IQKeyboardInfo: Equatable { - nonisolated public static func == (lhs: Self, rhs: Self) -> Bool { - lhs.event == rhs.event && - lhs.endFrame.equalTo(rhs.endFrame) - } - - @objc public enum Event: Int, CaseIterable { - case willShow - case didShow - case willChangeFrame - case didChangeFrame - case willHide - case didHide - - @MainActor - public var notification: Notification.Name { - switch self { - case .willShow: - return UIResponder.keyboardWillShowNotification - case .didShow: - return UIResponder.keyboardDidShowNotification - case .willChangeFrame: - return UIResponder.keyboardWillChangeFrameNotification - case .didChangeFrame: - return UIResponder.keyboardDidChangeFrameNotification - case .willHide: - return UIResponder.keyboardWillHideNotification - case .didHide: - return UIResponder.keyboardDidHideNotification - } - } - } - - public let event: Event - - /// `keyboardIsLocalUserInfoKey`. - public let isLocal: Bool - - /// `UIKeyboardFrameBeginUserInfoKey`. - public let beginFrame: CGRect - - /// `UIKeyboardFrameEndUserInfoKey`. - public let endFrame: CGRect - - /// `UIKeyboardAnimationDurationUserInfoKey`. - public let animationDuration: TimeInterval - - /// `UIKeyboardAnimationCurveUserInfoKey`. - public let animationCurve: UIView.AnimationCurve - - public var animationOptions: UIView.AnimationOptions { - return UIView.AnimationOptions(rawValue: UInt(animationCurve.rawValue << 16)) - } - - public var isVisible: Bool { - endFrame.height > 0 - } - - internal init(notification: Notification?, event: Event) { - self.event = event - - let screenBounds: CGRect - if let screen: UIScreen = notification?.object as? UIScreen { - screenBounds = screen.bounds - } else { - screenBounds = UIScreen.main.bounds - } - - if let info: [AnyHashable: Any] = notification?.userInfo { - - if let value = info[UIResponder.keyboardIsLocalUserInfoKey] as? Bool { - isLocal = value - } else { - isLocal = true - } - - // Getting keyboard animation. - if let curveValue: Int = info[UIResponder.keyboardAnimationCurveUserInfoKey] as? Int, - let curve: UIView.AnimationCurve = UIView.AnimationCurve(rawValue: curveValue) { - animationCurve = curve - } else { - animationCurve = .easeOut - } - - // Getting keyboard animation duration - if let duration: TimeInterval = info[UIResponder.keyboardAnimationDurationUserInfoKey] as? TimeInterval, - duration != 0.0 { - animationDuration = duration - } else { - animationDuration = 0.25 - } - - if let beginKeyboardFrame: CGRect = info[UIResponder.keyboardFrameBeginUserInfoKey] as? CGRect { - beginFrame = Self.getKeyboardFrame(of: beginKeyboardFrame, inScreenBounds: screenBounds) - } else { - beginFrame = CGRect(x: 0, y: screenBounds.height, width: screenBounds.width, height: 0) - } - - if let endKeyboardFrame: CGRect = info[UIResponder.keyboardFrameEndUserInfoKey] as? CGRect { - endFrame = Self.getKeyboardFrame(of: endKeyboardFrame, inScreenBounds: screenBounds) - } else { - endFrame = CGRect(x: 0, y: screenBounds.height, width: screenBounds.width, height: 0) - } - } else { - isLocal = true - animationCurve = .easeOut - animationDuration = 0.25 - beginFrame = CGRect(x: 0, y: screenBounds.height, width: screenBounds.width, height: 0) - endFrame = CGRect(x: 0, y: screenBounds.height, width: screenBounds.width, height: 0) - } - } - - @MainActor - public func animate(alongsideTransition transition: @escaping () -> Void, completion: (() -> Void)? = nil) { - - /* ******* */ -// UIView.beginAnimations(nil, context: nil) -// UIView.setAnimationDuration(duration) -// UIView.setAnimationCurve(curve) -// UIView.setAnimationBeginsFromCurrentState(true) -// UIView.setAnimationDelegate(self) -// UIView.setAnimationDidStop(#selector(UIViewController.keyboardAnimationDidStop(_:finished:context:))) -// -// keyboardStateDelegate?.keyboardTransitionAnimation(state) -// -// UIView.commitAnimations() - - /* ******* */ -// if let timing = UIView.AnimationCurve.RawValue(exactly: animationCurve.rawValue), -// let curve = UIView.AnimationCurve(rawValue: timing) { -// let animator = UIViewPropertyAnimator(duration: animationDuration, curve: curve) { -// transition() -// } -// animator.addCompletion { _ in -// completion?() -// } -// animator.isUserInteractionEnabled = true -// animator.startAnimation() -// } else { - var animationOptions: UIView.AnimationOptions = self.animationOptions - animationOptions.formUnion(.allowUserInteraction) - animationOptions.formUnion(.beginFromCurrentState) - UIView.animate(withDuration: animationDuration, delay: 0, - options: animationOptions, - animations: transition, - completion: { _ in - completion?() - }) -// } - } -} - -@available(iOSApplicationExtension, unavailable) -private extension IQKeyboardInfo { - static func getKeyboardFrame(of rect: CGRect, inScreenBounds screenBounds: CGRect) -> CGRect { - var finalFrame: CGRect = rect - // If this is floating keyboard - if finalFrame.width < screenBounds.width, - finalFrame.maxY < screenBounds.height { - finalFrame.size = CGSize(width: finalFrame.size.width, height: 0) - } else { - // (Bug ID: #469) (Bug ID: #381) (Bug ID: #1506) - // Calculating actual keyboard covered size respect to window, - // keyboard frame may be different when hardware keyboard is attached - let keyboardHeight = CGFloat.maximum(screenBounds.height - finalFrame.minY, 0) - finalFrame.size = CGSize(width: finalFrame.size.width, height: keyboardHeight) - } - - return finalFrame - } -} - -@available(iOSApplicationExtension, unavailable) -@objcMembers public class IQKeyboardInfoObjC: NSObject { - private let wrappedValue: IQKeyboardInfo - - public var event: IQKeyboardInfo.Event { wrappedValue.event } - - public var isLocal: Bool { wrappedValue.isLocal } - - public var beginFrame: CGRect { wrappedValue.beginFrame } - - public var endFrame: CGRect { wrappedValue.endFrame } - - public var animationDuration: TimeInterval { wrappedValue.animationDuration } - - public var animationCurve: UIView.AnimationCurve { wrappedValue.animationCurve } - - public var animationOptions: UIView.AnimationOptions { wrappedValue.animationOptions } - - public var isVisible: Bool { wrappedValue.isVisible } - - init(wrappedValue: IQKeyboardInfo){ - self.wrappedValue = wrappedValue - } - - @MainActor - public func animate(alongsideTransition transition: @escaping () -> Void, completion: (() -> Void)? = nil) { - wrappedValue.animate(alongsideTransition: transition, completion: completion) - } -} diff --git a/Example/Pods/IQKeyboardNotification/IQKeyboardNotification/Classes/IQKeyboardNotification.swift b/Example/Pods/IQKeyboardNotification/IQKeyboardNotification/Classes/IQKeyboardNotification.swift deleted file mode 100644 index ba4edb6a3..000000000 --- a/Example/Pods/IQKeyboardNotification/IQKeyboardNotification/Classes/IQKeyboardNotification.swift +++ /dev/null @@ -1,149 +0,0 @@ -// -// IQKeyboardNotification.swift -// https://github.com/hackiftekhar/IQKeyboardNotification -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import Combine - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers public final class IQKeyboardNotification: NSObject { - - private var storage: Set = [] - - private var eventObservers: [IQKeyboardInfo.Event: [AnyHashable: SizeCompletion]] = [:] - - public private(set) var oldKeyboardInfo: IQKeyboardInfo - - public private(set) var keyboardInfo: IQKeyboardInfo { - didSet { - guard keyboardInfo != oldValue else { return } - oldKeyboardInfo = oldValue - sendKeyboardInfo(info: keyboardInfo) - } - } - - public var isVisible: Bool { - keyboardInfo.isVisible - } - - public var frame: CGRect { - keyboardInfo.endFrame - } - - public override init() { - keyboardInfo = IQKeyboardInfo(notification: nil, event: .didHide) - oldKeyboardInfo = keyboardInfo - super.init() - - // Registering for keyboard notification. - for event in IQKeyboardInfo.Event.allCases { - NotificationCenter.default.publisher(for: event.notification) - .map({ IQKeyboardInfo(notification: $0, event: event) }) - .assign(to: \.keyboardInfo, on: self) - .store(in: &storage) - } - } - - public func animate(alongsideTransition transition: @escaping () -> Void, completion: (() -> Void)? = nil) { - keyboardInfo.animate(alongsideTransition: transition, completion: completion) - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -public extension IQKeyboardNotification { - - typealias SizeCompletion = (_ event: IQKeyboardInfo.Event, _ endFrame: CGRect) -> Void - - func subscribe(for events: [IQKeyboardInfo.Event], - identifier: AnyHashable, changeHandler: @escaping SizeCompletion) { - - for event in events { - var existingObservers: [AnyHashable: SizeCompletion] = eventObservers[event] ?? [:] - existingObservers[identifier] = changeHandler - eventObservers[event] = existingObservers - } - - // If current event is the one user is subscribed to, then call changeHandler immediately for the first time. - if events.contains(keyboardInfo.event) { - changeHandler(keyboardInfo.event, keyboardInfo.endFrame) - } - } - - func unsubscribe(for events: [IQKeyboardInfo.Event], identifier: AnyHashable) { - - for event in events { - var existingObservers: [AnyHashable: SizeCompletion] = eventObservers[event] ?? [:] - existingObservers[identifier] = nil - eventObservers[event] = existingObservers - } - } - - func isSubscribed(for event: IQKeyboardInfo.Event? = nil, identifier: AnyHashable) -> Bool { - if let event = event { - guard let observers = eventObservers[event], !observers.isEmpty else { return false } - return observers[identifier] != nil - } else { - - for event in IQKeyboardInfo.Event.allCases { - let observers = eventObservers[event] ?? [:] - if observers[identifier] != nil { - return true - } - } - return false - } - } - - private func sendKeyboardInfo(info: IQKeyboardInfo) { - - guard let observers = eventObservers[info.event], !observers.isEmpty else { return } - - let endFrame: CGRect = info.endFrame - - for block in observers.values { - block(info.event, endFrame) - } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardNotification { - - var oldKeyboardInfoObjc: IQKeyboardInfoObjC { IQKeyboardInfoObjC(wrappedValue: oldKeyboardInfo) } - - var keyboardInfoObjc: IQKeyboardInfoObjC { IQKeyboardInfoObjC(wrappedValue: keyboardInfo) } - - func subscribe(identifier: AnyHashable, changeHandler: @escaping SizeCompletion) { - subscribe(for: IQKeyboardInfo.Event.allCases, identifier: identifier, changeHandler: changeHandler) - } - - func unsubscribe(identifier: AnyHashable) { - unsubscribe(for: IQKeyboardInfo.Event.allCases, identifier: identifier) - } - - func isSubscribed(identifier: AnyHashable) -> Bool { - isSubscribed(for: nil, identifier: identifier) - } -} diff --git a/Example/Pods/IQKeyboardNotification/LICENSE b/Example/Pods/IQKeyboardNotification/LICENSE deleted file mode 100644 index 5d8eb9642..000000000 --- a/Example/Pods/IQKeyboardNotification/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Example/Pods/IQKeyboardNotification/README.md b/Example/Pods/IQKeyboardNotification/README.md deleted file mode 100644 index 243db8029..000000000 --- a/Example/Pods/IQKeyboardNotification/README.md +++ /dev/null @@ -1,36 +0,0 @@ -# IQKeyboardNotification -Lightweight library to observe keyboard events with ease. - -[![CI Status](https://img.shields.io/travis/hackiftekhar/IQKeyboardNotification.svg?style=flat)](https://travis-ci.org/hackiftekhar/IQKeyboardNotification) -[![Version](https://img.shields.io/cocoapods/v/IQKeyboardNotification.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardNotification) -[![License](https://img.shields.io/cocoapods/l/IQKeyboardNotification.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardNotification) -[![Platform](https://img.shields.io/cocoapods/p/IQKeyboardNotification.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardNotification) - -![Screenshot](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardNotification/master/Screenshot/IQKeyboardNotificationScreenshot.png) - -## Example - -To run the example project, clone the repo, and run `pod install` from the Example directory first. - -## Requirements - -## Installation - -IQKeyboardNotification is available through [CocoaPods](https://cocoapods.org). To install -it, simply add the following line to your Podfile: - -```ruby -pod 'IQKeyboardNotification' -``` - -## Author - -Iftekhar Qurashi hack.iftekhar@gmail.com - -## Flow - -![Screenshot](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardNotification/master/Screenshot/FlowDiagram.jpg) - -## License - -IQKeyboardNotification is available under the MIT license. See the LICENSE file for more info. diff --git a/Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Assets/PrivacyInfo.xcprivacy b/Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Assets/PrivacyInfo.xcprivacy deleted file mode 100644 index 90211906c..000000000 --- a/Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Assets/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,14 +0,0 @@ - - - - - NSPrivacyAccessedAPITypes - - NSPrivacyTrackingDomains - - NSPrivacyCollectedDataTypes - - NSPrivacyTracking - - - diff --git a/Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextFieldDelegate.swift b/Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextFieldDelegate.swift deleted file mode 100644 index c3894a8c5..000000000 --- a/Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextFieldDelegate.swift +++ /dev/null @@ -1,154 +0,0 @@ -// -// IQKeyboardReturnManager+UITextFieldDelegate.swift -// https://github.com/hackiftekhar/IQKeyboardReturnManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -// MARK: UITextFieldDelegate -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc extension IQKeyboardReturnManager: UITextFieldDelegate { - - public func textFieldShouldBeginEditing(_ textField: UITextField) -> Bool { - - var returnValue: Bool = true - - if delegate == nil, - let textFieldDelegate: any UITextFieldDelegate = textInputViewCachedInfo(textField)?.textFieldDelegate { - if textFieldDelegate.responds(to: #selector((any UITextFieldDelegate).textFieldShouldBeginEditing(_:))) { - returnValue = textFieldDelegate.textFieldShouldBeginEditing?(textField) ?? false - } - } - - if returnValue { - updateReturnKey(textInputView: textField) - } - - return returnValue - } - - public func textFieldShouldEndEditing(_ textField: UITextField) -> Bool { - - guard delegate == nil else { return true } - - if let textFieldDelegate: any UITextFieldDelegate = textInputViewCachedInfo(textField)?.textFieldDelegate { - if textFieldDelegate.responds(to: #selector((any UITextFieldDelegate).textFieldShouldEndEditing(_:))) { - return textFieldDelegate.textFieldShouldEndEditing?(textField) ?? false - } - } - - return true - } - - public func textFieldDidBeginEditing(_ textField: UITextField) { - - var aDelegate: (any UITextFieldDelegate)? = delegate - - if aDelegate == nil { - - if let model: IQTextInputViewInfoModel = textInputViewCachedInfo(textField) { - aDelegate = model.textFieldDelegate - } - } - - aDelegate?.textFieldDidBeginEditing?(textField) - } - - public func textFieldDidEndEditing(_ textField: UITextField) { - - var aDelegate: (any UITextFieldDelegate)? = delegate - - if aDelegate == nil { - - if let model: IQTextInputViewInfoModel = textInputViewCachedInfo(textField) { - aDelegate = model.textFieldDelegate - } - } - - aDelegate?.textFieldDidEndEditing?(textField) - } - - public func textFieldDidEndEditing(_ textField: UITextField, reason: UITextField.DidEndEditingReason) { - - var aDelegate: (any UITextFieldDelegate)? = delegate - - if aDelegate == nil { - - if let model: IQTextInputViewInfoModel = textInputViewCachedInfo(textField) { - aDelegate = model.textFieldDelegate - } - } - - aDelegate?.textFieldDidEndEditing?(textField, reason: reason) - } - - public func textField(_ textField: UITextField, - shouldChangeCharactersIn range: NSRange, - replacementString string: String) -> Bool { - - guard delegate == nil else { return true } - - if let textFieldDelegate: any UITextFieldDelegate = textInputViewCachedInfo(textField)?.textFieldDelegate { - let selector: Selector = #selector((any UITextFieldDelegate).textField(_:shouldChangeCharactersIn: - replacementString:)) - if textFieldDelegate.responds(to: selector) { - return textFieldDelegate.textField?(textField, - shouldChangeCharactersIn: range, - replacementString: string) ?? false - } - } - return true - } - - public func textFieldShouldClear(_ textField: UITextField) -> Bool { - - guard delegate == nil else { return true } - - if let textFieldDelegate: any UITextFieldDelegate = textInputViewCachedInfo(textField)?.textFieldDelegate { - if textFieldDelegate.responds(to: #selector((any UITextFieldDelegate).textFieldShouldClear(_:))) { - return textFieldDelegate.textFieldShouldClear?(textField) ?? false - } - } - - return true - } - - public func textFieldShouldReturn(_ textField: UITextField) -> Bool { - - guard delegate == nil else { return true } - - var isReturn: Bool = true - - if let textFieldDelegate: any UITextFieldDelegate = textInputViewCachedInfo(textField)?.textFieldDelegate { - if textFieldDelegate.responds(to: #selector((any UITextFieldDelegate).textFieldShouldReturn(_:))) { - isReturn = textFieldDelegate.textFieldShouldReturn?(textField) ?? false - } - } - - if isReturn { - goToNextResponderOrResign(from: textField) - return true - } else { - return goToNextResponderOrResign(from: textField) - } - } -} diff --git a/Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextViewDelegate.swift b/Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextViewDelegate.swift deleted file mode 100644 index 888ebbef3..000000000 --- a/Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextViewDelegate.swift +++ /dev/null @@ -1,398 +0,0 @@ -// -// IQKeyboardReturnManager+UITextViewDelegate.swift -// https://github.com/hackiftekhar/IQKeyboardReturnManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -// MARK: UITextViewDelegate -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc extension IQKeyboardReturnManager: UITextViewDelegate { - - public func textViewShouldBeginEditing(_ textView: UITextView) -> Bool { - - var returnValue: Bool = true - - if delegate == nil, - let textViewDelegate: any UITextViewDelegate = textInputViewCachedInfo(textView)?.textViewDelegate { - if textViewDelegate.responds(to: #selector((any UITextViewDelegate).textViewShouldBeginEditing(_:))) { - returnValue = textViewDelegate.textViewShouldBeginEditing?(textView) ?? false - } - } - - if returnValue { - updateReturnKey(textInputView: textView) - } - - return returnValue - } - - public func textViewShouldEndEditing(_ textView: UITextView) -> Bool { - - guard delegate == nil else { return true } - - if let textViewDelegate: any UITextViewDelegate = textInputViewCachedInfo(textView)?.textViewDelegate { - if textViewDelegate.responds(to: #selector((any UITextViewDelegate).textViewShouldEndEditing(_:))) { - return textViewDelegate.textViewShouldEndEditing?(textView) ?? false - } - } - - return true - } - - public func textViewDidBeginEditing(_ textView: UITextView) { - - var aDelegate: (any UITextViewDelegate)? = delegate - - if aDelegate == nil { - - if let model: IQTextInputViewInfoModel = textInputViewCachedInfo(textView) { - aDelegate = model.textViewDelegate - } - } - - aDelegate?.textViewDidBeginEditing?(textView) - } - - public func textViewDidEndEditing(_ textView: UITextView) { - - var aDelegate: (any UITextViewDelegate)? = delegate - - if aDelegate == nil { - - if let model: IQTextInputViewInfoModel = textInputViewCachedInfo(textView) { - aDelegate = model.textViewDelegate - } - } - - aDelegate?.textViewDidEndEditing?(textView) - } - - public func textView(_ textView: UITextView, - shouldChangeTextIn range: NSRange, - replacementText text: String) -> Bool { - - var shouldChange = true - - if delegate == nil { - - if let textViewDelegate: any UITextViewDelegate = textInputViewCachedInfo(textView)?.textViewDelegate { - let selector = #selector((any UITextViewDelegate).textView(_:shouldChangeTextIn:replacementText:)) - if textViewDelegate.responds(to: selector) { - shouldChange = (textViewDelegate.textView?(textView, - shouldChangeTextIn: range, - replacementText: text)) ?? true - } - } - } - - if self.dismissTextViewOnReturn, text == "\n" { - goToNextResponderOrResign(from: textView) - return false - } - - return shouldChange - } - - public func textViewDidChange(_ textView: UITextView) { - - var aDelegate: (any UITextViewDelegate)? = delegate - - if aDelegate == nil { - - if let model: IQTextInputViewInfoModel = textInputViewCachedInfo(textView) { - aDelegate = model.textViewDelegate - } - } - - aDelegate?.textViewDidChange?(textView) - } - - public func textViewDidChangeSelection(_ textView: UITextView) { - - var aDelegate: (any UITextViewDelegate)? = delegate - - if aDelegate == nil { - - if let model: IQTextInputViewInfoModel = textInputViewCachedInfo(textView) { - aDelegate = model.textViewDelegate - } - } - - aDelegate?.textViewDidChangeSelection?(textView) - } - - @available(iOS, deprecated: 17.0) - public func textView(_ aTextView: UITextView, - shouldInteractWith URL: URL, - in characterRange: NSRange, - interaction: UITextItemInteraction) -> Bool { - - guard delegate == nil else { return true } - - if let textViewDelegate: any UITextViewDelegate = textInputViewCachedInfo(aTextView)?.textViewDelegate { - let selector: Selector = #selector(textView as - (UITextView, URL, NSRange, UITextItemInteraction) -> Bool) - if textViewDelegate.responds(to: selector) { - return textViewDelegate.textView?(aTextView, - shouldInteractWith: URL, - in: characterRange, - interaction: interaction) ?? false - } - } - - return true - } - - @available(iOS, deprecated: 17.0) - public func textView(_ aTextView: UITextView, - shouldInteractWith textAttachment: NSTextAttachment, - in characterRange: NSRange, - interaction: UITextItemInteraction) -> Bool { - - guard delegate == nil else { return true } - - if let textViewDelegate: any UITextViewDelegate = textInputViewCachedInfo(aTextView)?.textViewDelegate { - let selector: Selector = #selector(textView as - (UITextView, NSTextAttachment, NSRange, UITextItemInteraction) - -> Bool) - if textViewDelegate.responds(to: selector) { - return textViewDelegate.textView?(aTextView, - shouldInteractWith: textAttachment, - in: characterRange, - interaction: interaction) ?? false - } - } - - return true - } - - @available(iOS, deprecated: 10.0) - public func textView(_ aTextView: UITextView, - shouldInteractWith URL: URL, - in characterRange: NSRange) -> Bool { - - guard delegate == nil else { return true } - - if let textViewDelegate: any UITextViewDelegate = textInputViewCachedInfo(aTextView)?.textViewDelegate { - if textViewDelegate.responds(to: #selector(textView as (UITextView, URL, NSRange) -> Bool)) { - return textViewDelegate.textView?(aTextView, - shouldInteractWith: URL, - in: characterRange) ?? false - } - } - - return true - } - - @available(iOS, deprecated: 10.0) - public func textView(_ aTextView: UITextView, - shouldInteractWith textAttachment: NSTextAttachment, - in characterRange: NSRange) -> Bool { - - guard delegate == nil else { return true } - - if let textViewDelegate: any UITextViewDelegate = textInputViewCachedInfo(aTextView)?.textViewDelegate { - if textViewDelegate.responds(to: #selector(textView as (UITextView, NSTextAttachment, NSRange) -> Bool)) { - return textViewDelegate.textView?(aTextView, - shouldInteractWith: textAttachment, - in: characterRange) ?? false - } - } - - return true - } -} - -@available(iOS 16.0, *) -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc extension IQKeyboardReturnManager { - public func textView(_ aTextView: UITextView, - editMenuForTextIn range: NSRange, - suggestedActions: [UIMenuElement]) -> UIMenu? { - - guard delegate == nil else { return nil } - - if let textViewDelegate: any UITextViewDelegate = textInputViewCachedInfo(aTextView)?.textViewDelegate { - - let selector: Selector = #selector(textView as - (UITextView, NSRange, [UIMenuElement]) -> UIMenu?) - if textViewDelegate.responds(to: selector) { - return textViewDelegate.textView?(aTextView, - editMenuForTextIn: range, - suggestedActions: suggestedActions) - } - } - - return nil - } - - public func textView(_ aTextView: UITextView, - willPresentEditMenuWith animator: any UIEditMenuInteractionAnimating) { - var aDelegate: (any UITextViewDelegate)? = delegate - - if aDelegate == nil { - - if let model: IQTextInputViewInfoModel = textInputViewCachedInfo(aTextView) { - aDelegate = model.textViewDelegate - } - } - - aDelegate?.textView?(aTextView, willPresentEditMenuWith: animator) - } - - public func textView(_ aTextView: UITextView, - willDismissEditMenuWith animator: any UIEditMenuInteractionAnimating) { - var aDelegate: (any UITextViewDelegate)? = delegate - - if aDelegate == nil { - - if let model: IQTextInputViewInfoModel = textInputViewCachedInfo(aTextView) { - aDelegate = model.textViewDelegate - } - } - - aDelegate?.textView?(aTextView, willDismissEditMenuWith: animator) - } -} - -#if swift(>=5.9) // Xcode 15 -@available(iOS 17.0, *) -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardReturnManager { - - func textView(_ aTextView: UITextView, - primaryActionFor textItem: UITextItem, - defaultAction: UIAction) -> UIAction? { - guard delegate == nil else { return nil } - - if let textViewDelegate = textInputViewCachedInfo(aTextView)?.textViewDelegate { - if textViewDelegate.responds(to: #selector(textView as (UITextView, UITextItem, UIAction) -> UIAction?)) { - return textViewDelegate.textView?(aTextView, - primaryActionFor: textItem, - defaultAction: defaultAction) - } - } - - return nil - } - - func textView(_ aTextView: UITextView, - menuConfigurationFor textItem: UITextItem, - defaultMenu: UIMenu) -> UITextItem.MenuConfiguration? { - guard delegate == nil else { return nil } - - if let textViewDelegate = textInputViewCachedInfo(aTextView)?.textViewDelegate { - let selector: Selector = #selector(textView as (UITextView, UITextItem, UIMenu) - -> UITextItem.MenuConfiguration?) - if textViewDelegate.responds(to: selector) { - return textViewDelegate.textView?(aTextView, - menuConfigurationFor: textItem, - defaultMenu: defaultMenu) - } - } - - return nil - } - - func textView(_ textView: UITextView, - textItemMenuWillDisplayFor textItem: UITextItem, - animator: any UIContextMenuInteractionAnimating) { - var aDelegate: (any UITextViewDelegate)? = delegate - - if aDelegate == nil { - - if let model = textInputViewCachedInfo(textView) { - aDelegate = model.textViewDelegate - } - } - - aDelegate?.textView?(textView, textItemMenuWillDisplayFor: textItem, animator: animator) - } - - func textView(_ textView: UITextView, - textItemMenuWillEndFor textItem: UITextItem, - animator: any UIContextMenuInteractionAnimating) { - var aDelegate: (any UITextViewDelegate)? = delegate - - if aDelegate == nil { - - if let model = textInputViewCachedInfo(textView) { - aDelegate = model.textViewDelegate - } - } - - aDelegate?.textView?(textView, textItemMenuWillEndFor: textItem, animator: animator) - } -} -#endif - -#if swift(>=6.0) // Xcode 16 -@available(iOS 18.0, *) -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardReturnManager { - - func textViewWritingToolsWillBegin(_ textView: UITextView) { - - var aDelegate: (any UITextViewDelegate)? = delegate - - if aDelegate == nil { - - if let model: IQTextInputViewInfoModel = textInputViewCachedInfo(textView) { - aDelegate = model.textViewDelegate - } - } - - aDelegate?.textViewWritingToolsWillBegin?(textView) - } - - func textViewWritingToolsDidEnd(_ textView: UITextView) { - - var aDelegate: (any UITextViewDelegate)? = delegate - - if aDelegate == nil { - - if let model: IQTextInputViewInfoModel = textInputViewCachedInfo(textView) { - aDelegate = model.textViewDelegate - } - } - - aDelegate?.textViewWritingToolsDidEnd?(textView) - } - - func textView(_ textView: UITextView, - writingToolsIgnoredRangesInEnclosingRange enclosingRange: NSRange) -> [NSValue] { - guard delegate == nil else { return [] } - - if let textViewDelegate = textInputViewCachedInfo(aTextView)?.textViewDelegate { - if textViewDelegate.responds(to: #selector(textView as (UITextView, NSRange) -> [NSValue])) { - return textViewDelegate.textView?(aTextView, - writingToolsIgnoredRangesInEnclosingRange: enclosingRange) - } - } - return [] - } -} -#endif diff --git a/Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Classes/IQKeyboardReturnManager.swift b/Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Classes/IQKeyboardReturnManager.swift deleted file mode 100644 index f8b7f2941..000000000 --- a/Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Classes/IQKeyboardReturnManager.swift +++ /dev/null @@ -1,277 +0,0 @@ -// -// IQKeyboardReturnManager.swift -// https://github.com/hackiftekhar/IQKeyboardReturnManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore - -/** -Manages the return key to work like next/done in a view hierarchy. -*/ -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers public final class IQKeyboardReturnManager: NSObject { - - // MARK: Private variables - private var textInputViewInfoCache: [IQTextInputViewInfoModel] = [] - - // MARK: Settings - - /** - Delegate of textInputView - */ - public weak var delegate: (any UITextFieldDelegate & UITextViewDelegate)? - - /** - Set the last textInputView return key type. Default is UIReturnKeyDefault. - */ - public var lastTextInputViewReturnKeyType: UIReturnKeyType = .default { - - didSet { - if let activeModel = textInputViewInfoCache.first(where: { - guard let textInputView = $0.textInputView else { - return false - } - return textInputView.isFirstResponder - }), let view: any IQTextInputView = activeModel.textInputView { - updateReturnKey(textInputView: view) - } - } - } - - public var dismissTextViewOnReturn: Bool = false - - // MARK: Initialization/De-initialization - - public override init() { - super.init() - } - - @available(*, unavailable, message: "Please use addResponderSubviews(of:recursive:)") - public init(controller: UIViewController) { - super.init() - addResponderSubviews(of: controller.view, recursive: true) - } - - deinit { - - // for model in textInputViewInfoCache { - // model.restore() - // } - - textInputViewInfoCache.removeAll() - } -} - -// MARK: Registering/Unregistering textInputView - -@available(iOSApplicationExtension, unavailable) -@MainActor -public extension IQKeyboardReturnManager { - - /** - Should pass TextInputView instance. Assign textInputView delegate to self, change it's returnKeyType. - - @param view TextInputView object to register. - */ - func add(textInputView: any IQTextInputView) { - - let model = IQTextInputViewInfoModel(textInputView: textInputView) - textInputViewInfoCache.append(model) - - if let view: UITextField = textInputView as? UITextField { - view.delegate = self - } else if let view: UITextView = textInputView as? UITextView { - view.delegate = self - } - } - - /** - Should pass TextInputView instance. Restore it's textInputView delegate and it's returnKeyType. - - @param view TextInputView object to unregister. - */ - func remove(textInputView: any IQTextInputView) { - - guard let index: Int = textInputViewCachedInfoIndex(textInputView) else { return } - - let model = textInputViewInfoCache.remove(at: index) - model.restore() - } - - /** - Add all the TextInputView responderView's. - - @param view object to register all it's responder subviews. - */ - func addResponderSubviews(of view: UIView, recursive: Bool) { - - let textInputViews: [any IQTextInputView] = view.responderSubviews(recursive: recursive) - - for view in textInputViews { - add(textInputView: view) - } - } - - /** - Remove all the TextInputView responderView's. - - @param view object to unregister all it's responder subviews. - */ - func removeResponderSubviews(of view: UIView, recursive: Bool) { - - let textInputViews: [any IQTextInputView] = view.responderSubviews(recursive: recursive) - - for view in textInputViews { - remove(textInputView: view) - } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardReturnManager { - @discardableResult - func goToNextResponderOrResign(from textInputView: any IQTextInputView) -> Bool { - - guard let textInfoCache: IQTextInputViewInfoModel = nextResponderFromTextInputView(textInputView), - let textInputView = textInfoCache.textInputView else { - textInputView.resignFirstResponder() - return true - } - - textInputView.becomeFirstResponder() - return false - } -} - -// MARK: Internal Functions -@available(iOSApplicationExtension, unavailable) -@MainActor -internal extension IQKeyboardReturnManager { - - func nextResponderFromTextInputView(_ textInputView: some IQTextInputView) -> IQTextInputViewInfoModel? { - guard let currentIndex: Int = textInputViewCachedInfoIndex(textInputView), - currentIndex < textInputViewInfoCache.count - 1 else { return nil } - - let candidates = Array(textInputViewInfoCache[currentIndex+1.. Int? { - return textInputViewInfoCache.firstIndex { - guard let inputView = $0.textInputView else { return false } - return inputView == textInputView - } - } - - func textInputViewCachedInfo(_ textInputView: some IQTextInputView) -> IQTextInputViewInfoModel? { - guard let index: Int = textInputViewCachedInfoIndex(textInputView) else { return nil } - return textInputViewInfoCache[index] - } - - func updateReturnKey(textInputView: some IQTextInputView) { - - let returnKey: UIReturnKeyType - if nextResponderFromTextInputView(textInputView) != nil { - returnKey = .next - } else { - returnKey = lastTextInputViewReturnKeyType - } - - if textInputView.returnKeyType != returnKey { - // If it's the last textInputView in responder view, else next - textInputView.returnKeyType = returnKey - textInputView.reloadInputViews() - } - } -} - -// swiftlint:disable unused_setter_value -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardReturnManager { - - @available(*, unavailable, renamed: "lastTextInputViewReturnKeyType") - var lastTextFieldReturnKeyType: UIReturnKeyType { - get { .default } - set { } - } - - @available(*, unavailable, renamed: "add(textInputView:)") - func addTextFieldView(_ textInputView: any IQTextInputView) { } - - @available(*, unavailable, renamed: "remove(textInputView:)") - func removeTextFieldView(_ textInputView: any IQTextInputView) { } - - @available(*, unavailable, renamed: "addResponderSubviews(of:recursive:)") - func addResponderFromView(_ view: UIView, recursive: Bool) { } - - @available(*, unavailable, renamed: "removeResponderSubviews(of:recursive:)") - func removeResponderFromView(_ view: UIView, recursive: Bool = true) { } -} -// swiftlint:enable unused_setter_value - -@available(iOSApplicationExtension, unavailable) -@MainActor -fileprivate extension UIView { - - func responderSubviews(recursive: Bool) -> [any IQTextInputView] { - - // Array of TextInputViews. - var textInputViews: [any IQTextInputView] = [] - for view in subviews { - - if let view = view as? IQTextInputView { - textInputViews.append(view) - } - // Sometimes there are hidden or disabled views and textInputView inside them still recorded, - // so we added some more validations here (Bug ID: #458) - // Uncommented else (Bug ID: #625) - else if recursive, !view.subviews.isEmpty { - let deepResponders = view.responderSubviews(recursive: recursive) - textInputViews.append(contentsOf: deepResponders) - } - } - - // subviews are returning in opposite order. Sorting according the frames 'y'. - return textInputViews.sorted(by: { (view1: any IQTextInputView, view2: any IQTextInputView) -> Bool in - - let frame1: CGRect = view1.convert(view1.bounds, to: self) - let frame2: CGRect = view2.convert(view2.bounds, to: self) - - if frame1.minY != frame2.minY { - return frame1.minY < frame2.minY - } else { - return frame1.minX < frame2.minX - } - }) - } -} diff --git a/Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Classes/IQTextInputViewInfoModel.swift b/Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Classes/IQTextInputViewInfoModel.swift deleted file mode 100644 index c7b909949..000000000 --- a/Example/Pods/IQKeyboardReturnManager/IQKeyboardReturnManager/Classes/IQTextInputViewInfoModel.swift +++ /dev/null @@ -1,56 +0,0 @@ -// -// IQTextInputViewInfoModel.swift -// https://github.com/hackiftekhar/IQKeyboardReturnManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore - -@available(iOSApplicationExtension, unavailable) -@MainActor -internal final class IQTextInputViewInfoModel: NSObject { - - weak var textFieldDelegate: (any UITextFieldDelegate)? - weak var textViewDelegate: (any UITextViewDelegate)? - weak var textInputView: (any IQTextInputView)? - let originalReturnKeyType: UIReturnKeyType - - init(textInputView: any IQTextInputView) { - self.textInputView = textInputView - self.originalReturnKeyType = textInputView.returnKeyType - if let textInputView = textInputView as? UITextField { - self.textFieldDelegate = textInputView.delegate - } else if let textInputView = textInputView as? UITextView { - self.textViewDelegate = textInputView.delegate - } - - super.init() - } - - func restore() { - textInputView?.returnKeyType = originalReturnKeyType - if let textInputView = textInputView as? UITextField { - textInputView.delegate = textFieldDelegate - } else if let textInputView = textInputView as? UITextView { - textInputView.delegate = textViewDelegate - } - } -} diff --git a/Example/Pods/IQKeyboardReturnManager/LICENSE b/Example/Pods/IQKeyboardReturnManager/LICENSE deleted file mode 100644 index 5d8eb9642..000000000 --- a/Example/Pods/IQKeyboardReturnManager/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Example/Pods/IQKeyboardReturnManager/README.md b/Example/Pods/IQKeyboardReturnManager/README.md deleted file mode 100644 index 5524787aa..000000000 --- a/Example/Pods/IQKeyboardReturnManager/README.md +++ /dev/null @@ -1,68 +0,0 @@ -# IQKeyboardReturnManager - -[![CI Status](https://img.shields.io/travis/hackiftekhar/IQKeyboardReturnManager.svg?style=flat)](https://travis-ci.org/hackiftekhar/IQKeyboardReturnManager) -[![Version](https://img.shields.io/cocoapods/v/IQKeyboardReturnManager.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardReturnManager) -[![License](https://img.shields.io/cocoapods/l/IQKeyboardReturnManager.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardReturnManager) -[![Platform](https://img.shields.io/cocoapods/p/IQKeyboardReturnManager.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardReturnManager) - -![Screenshot](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardReturnManager/master/Screenshot/IQKeyboardReturnManagerScreenshot.png) - -## Example - -To run the example project, clone the repo, and run `pod install` from the Example directory first. - -## Requirements - -## Installation - -IQKeyboardReturnManager is available through [CocoaPods](https://cocoapods.org). To install -it, simply add the following line to your Podfile: - -```ruby -pod 'IQKeyboardReturnManager' -``` - -## Usage - -To handle keyboard return key automatically:- - -```swift -import IQKeyboardReturnManager - -class ViewController: UIViewController { - - let returnManager: IQKeyboardReturnManager = .init() - - override func viewDidLoad() { - super.viewDidLoad() - - // This will add all textInputView of the controller and start observing for textFieldShouldReturn events - returnManager.addResponderSubviews(of: self.view, recursive: true) - - // If you would like to dismiss the UITextView on tapping on return then add this - returnManager.dismissTextViewOnReturn = true - - // If you would like to change last textInputView return key type to done or something else, then add this - returnManager.lastTextInputViewReturnKeyType = .done - - // If you would like to customize the navigation between textField by your own order then add them manually - returnManager.add(textInputView: textField1) - returnManager.add(textInputView: textField2) - returnManager.add(textInputView: textField3) - returnManager.add(textInputView: textField4) - } -} - -// IQKeyboardReturnManager will forward all delegate callbacks to you, so you can customize the decisions -extension ViewController: UITextFieldDelegate { - @objc public func textFieldShouldBeginEditing(_ textField: UITextField) -> Bool {...} -} -``` - -## Author - -Iftekhar Qurashi hack.iftekhar@gmail.com - -## License - -IQKeyboardReturnManager is available under the MIT license. See the LICENSE file for more info. diff --git a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Assets/PrivacyInfo.xcprivacy b/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Assets/PrivacyInfo.xcprivacy deleted file mode 100644 index 90211906c..000000000 --- a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Assets/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,14 +0,0 @@ - - - - - NSPrivacyAccessedAPITypes - - NSPrivacyTrackingDomains - - NSPrivacyCollectedDataTypes - - NSPrivacyTracking - - - diff --git a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItem.swift b/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItem.swift deleted file mode 100644 index b289c30a1..000000000 --- a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItem.swift +++ /dev/null @@ -1,120 +0,0 @@ -// -// IQBarButtonItem.swift -// https://github.com/hackiftekhar/IQKeyboardToolbar -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers open class IQBarButtonItem: UIBarButtonItem { - - internal static let flexibleBarButtonItem: IQBarButtonItem = IQBarButtonItem(barButtonSystemItem: .flexibleSpace, - target: nil, action: nil) - - public override init() { - super.init() - initialize() - } - - public required init?(coder aDecoder: NSCoder) { - super.init(coder: aDecoder) - initialize() - } - - private func initialize() { - - let states: [UIControl.State] = [.normal, .highlighted, .disabled, .focused] - - for state in states { - - setBackgroundImage(UIImage(), for: state, barMetrics: .default) - setBackgroundImage(UIImage(), for: state, style: .plain, barMetrics: .default) - setBackButtonBackgroundImage(UIImage(), for: state, barMetrics: .default) - } - - setTitlePositionAdjustment(UIOffset(), for: .default) - setBackgroundVerticalPositionAdjustment(0, for: .default) - setBackButtonBackgroundVerticalPositionAdjustment(0, for: .default) - } - - override open var tintColor: UIColor? { - didSet { - - var textAttributes: [NSAttributedString.Key: Any] = [:] - textAttributes[.foregroundColor] = tintColor - - if let attributes: [NSAttributedString.Key: Any] = titleTextAttributes(for: .normal) { - for (key, value) in attributes { - textAttributes[key] = value - } - } - - setTitleTextAttributes(textAttributes, for: .normal) - } - } - - /** - Boolean to know if it's a system item or custom item, - we are having a limitation that we cannot override a designated initializer, - so we are manually setting this property once in initialization - */ - internal var isSystemItem: Bool = false - - /** - Additional target & action to do get callback action. - Note that setting custom target & selector doesn't affect native functionality, - this is just an additional target to get a callback. - - @param target Target object. - @param action Target Selector. - */ - open func setTarget(_ target: AnyObject?, action: Selector?) { - if let target: AnyObject = target, let action: Selector = action { - invocation = IQInvocation(target: target, action: action) - } else { - invocation = nil - } - } - - /** - Customized Invocation to be called when button is pressed. - invocation is internally created using setTarget:action: method. - */ - open var invocation: IQInvocation? { - didSet { - // We have to put this condition here because if we override this function then - // We were getting "Cannot override '_' which has been marked unavailable" in Xcode 15 - if let titleBarButton = self as? IQTitleBarButtonItem { - - if let target = invocation?.target, let action = invocation?.action { - titleBarButton.isEnabled = true - titleBarButton.titleButton?.isEnabled = true - titleBarButton.titleButton?.addTarget(target, action: action, for: .touchUpInside) - } else { - titleBarButton.isEnabled = false - titleBarButton.titleButton?.isEnabled = false - titleBarButton.titleButton?.removeTarget(nil, action: nil, for: .touchUpInside) - } - } - } - } -} diff --git a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItemConfiguration.swift b/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItemConfiguration.swift deleted file mode 100644 index b12e8b19b..000000000 --- a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItemConfiguration.swift +++ /dev/null @@ -1,96 +0,0 @@ -// -// IQBarButtonItemConfiguration.swift -// https://github.com/hackiftekhar/IQKeyboardToolbar -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -/** - IQBarButtonItemConfiguration for creating toolbar with bar button items - */ -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers public final class IQBarButtonItemConfiguration: NSObject { - - public init(systemItem: UIBarButtonItem.SystemItem, action: Selector? = nil) { - self.systemItem = systemItem - self.image = nil - self.title = nil - self.action = action - super.init() - } - - public init(image: UIImage, action: Selector? = nil) { - self.systemItem = nil - self.image = image - self.title = nil - self.action = action - super.init() - } - - public init(title: String, action: Selector? = nil) { - self.systemItem = nil - self.image = nil - self.title = title - self.action = action - super.init() - } - - public let systemItem: UIBarButtonItem.SystemItem? // System Item to be used to instantiate bar button. - - public let image: UIImage? // Image to show on bar button item if it's not a system item. - - public let title: String? // Title to show on bar button item if it's not a system item. - - public var action: Selector? // action for bar button item. Usually 'doneAction:(IQBarButtonItem*)item'. - - public override var accessibilityLabel: String? { didSet { } } // Accessibility related labels - - public func apply(on oldBarButtonItem: IQBarButtonItem, target: AnyObject?) -> IQBarButtonItem { - - var newBarButtonItem: IQBarButtonItem = oldBarButtonItem - - if systemItem == nil, !oldBarButtonItem.isSystemItem { - newBarButtonItem.title = title - newBarButtonItem.accessibilityLabel = accessibilityLabel - newBarButtonItem.accessibilityIdentifier = newBarButtonItem.accessibilityLabel - newBarButtonItem.image = image - newBarButtonItem.target = target - newBarButtonItem.action = action - } else { - if let systemItem: UIBarButtonItem.SystemItem = systemItem { - newBarButtonItem = IQBarButtonItem(barButtonSystemItem: systemItem, target: target, action: action) - newBarButtonItem.isSystemItem = true - } else if let image: UIImage = image { - newBarButtonItem = IQBarButtonItem(image: image, style: .plain, target: target, action: action) - } else { - newBarButtonItem = IQBarButtonItem(title: title, style: .plain, target: target, action: action) - } - - newBarButtonItem.invocation = oldBarButtonItem.invocation - newBarButtonItem.accessibilityLabel = accessibilityLabel - newBarButtonItem.accessibilityIdentifier = oldBarButtonItem.accessibilityLabel - newBarButtonItem.isEnabled = oldBarButtonItem.isEnabled - newBarButtonItem.tag = oldBarButtonItem.tag - } - return newBarButtonItem - } -} diff --git a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQBarButtonItem/IQInvocation.swift b/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQBarButtonItem/IQInvocation.swift deleted file mode 100644 index 95afb9fdf..000000000 --- a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQBarButtonItem/IQInvocation.swift +++ /dev/null @@ -1,42 +0,0 @@ -// -// IQInvocation.swift -// https://github.com/hackiftekhar/IQKeyboardToolbar -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers public final class IQInvocation: NSObject { - public weak var target: AnyObject? - public let action: Selector - - public init(target: AnyObject, action: Selector) { - self.target = target - self.action = action - } - - public func invoke(from: Any) { - - guard let target: AnyObject = target else { return } - UIApplication.shared.sendAction(action, to: target, from: from, for: UIEvent()) - } -} diff --git a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQBarButtonItem/IQTitleBarButtonItem.swift b/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQBarButtonItem/IQTitleBarButtonItem.swift deleted file mode 100644 index 0ec2ef177..000000000 --- a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQBarButtonItem/IQTitleBarButtonItem.swift +++ /dev/null @@ -1,168 +0,0 @@ -// -// IQTitleBarButtonItem.swift -// https://github.com/hackiftekhar/IQKeyboardToolbar -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers open class IQTitleBarButtonItem: IQBarButtonItem { - - open var titleFont: UIFont? { - - didSet { - if let titleFont: UIFont = titleFont { - titleButton?.titleLabel?.font = titleFont - } else { - titleButton?.titleLabel?.font = UIFont.systemFont(ofSize: 13) - } - } - } - - override open var title: String? { - didSet { - titleButton?.setTitle(title, for: .normal) - updateAccessibility() - } - } - - /** - titleColor to be used for displaying button text when displaying title (disabled state). - */ - open var titleColor: UIColor? { - - didSet { - - if let titleColor: UIColor = titleColor { - titleButton?.setTitleColor(titleColor, for: .disabled) - } else { - titleButton?.setTitleColor(UIColor.lightGray, for: .disabled) - } - } - } - - /** - selectableTitleColor to be used for displaying button text when button is enabled. - */ - open var selectableTitleColor: UIColor? { - - didSet { - - if let selectableTitleColor: UIColor = selectableTitleColor { - titleButton?.setTitleColor(selectableTitleColor, for: .normal) - } else { - titleButton?.setTitleColor(UIColor.systemBlue, for: .normal) - } - } - } - - internal var titleButton: UIButton? - private var _titleView: UIView? - - override init() { - super.init() - } - - public convenience init(title: String?) { - - self.init(title: nil, style: .plain, target: nil, action: nil) - - _titleView = UIView() - _titleView?.backgroundColor = UIColor.clear - - titleButton = UIButton(type: .system) - titleButton?.isAccessibilityElement = false - titleButton?.isEnabled = false - titleButton?.titleLabel?.numberOfLines = 3 - titleButton?.setTitleColor(UIColor.lightGray, for: .disabled) - titleButton?.setTitleColor(UIColor.systemBlue, for: .normal) - titleButton?.backgroundColor = UIColor.clear - titleButton?.titleLabel?.textAlignment = .center - titleButton?.setTitle(title, for: .normal) - titleFont = UIFont.systemFont(ofSize: 13.0) - titleButton?.titleLabel?.font = self.titleFont - _titleView?.addSubview(titleButton!) - - let lowPriority: UILayoutPriority = UILayoutPriority(rawValue: UILayoutPriority.defaultLow.rawValue-1) - let highPriority: UILayoutPriority = UILayoutPriority(rawValue: UILayoutPriority.defaultHigh.rawValue-1) - - _titleView?.translatesAutoresizingMaskIntoConstraints = false - _titleView?.setContentHuggingPriority(lowPriority, for: .vertical) - _titleView?.setContentHuggingPriority(lowPriority, for: .horizontal) - _titleView?.setContentCompressionResistancePriority(highPriority, for: .vertical) - _titleView?.setContentCompressionResistancePriority(highPriority, for: .horizontal) - - titleButton?.translatesAutoresizingMaskIntoConstraints = false - titleButton?.setContentHuggingPriority(lowPriority, for: .vertical) - titleButton?.setContentHuggingPriority(lowPriority, for: .horizontal) - titleButton?.setContentCompressionResistancePriority(highPriority, for: .vertical) - titleButton?.setContentCompressionResistancePriority(highPriority, for: .horizontal) - - let top: NSLayoutConstraint = NSLayoutConstraint(item: titleButton!, attribute: .top, - relatedBy: .equal, - toItem: _titleView, attribute: .top, - multiplier: 1, constant: 0) - let bottom: NSLayoutConstraint = NSLayoutConstraint(item: titleButton!, attribute: .bottom, - relatedBy: .equal, - toItem: _titleView, attribute: .bottom, - multiplier: 1, constant: 0) - let leading: NSLayoutConstraint = NSLayoutConstraint(item: titleButton!, attribute: .leading, - relatedBy: .equal, - toItem: _titleView, attribute: .leading, - multiplier: 1, constant: 0) - let trailing: NSLayoutConstraint = NSLayoutConstraint(item: titleButton!, attribute: .trailing, - relatedBy: .equal, - toItem: _titleView, attribute: .trailing, - multiplier: 1, constant: 0) - - _titleView?.addConstraints([top, bottom, leading, trailing]) - - customView = _titleView - } - - required public init?(coder aDecoder: NSCoder) { - super.init(coder: aDecoder) - } - - private func updateAccessibility() { - if title == nil || title?.isEmpty == true { - isAccessibilityElement = false - // Swift 6: Reference to static property 'none' - // is not concurrency-safe because it involves shared mutable state -// accessibilityTraits = .none - accessibilityTraits = .init(rawValue: 0) - } else if titleButton?.isEnabled == true { - isAccessibilityElement = true - // Swift 6: Reference to static property 'button' - // is not concurrency-safe because it involves shared mutable state -// accessibilityTraits = .button - accessibilityTraits = .init(rawValue: 1) - } else { - isAccessibilityElement = true - - // Swift 6: Reference to static property 'staticText' - // is not concurrency-safe because it involves shared mutable state -// accessibilityTraits = .staticText - accessibilityTraits = .init(rawValue: 64) - } - } -} diff --git a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtension.swift b/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtension.swift deleted file mode 100644 index 119a95851..000000000 --- a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtension.swift +++ /dev/null @@ -1,344 +0,0 @@ -// -// UIView+IQKeyboardExtension.swift -// https://github.com/hackiftekhar/IQKeyboardToolbar -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore - -@available(iOSApplicationExtension, unavailable) -@MainActor -private struct AssociatedKeys { - static var toolbar: Int = 0 - static var hidePlaceholder: Int = 0 - static var placeholder: Int = 0 -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -public extension IQKeyboardExtension where Base: IQTextInputView { - - // MARK: Toolbar - - /** - Toolbar references for better customization control. - */ - var toolbar: IQKeyboardToolbar { - var toolbar: IQKeyboardToolbar? = base?.inputAccessoryView as? IQKeyboardToolbar - - if toolbar == nil, let base = base { - toolbar = objc_getAssociatedObject(base, &AssociatedKeys.toolbar) as? IQKeyboardToolbar - } - - if let toolbar: IQKeyboardToolbar = toolbar { - return toolbar - } else { - - let width: CGFloat = base?.window?.windowScene?.screen.bounds.width ?? 0 - - let frame = CGRect(origin: .zero, size: .init(width: width, height: 44)) - let newToolbar = IQKeyboardToolbar(frame: frame) - - if let base = base { - objc_setAssociatedObject(base, &AssociatedKeys.toolbar, newToolbar, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - - return newToolbar - } - } - - // MARK: Toolbar title - - /** - If `hideToolbarPlaceholder` is YES, then title will not be added to the toolbar. Default to NO. - */ - var hidePlaceholder: Bool { - get { - if let base = base { - return objc_getAssociatedObject(base, &AssociatedKeys.hidePlaceholder) as? Bool ?? false - } - return false - } - set(newValue) { - if let base = base { - objc_setAssociatedObject(base, &AssociatedKeys.hidePlaceholder, - newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - toolbar.titleBarButton.title = drawingPlaceholder - } - } - } - - /** - `toolbarPlaceholder` to override default `placeholder` text when drawing text on toolbar. - */ - var placeholder: String? { - get { - if let base = base { - return objc_getAssociatedObject(base, &AssociatedKeys.placeholder) as? String - } - return nil - } - set(newValue) { - if let base = base { - // swiftlint:disable line_length - objc_setAssociatedObject(base, &AssociatedKeys.placeholder, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - toolbar.titleBarButton.title = drawingPlaceholder - // swiftlint:enable line_length - } - } - } - - /** - `drawingToolbarPlaceholder` will be actual text used to draw on toolbar. - This would either `placeholder` or `toolbarPlaceholder`. - */ - var drawingPlaceholder: String? { - - guard !hidePlaceholder else { return nil } - - if let placeholder = placeholder, - !placeholder.isEmpty { - return placeholder - } - - guard let placeholderable: any IQPlaceholderable = base as? (any IQPlaceholderable) else { return nil } - - if let placeholder = placeholderable.attributedPlaceholder?.string, - !placeholder.isEmpty { - return placeholder - } else if let placeholder = placeholderable.placeholder { - return placeholder - } else { - return nil - } - } - - // MARK: Common - - func addToolbar(target: AnyObject?, - previousConfiguration: IQBarButtonItemConfiguration? = nil, - nextConfiguration: IQBarButtonItemConfiguration? = nil, - rightConfiguration: IQBarButtonItemConfiguration? = nil, - title: String?, - titleAccessibilityLabel: String? = nil) { - guard let base = base else { return } - // Creating a toolBar for phoneNumber keyboard - let toolbar: IQKeyboardToolbar = toolbar - - let items: [UIBarButtonItem] = Self.constructBarButtonItems(target: target, toolbar: toolbar, - previousConfiguration: previousConfiguration, - nextConfiguration: nextConfiguration, - rightConfiguration: rightConfiguration, - title: title, - titleAccessibilityLabel: titleAccessibilityLabel) - - // Adding button to toolBar. - toolbar.items = items - - switch base.keyboardAppearance { - case .dark: - toolbar.barStyle = .black - default: - toolbar.barStyle = .default - } - - // Setting toolbar to keyboard. - let reloadInputViews: Bool = base.inputAccessoryView != toolbar - guard reloadInputViews else { return } - - base.inputAccessoryView = toolbar - - base.reloadInputViews() - } - - // MARK: Right - func addDone(target: AnyObject?, - action: Selector, - showPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - - let title: String? = showPlaceholder ? drawingPlaceholder : nil - - addDone(target: target, action: action, - title: title, titleAccessibilityLabel: titleAccessibilityLabel) - } - - func addDone(target: AnyObject?, - action: Selector, - title: String?, titleAccessibilityLabel: String? = nil) { - - let rightConfiguration = IQBarButtonItemConfiguration(systemItem: .done, action: action) - - addToolbar(target: target, rightConfiguration: rightConfiguration, - title: title, titleAccessibilityLabel: titleAccessibilityLabel) - } - - func addRightButton(target: AnyObject?, - configuration: IQBarButtonItemConfiguration, - showPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - let title: String? = showPlaceholder ? drawingPlaceholder : nil - addRightButton(target: target, configuration: configuration, title: title, - titleAccessibilityLabel: titleAccessibilityLabel) - } - - func addRightButton(target: AnyObject?, - configuration: IQBarButtonItemConfiguration, - title: String?, titleAccessibilityLabel: String? = nil) { - addToolbar(target: target, rightConfiguration: configuration, title: title, - titleAccessibilityLabel: titleAccessibilityLabel) - } - - // MARK: Right/Left - func addRightLeft(target: AnyObject?, - rightConfiguration: IQBarButtonItemConfiguration, leftConfiguration: IQBarButtonItemConfiguration, - showPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - let title: String? = showPlaceholder ? drawingPlaceholder : nil - addRightLeft(target: target, - rightConfiguration: rightConfiguration, leftConfiguration: leftConfiguration, - title: title, titleAccessibilityLabel: titleAccessibilityLabel) - } - - func addRightLeft(target: AnyObject?, - rightConfiguration: IQBarButtonItemConfiguration, leftConfiguration: IQBarButtonItemConfiguration, - title: String?, titleAccessibilityLabel: String? = nil) { - addToolbar(target: target, - previousConfiguration: leftConfiguration, rightConfiguration: rightConfiguration, - title: title, titleAccessibilityLabel: titleAccessibilityLabel) - } - - // MARK: Previous/Next/Right - - func addPreviousNextRight(target: AnyObject?, - previousConfiguration: IQBarButtonItemConfiguration? = nil, - nextConfiguration: IQBarButtonItemConfiguration? = nil, - rightConfiguration: IQBarButtonItemConfiguration?, - showPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - - let title: String? = showPlaceholder ? drawingPlaceholder : nil - addPreviousNextRight(target: target, - previousConfiguration: previousConfiguration, nextConfiguration: nextConfiguration, - rightConfiguration: rightConfiguration, - title: title, titleAccessibilityLabel: titleAccessibilityLabel) - } - - func addPreviousNextRight(target: AnyObject?, - previousConfiguration: IQBarButtonItemConfiguration? = nil, - nextConfiguration: IQBarButtonItemConfiguration? = nil, - rightConfiguration: IQBarButtonItemConfiguration?, - title: String?, titleAccessibilityLabel: String? = nil) { - - addToolbar(target: target, - previousConfiguration: previousConfiguration, nextConfiguration: nextConfiguration, - rightConfiguration: rightConfiguration, - title: title, titleAccessibilityLabel: titleAccessibilityLabel) - } - - func addPreviousNextDone(target: AnyObject?, previousAction: Selector, nextAction: Selector, doneAction: Selector, - showPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - let title: String? = showPlaceholder ? drawingPlaceholder : nil - addPreviousNextDone(target: target, previousAction: previousAction, nextAction: nextAction, - doneAction: doneAction, - title: title, titleAccessibilityLabel: titleAccessibilityLabel) - } - - func addPreviousNextDone(target: AnyObject?, - previousAction: Selector, nextAction: Selector, doneAction: Selector, - title: String?, titleAccessibilityLabel: String? = nil) { - - let chevronUp: UIImage = UIImage(systemName: "chevron.up") ?? UIImage() - let chevronDown: UIImage = UIImage(systemName: "chevron.down") ?? UIImage() - - let previousConfiguration = IQBarButtonItemConfiguration(image: chevronUp, - action: previousAction) - let nextConfiguration = IQBarButtonItemConfiguration(image: chevronDown, - action: nextAction) - let rightConfiguration = IQBarButtonItemConfiguration(systemItem: .done, - action: doneAction) - - addToolbar(target: target, previousConfiguration: previousConfiguration, - nextConfiguration: nextConfiguration, rightConfiguration: rightConfiguration, - title: title, titleAccessibilityLabel: titleAccessibilityLabel) - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -private extension IQKeyboardExtension where Base: IQTextInputView { - - private static func constructBarButtonItems(target: AnyObject?, - toolbar: IQKeyboardToolbar, - previousConfiguration: IQBarButtonItemConfiguration? = nil, - nextConfiguration: IQBarButtonItemConfiguration? = nil, - rightConfiguration: IQBarButtonItemConfiguration? = nil, - title: String?, - titleAccessibilityLabel: String? = nil) -> [UIBarButtonItem] { - var items: [UIBarButtonItem] = [] - - if let previousConfiguration: IQBarButtonItemConfiguration = previousConfiguration { - let prev: IQBarButtonItem = previousConfiguration.apply(on: toolbar.previousBarButton, target: target) - toolbar.previousBarButton = prev - items.append(prev) - } - - if previousConfiguration != nil, nextConfiguration != nil { - items.append(toolbar.fixedSpaceBarButton) - } - - if let nextConfiguration: IQBarButtonItemConfiguration = nextConfiguration { - let next: IQBarButtonItem = nextConfiguration.apply(on: toolbar.nextBarButton, target: target) - toolbar.nextBarButton = next - items.append(next) - } - - if !toolbar.additionalLeadingItems.isEmpty { - items.append(contentsOf: toolbar.additionalLeadingItems) - } - - // Title bar button item - do { - // Flexible space - items.append(IQBarButtonItem.flexibleBarButtonItem) - - // Title button - toolbar.titleBarButton.title = title - toolbar.titleBarButton.accessibilityLabel = titleAccessibilityLabel - toolbar.titleBarButton.accessibilityIdentifier = titleAccessibilityLabel - - toolbar.titleBarButton.customView?.frame = .zero - - items.append(toolbar.titleBarButton) - - // Flexible space - items.append(IQBarButtonItem.flexibleBarButtonItem) - } - - if !toolbar.additionalTrailingItems.isEmpty { - items.append(contentsOf: toolbar.additionalTrailingItems) - } - - if let rightConfiguration: IQBarButtonItemConfiguration = rightConfiguration { - - let done: IQBarButtonItem = rightConfiguration.apply(on: toolbar.doneBarButton, target: target) - toolbar.doneBarButton = done - items.append(done) - } - return items - } -} diff --git a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionDeprecated.swift b/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionDeprecated.swift deleted file mode 100644 index c3be1a41f..000000000 --- a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionDeprecated.swift +++ /dev/null @@ -1,228 +0,0 @@ -// -// UIView+IQKeyboardExtensionDeprecated.swift -// https://github.com/hackiftekhar/IQKeyboardToolbar -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -// swiftlint:disable unused_setter_value -// swiftlint:disable line_length -// swiftlint:disable function_parameter_count -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension UIView { - - @available(*, unavailable, renamed: "iq.toolbar") - var keyboardToolbar: IQKeyboardToolbar { - get { fatalError() } - set {} - } - - @available(*, unavailable, renamed: "iq.hidePlaceholder") - var shouldHideToolbarPlaceholder: Bool { - get { false } - set {} - } - - @available(*, unavailable, renamed: "iq.placeholder") - var toolbarPlaceholder: String? { - get { nil } - set {} - } - - @available(*, unavailable, renamed: "iq.drawingPlaceholder") - var drawingToolbarPlaceholder: String? { - get { nil } - set {} - } - - @available(*, unavailable, renamed: "iq.addToolbar(target:previousConfiguration:nextConfiguration:rightConfiguration:title:titleAccessibilityLabel:)") - func addKeyboardToolbarWithTarget(target: AnyObject?, - titleText: String?, - titleAccessibilityLabel: String? = nil, - rightBarButtonConfiguration: IQBarButtonItemConfiguration?, - previousBarButtonConfiguration: IQBarButtonItemConfiguration? = nil, - nextBarButtonConfiguration: IQBarButtonItemConfiguration? = nil) { - } - - @available(*, unavailable, renamed: "iq.addDone(target:action:showPlaceholder:titleAccessibilityLabel:)") - func addDoneOnKeyboardWithTarget(_ target: AnyObject?, - action: Selector, - shouldShowPlaceholder: Bool = false, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addDone(target:action:title:titleAccessibilityLabel:)") - func addDoneOnKeyboardWithTarget(_ target: AnyObject?, - action: Selector, - titleText: String?, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addRightButton(target:configuration:showPlaceholder:titleAccessibilityLabel:)") - func addRightButtonOnKeyboardWithImage(_ image: UIImage, - target: AnyObject?, - action: Selector, - shouldShowPlaceholder: Bool = false, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addRightButton(target:configuration:title:titleAccessibilityLabel:)") - func addRightButtonOnKeyboardWithImage(_ image: UIImage, - target: AnyObject?, - action: Selector, - titleText: String?, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addRightButton(target:configuration:showPlaceholder:titleAccessibilityLabel:)") - func addRightButtonOnKeyboardWithText(_ text: String, - target: AnyObject?, - action: Selector, - shouldShowPlaceholder: Bool = false, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addRightButton(target:configuration:title:titleAccessibilityLabel:)") - func addRightButtonOnKeyboardWithText(_ text: String, - target: AnyObject?, - action: Selector, - titleText: String?, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addRightLeft(target:rightConfiguration:leftConfiguration:showPlaceholder:titleAccessibilityLabel:)") - func addCancelDoneOnKeyboardWithTarget(_ target: AnyObject?, - cancelAction: Selector, - doneAction: Selector, - shouldShowPlaceholder: Bool = false, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addRightLeft(target:rightConfiguration:leftConfiguration:showPlaceholder:titleAccessibilityLabel:)") - func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?, - leftButtonTitle: String, - rightButtonTitle: String, - leftButtonAction: Selector, - rightButtonAction: Selector, - shouldShowPlaceholder: Bool = false, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addRightLeft(target:rightConfiguration:leftConfiguration:showPlaceholder:titleAccessibilityLabel:)") - func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?, - leftButtonImage: UIImage, - rightButtonImage: UIImage, - leftButtonAction: Selector, - rightButtonAction: Selector, - shouldShowPlaceholder: Bool = false, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addRightLeft(target:rightConfiguration:leftConfiguration:title:titleAccessibilityLabel:)") - func addCancelDoneOnKeyboardWithTarget(_ target: AnyObject?, - cancelAction: Selector, - doneAction: Selector, - titleText: String?, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addRightLeft(target:rightConfiguration:leftConfiguration:title:titleAccessibilityLabel:)") - func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?, - leftButtonTitle: String, - rightButtonTitle: String, - leftButtonAction: Selector, - rightButtonAction: Selector, - titleText: String?, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addRightLeft(target:rightConfiguration:leftConfiguration:title:titleAccessibilityLabel:)") - func addRightLeftOnKeyboardWithTarget(_ target: AnyObject?, - leftButtonImage: UIImage, - rightButtonImage: UIImage, - leftButtonAction: Selector, - rightButtonAction: Selector, - titleText: String?, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addPreviousNextDone(target:previousAction:nextAction:doneAction:showPlaceholder:titleAccessibilityLabel:)") - func addPreviousNextDone(_ target: AnyObject?, - previousAction: Selector, - nextAction: Selector, - doneAction: Selector, - shouldShowPlaceholder: Bool = false, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addPreviousNextDone(target:previousAction:nextAction:doneAction:title:titleAccessibilityLabel:)") - func addPreviousNextDoneOnKeyboardWithTarget(_ target: AnyObject?, - previousAction: Selector, - nextAction: Selector, - doneAction: Selector, - titleText: String?, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addPreviousNextRight(target:previousConfiguration:nextConfiguration:rightConfiguration:showPlaceholder:titleAccessibilityLabel:)") - func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?, - rightButtonImage: UIImage, - previousAction: Selector, - nextAction: Selector, - rightButtonAction: Selector, - shouldShowPlaceholder: Bool = false, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addPreviousNextRight(target:previousConfiguration:nextConfiguration:rightConfiguration:showPlaceholder:titleAccessibilityLabel:)") - func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?, - rightButtonTitle: String, - previousAction: Selector, - nextAction: Selector, - rightButtonAction: Selector, - shouldShowPlaceholder: Bool = false, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addPreviousNextRight(target:previousConfiguration:nextConfiguration:rightConfiguration:title:titleAccessibilityLabel:)") - func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?, - rightButtonImage: UIImage, - previousAction: Selector, - nextAction: Selector, - rightButtonAction: Selector, - titleText: String?, - titleAccessibilityLabel: String? = nil) { - } - - @available(*, unavailable, renamed: "iq.addPreviousNextRight(target:previousConfiguration:nextConfiguration:rightConfiguration:title:titleAccessibilityLabel:)") - func addPreviousNextRightOnKeyboardWithTarget(_ target: AnyObject?, - rightButtonTitle: String, - previousAction: Selector, - nextAction: Selector, - rightButtonAction: Selector, - titleText: String?, - titleAccessibilityLabel: String? = nil) { - } -} -// swiftlint:enable unused_setter_value -// swiftlint:enable line_length -// swiftlint:enable function_parameter_count diff --git a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionObjc.swift b/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionObjc.swift deleted file mode 100644 index 2dbcdbed2..000000000 --- a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionObjc.swift +++ /dev/null @@ -1,254 +0,0 @@ -// -// UIView+IQKeyboardExtensionObjc.swift -// https://github.com/hackiftekhar/IQKeyboardToolbar -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -// MARK: For ObjectiveC Compatibility - -// swiftlint:disable identifier_name -@objc public extension UITextField { - - var iq_toolbar: IQKeyboardToolbar { iq.toolbar } - - var iq_hidePlaceholder: Bool { - get { iq.hidePlaceholder } - set(newValue) { iq.hidePlaceholder = newValue } - } - - var iq_placeholder: String? { - get { iq.placeholder } - set(newValue) { iq.placeholder = newValue } - } - - var iq_drawingPlaceholder: String? { iq.drawingPlaceholder } - - func iq_addToolbar(target: AnyObject?, - previousConfiguration: IQBarButtonItemConfiguration? = nil, - nextConfiguration: IQBarButtonItemConfiguration? = nil, - rightConfiguration: IQBarButtonItemConfiguration? = nil, - title: String?, - titleAccessibilityLabel: String? = nil) { - iq.addToolbar(target: target, previousConfiguration: previousConfiguration, - nextConfiguration: nextConfiguration, - rightConfiguration: rightConfiguration, - title: title, titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addDone(target: AnyObject?, - action: Selector, - showPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - iq.addDone(target: target, action: action, showPlaceholder: showPlaceholder, - titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addDone(target: AnyObject?, - action: Selector, - title: String?, titleAccessibilityLabel: String? = nil) { - iq.addDone(target: target, action: action, title: title, titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addRightButton(target: AnyObject?, - configuration: IQBarButtonItemConfiguration, - showPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - iq.addRightButton(target: target, configuration: configuration, showPlaceholder: showPlaceholder, - titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addRightButton(target: AnyObject?, - configuration: IQBarButtonItemConfiguration, - title: String?, titleAccessibilityLabel: String? = nil) { - iq.addRightButton(target: target, configuration: configuration, title: title, - titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addRightLeft(target: AnyObject?, - rightConfiguration: IQBarButtonItemConfiguration, - leftConfiguration: IQBarButtonItemConfiguration, - showPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - iq.addRightLeft(target: target, rightConfiguration: rightConfiguration, - leftConfiguration: leftConfiguration, showPlaceholder: showPlaceholder, - titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addRightLeft(target: AnyObject?, - rightConfiguration: IQBarButtonItemConfiguration, - leftConfiguration: IQBarButtonItemConfiguration, - title: String?, titleAccessibilityLabel: String? = nil) { - iq.addRightLeft(target: target, rightConfiguration: rightConfiguration, - leftConfiguration: leftConfiguration, title: title, - titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addPreviousNextRight(target: AnyObject?, - previousConfiguration: IQBarButtonItemConfiguration? = nil, - nextConfiguration: IQBarButtonItemConfiguration? = nil, - rightConfiguration: IQBarButtonItemConfiguration?, - showPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - iq.addPreviousNextRight(target: target, previousConfiguration: previousConfiguration, - nextConfiguration: nextConfiguration, rightConfiguration: rightConfiguration, - showPlaceholder: showPlaceholder, titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addPreviousNextRight(target: AnyObject?, - previousConfiguration: IQBarButtonItemConfiguration? = nil, - nextConfiguration: IQBarButtonItemConfiguration? = nil, - rightConfiguration: IQBarButtonItemConfiguration?, - title: String?, titleAccessibilityLabel: String? = nil) { - iq.addPreviousNextRight(target: target, previousConfiguration: previousConfiguration, - nextConfiguration: nextConfiguration, - rightConfiguration: rightConfiguration, - title: title, titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addPreviousNextDone(target: AnyObject?, previousAction: Selector, - nextAction: Selector, doneAction: Selector, - showPlaceholder: Bool = false, - titleAccessibilityLabel: String? = nil) { - iq.addPreviousNextDone(target: target, previousAction: previousAction, - nextAction: nextAction, doneAction: doneAction, - showPlaceholder: showPlaceholder, - titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addPreviousNextDone(target: AnyObject?, - previousAction: Selector, nextAction: Selector, doneAction: Selector, - title: String?, titleAccessibilityLabel: String? = nil) { - iq.addPreviousNextDone(target: target, previousAction: previousAction, - nextAction: nextAction, doneAction: doneAction, - title: title, titleAccessibilityLabel: titleAccessibilityLabel) - } -} - -@objc public extension UITextView { - - var iq_toolbar: IQKeyboardToolbar { iq.toolbar } - - var iq_hidePlaceholder: Bool { - get { iq.hidePlaceholder } - set(newValue) { iq.hidePlaceholder = newValue } - } - - var iq_placeholder: String? { - get { iq.placeholder } - set(newValue) { iq.placeholder = newValue } - } - - var iq_drawingPlaceholder: String? { iq.drawingPlaceholder } - - func iq_addToolbar(target: AnyObject?, - previousConfiguration: IQBarButtonItemConfiguration? = nil, - nextConfiguration: IQBarButtonItemConfiguration? = nil, - rightConfiguration: IQBarButtonItemConfiguration? = nil, - title: String?, - titleAccessibilityLabel: String? = nil) { - iq.addToolbar(target: target, previousConfiguration: previousConfiguration, - nextConfiguration: nextConfiguration, rightConfiguration: rightConfiguration, - title: title, titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addDone(target: AnyObject?, - action: Selector, - showPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - iq.addDone(target: target, action: action, showPlaceholder: showPlaceholder, - titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addDone(target: AnyObject?, - action: Selector, - title: String?, titleAccessibilityLabel: String? = nil) { - iq.addDone(target: target, action: action, title: title, - titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addRightButton(target: AnyObject?, - configuration: IQBarButtonItemConfiguration, - showPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - iq.addRightButton(target: target, configuration: configuration, - showPlaceholder: showPlaceholder, titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addRightButton(target: AnyObject?, - configuration: IQBarButtonItemConfiguration, - title: String?, titleAccessibilityLabel: String? = nil) { - iq.addRightButton(target: target, configuration: configuration, - title: title, titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addRightLeft(target: AnyObject?, - rightConfiguration: IQBarButtonItemConfiguration, - leftConfiguration: IQBarButtonItemConfiguration, - showPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - iq.addRightLeft(target: target, rightConfiguration: rightConfiguration, - leftConfiguration: leftConfiguration, showPlaceholder: showPlaceholder, - titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addRightLeft(target: AnyObject?, - rightConfiguration: IQBarButtonItemConfiguration, - leftConfiguration: IQBarButtonItemConfiguration, - title: String?, titleAccessibilityLabel: String? = nil) { - iq.addRightLeft(target: target, rightConfiguration: rightConfiguration, - leftConfiguration: leftConfiguration, title: title, - titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addPreviousNextRight(target: AnyObject?, - previousConfiguration: IQBarButtonItemConfiguration? = nil, - nextConfiguration: IQBarButtonItemConfiguration? = nil, - rightConfiguration: IQBarButtonItemConfiguration?, - showPlaceholder: Bool = false, titleAccessibilityLabel: String? = nil) { - iq.addPreviousNextRight(target: target, previousConfiguration: previousConfiguration, - nextConfiguration: nextConfiguration, rightConfiguration: rightConfiguration, - showPlaceholder: showPlaceholder, titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addPreviousNextRight(target: AnyObject?, - previousConfiguration: IQBarButtonItemConfiguration? = nil, - nextConfiguration: IQBarButtonItemConfiguration? = nil, - rightConfiguration: IQBarButtonItemConfiguration?, - title: String?, titleAccessibilityLabel: String? = nil) { - iq.addPreviousNextRight(target: target, previousConfiguration: previousConfiguration, - nextConfiguration: nextConfiguration, - rightConfiguration: rightConfiguration, - title: title, titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addPreviousNextDone(target: AnyObject?, previousAction: Selector, nextAction: Selector, - doneAction: Selector, showPlaceholder: Bool = false, - titleAccessibilityLabel: String? = nil) { - iq.addPreviousNextDone(target: target, previousAction: previousAction, - nextAction: nextAction, - doneAction: doneAction, showPlaceholder: showPlaceholder, - titleAccessibilityLabel: titleAccessibilityLabel) - } - - func iq_addPreviousNextDone(target: AnyObject?, - previousAction: Selector, nextAction: Selector, doneAction: Selector, - title: String?, titleAccessibilityLabel: String? = nil) { - iq.addPreviousNextDone(target: target, previousAction: previousAction, - nextAction: nextAction, - doneAction: doneAction, title: title, - titleAccessibilityLabel: titleAccessibilityLabel) - } -} -// swiftlint:enable identifier_name diff --git a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQKeyboardToolbar.swift b/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQKeyboardToolbar.swift deleted file mode 100644 index f2d78b7cf..000000000 --- a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/IQKeyboardToolbar.swift +++ /dev/null @@ -1,185 +0,0 @@ -// -// IQKeyboardToolbar.swift -// https://github.com/hackiftekhar/IQKeyboardToolbar -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -/** @abstract IQKeyboardToolbar. */ -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers open class IQKeyboardToolbar: UIToolbar { - - override public init(frame: CGRect) { - super.init(frame: frame) - - initialize() - } - - required public init?(coder aDecoder: NSCoder) { - super.init(coder: aDecoder) - - initialize() - } - - private func initialize() { - - sizeToFit() - - autoresizingMask = .flexibleWidth - self.isTranslucent = true - self.barTintColor = nil - - let positions: [UIBarPosition] = [.any, .bottom, .top, .topAttached] - - for position in positions { - - self.setBackgroundImage(nil, forToolbarPosition: position, barMetrics: .default) - self.setShadowImage(nil, forToolbarPosition: .any) - } - - // Background color - self.backgroundColor = nil - } - - /** - Additional bar buttons to show at the leading side. - */ - open var additionalLeadingItems: [UIBarButtonItem] = [] - - /** - Additional bar buttons to show at the trailing side. - */ - open var additionalTrailingItems: [UIBarButtonItem] = [] - - /** - Previous bar button of toolbar. - */ - private var privatePreviousBarButton: IQBarButtonItem? - open var previousBarButton: IQBarButtonItem { - get { - if privatePreviousBarButton == nil { - privatePreviousBarButton = IQBarButtonItem(image: nil, style: .plain, target: nil, action: nil) - } - return privatePreviousBarButton! - } - - set (newValue) { - privatePreviousBarButton = newValue - } - } - - /** - Next bar button of toolbar. - */ - private var privateNextBarButton: IQBarButtonItem? - open var nextBarButton: IQBarButtonItem { - get { - if privateNextBarButton == nil { - privateNextBarButton = IQBarButtonItem(image: nil, style: .plain, target: nil, action: nil) - } - return privateNextBarButton! - } - - set (newValue) { - privateNextBarButton = newValue - } - } - - /** - Title bar button of toolbar. - */ - private var privateTitleBarButton: IQTitleBarButtonItem? - open var titleBarButton: IQTitleBarButtonItem { - get { - if privateTitleBarButton == nil { - privateTitleBarButton = IQTitleBarButtonItem(title: nil) - } - return privateTitleBarButton! - } - - set (newValue) { - privateTitleBarButton = newValue - } - } - - /** - Done bar button of toolbar. - */ - private var privateDoneBarButton: IQBarButtonItem? - open var doneBarButton: IQBarButtonItem { - get { - if privateDoneBarButton == nil { - privateDoneBarButton = IQBarButtonItem(title: nil, style: .done, target: nil, action: nil) - } - return privateDoneBarButton! - } - - set (newValue) { - privateDoneBarButton = newValue - } - } - - /** - Fixed space bar button of toolbar. - */ - private var privateFixedSpaceBarButton: IQBarButtonItem? - open var fixedSpaceBarButton: IQBarButtonItem { - get { - if privateFixedSpaceBarButton == nil { - privateFixedSpaceBarButton = IQBarButtonItem(barButtonSystemItem: .fixedSpace, target: nil, action: nil) - } - privateFixedSpaceBarButton?.isSystemItem = true - privateFixedSpaceBarButton?.width = 6 - - return privateFixedSpaceBarButton! - } - - set (newValue) { - privateFixedSpaceBarButton = newValue - } - } - - override open func sizeThatFits(_ size: CGSize) -> CGSize { - var sizeThatFit: CGSize = super.sizeThatFits(size) - sizeThatFit.height = 44 - return sizeThatFit - } - - override open var tintColor: UIColor! { - - didSet { - guard let items: [UIBarButtonItem] = items else { return } - for item in items { - item.tintColor = tintColor - } - } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc extension IQKeyboardToolbar: UIInputViewAudioFeedback { - - open var enableInputClicksWhenVisible: Bool { - return true - } -} diff --git a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/Placeholder/IQKeyboardToolbarPlaceholderConfiguration.swift b/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/Placeholder/IQKeyboardToolbarPlaceholderConfiguration.swift deleted file mode 100644 index 9f543e52c..000000000 --- a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Classes/Placeholder/IQKeyboardToolbarPlaceholderConfiguration.swift +++ /dev/null @@ -1,60 +0,0 @@ -// -// IQKeyboardToolbarPlaceholderConfiguration.swift -// https://github.com/hackiftekhar/IQKeyboardToolbar -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -// swiftlint:disable type_name -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers public final class IQKeyboardToolbarPlaceholderConfiguration: NSObject { - - /** - If YES, then it add the textInputView's placeholder text on toolbar. Default is YES. - */ - public var showPlaceholder: Bool = true - - /** - Placeholder Font. Default is nil. - */ - public var font: UIFont? - - /** - Placeholder Color. Default is nil. Which means lightGray - */ - public var color: UIColor? - - /** - Placeholder Button Color when it's treated as button. Default is nil. - */ - public var buttonColor: UIColor? - - /** - Placeholder accessibility Label - */ - public override var accessibilityLabel: String? { didSet { } } -} -// swiftlint:enable type_name - -@available(*, unavailable, renamed: "IQKeyboardToolbarPlaceholderConfiguration") -@MainActor -@objcMembers public final class IQToolbarPlaceholderConfiguration: NSObject {} diff --git a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Placeholderable/IQPlaceholderable.swift b/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Placeholderable/IQPlaceholderable.swift deleted file mode 100644 index f0ceea224..000000000 --- a/Example/Pods/IQKeyboardToolbar/IQKeyboardToolbar/Placeholderable/IQPlaceholderable.swift +++ /dev/null @@ -1,37 +0,0 @@ -// -// IQPlaceholderable.swift -// https://github.com/hackiftekhar/IQKeyboardToolbar -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import Foundation -import UIKit - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public protocol IQPlaceholderable: AnyObject { - - var placeholder: String? { get set } - var attributedPlaceholder: NSAttributedString? { get set } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc extension UITextField: IQPlaceholderable { } diff --git a/Example/Pods/IQKeyboardToolbar/LICENSE b/Example/Pods/IQKeyboardToolbar/LICENSE deleted file mode 100644 index 5d8eb9642..000000000 --- a/Example/Pods/IQKeyboardToolbar/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Example/Pods/IQKeyboardToolbar/README.md b/Example/Pods/IQKeyboardToolbar/README.md deleted file mode 100644 index 3b60eb810..000000000 --- a/Example/Pods/IQKeyboardToolbar/README.md +++ /dev/null @@ -1,85 +0,0 @@ -# IQKeyboardToolbar - -[![CI Status](https://img.shields.io/travis/hackiftekhar/IQKeyboardToolbar.svg?style=flat)](https://travis-ci.org/hackiftekhar/IQKeyboardToolbar) -[![Version](https://img.shields.io/cocoapods/v/IQKeyboardToolbar.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardToolbar) -[![License](https://img.shields.io/cocoapods/l/IQKeyboardToolbar.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardToolbar) -[![Platform](https://img.shields.io/cocoapods/p/IQKeyboardToolbar.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardToolbar) - -![Screenshot1](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardToolbar/master/Screenshot/IQKeyboardToolbarScreenshot.png) -![Screenshot2](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardToolbar/master/Screenshot/IQKeyboardToolbarScreenshot2.png) -![Screenshot3](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardToolbar/master/Screenshot/IQKeyboardToolbarScreenshot3.png) -![Screenshot4](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardToolbar/master/Screenshot/IQKeyboardToolbarScreenshot4.png) - -## Example - -To run the example project, clone the repo, and run `pod install` from the Example directory first. - -## Requirements - -## Installation - -IQKeyboardToolbar is available through [CocoaPods](https://cocoapods.org). To install -it, simply add the following line to your Podfile: - -```ruby -pod 'IQKeyboardToolbar' -``` - -## Usage - -This library can be used to add toolbar to the keyboard - -Previous Next and Done button -```swift - textField.iq.addPreviousNextDone(target: self, - previousAction: #selector(textField1PreviousAction), - nextAction: #selector(textField1NextAction), - doneAction: #selector(doneAction), showPlaceholder: true) -``` - -Previous Next and Right button with customized titles or images -```swift - textField.iq.addPreviousNextRight(target: self, - previousConfiguration: .init(title: "Prev", action: #selector(textView1PreviousAction)), - nextConfiguration: .init(title: "Next", action: #selector(textView1NextAction)), - rightConfiguration: .init(image: UIImage(systemName: "chevron.down")!, action: #selector(doneAction)), - title: "Text View 1") -``` - -Action button -```swift - textField.iq.addDone(target: self, - action: #selector(doneAction), - title: "Select Account") - textField.iq.toolbar.titleBarButton.setTarget(self, - action: #selector(selectAccount)) -``` - -Additional leading and trailing buttons -```swift - textField.iq.toolbar.additionalLeadingItems = [.init(barButtonSystemItem: .add, target: self, action: #selector(addAction))] - textField.iq.toolbar.additionalTrailingItems = [.init(barButtonSystemItem: .camera, target: self, action: #selector(cameraAction))] - textField.iq.addToolbar(target: self, - previousConfiguration: nil, - nextConfiguration: .init(title: "Next", action: #selector(doneAction)), - rightConfiguration: .init(title: "Finish", action: #selector(doneAction)), - title: "TextView 2") -``` - -Hide Placeholder -```swift - textField1.iq.hidePlaceholder = true -``` - -Customized Placeholder -```swift - textField1.iq.placeholder = "My Own Placeholder" -``` - -## Author - -Iftekhar Qurashi hack.iftekhar@gmail.com - -## License - -IQKeyboardToolbar is available under the MIT license. See the LICENSE file for more info. diff --git a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Assets/PrivacyInfo.xcprivacy b/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Assets/PrivacyInfo.xcprivacy deleted file mode 100644 index 90211906c..000000000 --- a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Assets/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,14 +0,0 @@ - - - - - NSPrivacyAccessedAPITypes - - NSPrivacyTrackingDomains - - NSPrivacyCollectedDataTypes - - NSPrivacyTracking - - - diff --git a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Configuration/IQKeyboardToolbarConfiguration.swift b/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Configuration/IQKeyboardToolbarConfiguration.swift deleted file mode 100644 index efebfb95e..000000000 --- a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Configuration/IQKeyboardToolbarConfiguration.swift +++ /dev/null @@ -1,90 +0,0 @@ -// -// IQKeyboardToolbarConfiguration.swift -// https://github.com/hackiftekhar/IQKeyboardToolbarManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardToolbar - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers public final class IQKeyboardToolbarConfiguration: NSObject { - - /** - If YES, then uses textInputView's tintColor property, - otherwise tint color is default. Default is NO. - */ - public var useTextInputViewTintColor: Bool = false - - /** - This is used for toolbar.tintColor when textInputView.keyboardAppearance is UIKeyboardAppearanceDefault. - If useTextInputViewTintColor is YES then this property is ignored. Default is nil and uses black color. - */ - public var tintColor: UIColor? - - /** - This is used for toolbar.barTintColor. Default is nil. - */ - public var barTintColor: UIColor? - - /** - IQPreviousNextDisplayModeDefault: Show NextPrevious when there are more than 1 textInputView otherwise hide. - IQPreviousNextDisplayModeAlwaysHide: Do not show NextPrevious buttons in any case. - IQPreviousNextDisplayModeAlwaysShow: Always show nextPrevious buttons, - if there are more than 1 textInputView then both buttons will be visible but will be shown as disabled. - */ - public var previousNextDisplayMode: IQPreviousNextDisplayMode = .default - - /** - /** - IQAutoToolbarBySubviews: Creates Toolbar according to subview's hierarchy of TextInputView's in view. - IQAutoToolbarByTag: Creates Toolbar according to tag property of TextInputView's. - IQAutoToolbarByPosition: Creates Toolbar according to the y,x position - of textInputView in it's superview coordinate. - - Default is IQAutoToolbarBySubviews. - */ - AutoToolbar managing behavior. Default is IQAutoToolbarBySubviews. - */ - public var manageBehavior: IQKeyboardToolbarManageBehavior = .bySubviews - - /** - Buttons configuration displayed on the toolbar, the selector parameter is ignored in below configuration - */ - public var previousBarButtonConfiguration: IQBarButtonItemConfiguration? - public var nextBarButtonConfiguration: IQBarButtonItemConfiguration? - public var doneBarButtonConfiguration: IQBarButtonItemConfiguration? - - public let placeholderConfiguration: IQKeyboardToolbarPlaceholderConfiguration = .init() -} - -// swiftlint:disable unused_setter_value -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardToolbarConfiguration { - - @available(*, unavailable, renamed: "useTextInputViewTintColor") - var useTextFieldTintColor: Bool { - get { fatalError() } - set {} - } -} -// swiftlint:enable unused_setter_value diff --git a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Constants/IQKeyboardToolbarConstants.swift b/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Constants/IQKeyboardToolbarConstants.swift deleted file mode 100644 index ee76ea3ce..000000000 --- a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Constants/IQKeyboardToolbarConstants.swift +++ /dev/null @@ -1,68 +0,0 @@ -// -// IQKeyboardToolbarConstants.swift -// https://github.com/hackiftekhar/IQKeyboardToolbarManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import Foundation - -// MARK: IQKeyboardToolbarManageBehavior - -/** -`IQAutoToolbarBySubviews` -Creates Toolbar according to subview's hierarchy of textInputView's in view. - -`IQAutoToolbarByTag` -Creates Toolbar according to tag property of textInputView's. - -`IQAutoToolbarByPosition` -Creates Toolbar according to the y,x position of textInputView in it's superview coordinate. -*/ -@available(iOSApplicationExtension, unavailable) -@objc public enum IQKeyboardToolbarManageBehavior: Int { - case bySubviews - case byTag - case byPosition -} - -@available(*, unavailable, renamed: "IQKeyboardToolbarManageBehavior") -@objc public enum IQAutoToolbarManageBehavior: Int { - case bySubviews - case byTag - case byPosition -} - -/** - `IQPreviousNextDisplayModeDefault` - Show NextPrevious when there are more than 1 textInputView otherwise hide. - - `IQPreviousNextDisplayModeAlwaysHide` - Do not show NextPrevious buttons in any case. - - `IQPreviousNextDisplayModeAlwaysShow` - Always show nextPrevious buttons, - if there are more than 1 textInputView then both buttons will be visible but will be shown as disabled. - */ -@available(iOSApplicationExtension, unavailable) -@objc public enum IQPreviousNextDisplayMode: Int { - case `default` - case alwaysHide - case alwaysShow -} diff --git a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Debug/IQKeyboardToolbarManager+Debug.swift b/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Debug/IQKeyboardToolbarManager+Debug.swift deleted file mode 100644 index 8953423ff..000000000 --- a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Debug/IQKeyboardToolbarManager+Debug.swift +++ /dev/null @@ -1,52 +0,0 @@ -// -// IQKeyboardToolbarManager+Debug -// https://github.com/hackiftekhar/IQKeyboardToolbarManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import Foundation - -// MARK: Debugging & Developer options -@available(iOSApplicationExtension, unavailable) -@MainActor -internal extension IQKeyboardToolbarManager { - - func showLog(_ logString: String, indentation: Int = 0) { - - guard isDebuggingEnabled else { - return - } - - if indentation < 0 { - self.logIndentation = max(0, self.logIndentation + indentation) - } - - var preLog: String = "IQKeyboardToolbarManager" - for _ in 0 ... self.logIndentation { - preLog += "|\t" - } - - print(preLog + logString) - - if indentation > 0 { - self.logIndentation += indentation - } - } -} diff --git a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/IQDeepResponderContainerView.swift b/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/IQDeepResponderContainerView.swift deleted file mode 100644 index abd75661f..000000000 --- a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/IQDeepResponderContainerView.swift +++ /dev/null @@ -1,29 +0,0 @@ -// -// IQDeepResponderContainerView.swift -// https://github.com/hackiftekhar/IQKeyboardToolbarManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers open class IQDeepResponderContainerView: UIView { -} diff --git a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Deprecated.swift b/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Deprecated.swift deleted file mode 100644 index fc34aa01b..000000000 --- a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Deprecated.swift +++ /dev/null @@ -1,183 +0,0 @@ -// -// IQKeyboardToolbarManager+Deprecated.swift -// https://github.com/hackiftekhar/IQKeyboardToolbarManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardToolbar - -// swiftlint:disable unused_setter_value -// swiftlint:disable identifier_name -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardToolbarManager { - - @available(*, unavailable, renamed: "isEnabled") - var enableAutoToolbar: Bool { - get { false } - set { } - } - - @available(*, unavailable, renamed: "playInputClicks") - var shouldPlayInputClicks: Bool { - get { false } - set { } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardToolbarManager { - - @available(*, unavailable, renamed: "toolbarConfiguration.manageBehavior") - var toolbarManageBehaviour: IQAutoToolbarManageBehavior { - get { .bySubviews } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.useTextInputViewTintColor") - var shouldToolbarUsesTextFieldTintColor: Bool { - get { false } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.tintColor") - var toolbarTintColor: UIColor? { - get { nil } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.barTintColor") - var toolbarBarTintColor: UIColor? { - get { nil } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.previousNextDisplayMode") - var previousNextDisplayMode: IQPreviousNextDisplayMode { - get { .default } - set { } - } - - @available(*, unavailable, renamed: "deepResponderAllowedContainerClasses") - var toolbarPreviousNextAllowedClasses: [UIView.Type] { - get { [] } - set { } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardToolbarManager { - @available(*, unavailable, renamed: "toolbarConfiguration.previousBarButtonConfiguration.image", - message: "To change, please assign a new toolbarConfiguration.previousBarButtonConfiguration") - var toolbarPreviousBarButtonItemImage: UIImage? { - get { nil } - set { } - } - @available(*, unavailable, renamed: "toolbarConfiguration.previousBarButtonConfiguration.title", - message: "To change, please assign a new toolbarConfiguration.previousBarButtonConfiguration") - var toolbarPreviousBarButtonItemText: String? { - get { nil } - set { } - } - @available(*, unavailable, renamed: "toolbarConfiguration.previousBarButtonConfiguration.accessibilityLabel", - message: "To change, please assign a new toolbarConfiguration.previousBarButtonConfiguration") - var toolbarPreviousBarButtonItemAccessibilityLabel: String? { - get { nil } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.nextBarButtonConfiguration.image", - message: "To change, please assign a new toolbarConfiguration.nextBarButtonConfiguration") - var toolbarNextBarButtonItemImage: UIImage? { - get { nil } - set { } - } - @available(*, unavailable, renamed: "toolbarConfiguration.nextBarButtonConfiguration.title", - message: "To change, please assign a new toolbarConfiguration.nextBarButtonConfiguration") - var toolbarNextBarButtonItemText: String? { - get { nil } - set { } - } - @available(*, unavailable, renamed: "toolbarConfiguration.nextBarButtonConfiguration.accessibilityLabel", - message: "To change, please assign a new toolbarConfiguration.nextBarButtonConfiguration") - var toolbarNextBarButtonItemAccessibilityLabel: String? { - get { nil } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.doneBarButtonConfiguration.image", - message: "To change, please assign a new toolbarConfiguration.doneBarButtonConfiguration") - var toolbarDoneBarButtonItemImage: UIImage? { - get { nil } - set { } - } - @available(*, unavailable, renamed: "toolbarConfiguration.doneBarButtonConfiguration.title", - message: "To change, please assign a new toolbarConfiguration.doneBarButtonConfiguration") - var toolbarDoneBarButtonItemText: String? { - get { nil } - set { } - } - @available(*, unavailable, renamed: "toolbarConfiguration.doneBarButtonConfiguration.accessibilityLabel", - message: "To change, please assign a new toolbarConfiguration.doneBarButtonConfiguration") - var toolbarDoneBarButtonItemAccessibilityLabel: String? { - get { nil } - set { } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardToolbarManager { - - @available(*, unavailable, renamed: "toolbarConfiguration.placeholderConfiguration.accessibilityLabel") - var toolbarTitleBarButtonItemAccessibilityLabel: String? { - get { nil } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.placeholderConfiguration.showPlaceholder") - var shouldShowToolbarPlaceholder: Bool { - get { false } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.placeholderConfiguration.font") - var placeholderFont: UIFont? { - get { nil } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.placeholderConfiguration.color") - var placeholderColor: UIColor? { - get { nil } - set { } - } - - @available(*, unavailable, renamed: "toolbarConfiguration.placeholderConfiguration.buttonColor") - var placeholderButtonColor: UIColor? { - get { nil } - set { } - } -} -// swiftlint:enable unused_setter_value -// swiftlint:enable identifier_name diff --git a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Internal.swift b/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Internal.swift deleted file mode 100644 index 13d4c86c4..000000000 --- a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Internal.swift +++ /dev/null @@ -1,143 +0,0 @@ -// -// IQKeyboardToolbarManager+Internal.swift -// https://github.com/hackiftekhar/IQKeyboardToolbarManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQTextInputViewNotification -import IQKeyboardCore - -@available(iOSApplicationExtension, unavailable) -@MainActor -internal extension IQKeyboardToolbarManager { - - /** Get all textInputView siblings of textInputView. */ - func responderViews(of textInputView: some IQTextInputView) -> [any IQTextInputView]? { - - var superConsideredView: UIView? - - // If find any consider responderView in it's upper hierarchy then will get deepResponderView. - for allowedClass in deepResponderAllowedContainerClasses { - superConsideredView = (textInputView as UIView).iq.superviewOf(type: allowedClass) - if superConsideredView != nil { - break - } - } - - let swiftUIHostingView: UIView? = Self.getSwiftUIHostingView(textInputView: textInputView) - - // (Enhancement ID: #22) - // If there is a superConsideredView in view's hierarchy, - // then fetching all it's subview that responds. - // No sorting for superConsideredView, it's by subView position. - if let view: UIView = swiftUIHostingView { - return view.iq.deepResponderViews() - } else if let view: UIView = superConsideredView { - return view.iq.deepResponderViews() - } else { // Otherwise fetching all the siblings - - let textInputViews: [any IQTextInputView] = textInputView.iq.responderSiblings() - - // Sorting textInputViews according to behavior - switch toolbarConfiguration.manageBehavior { - // If autoToolbar behavior is bySubviews, then returning it. - case .bySubviews: return textInputViews - - // If autoToolbar behavior is by tag, then sorting it according to tag property. - case .byTag: return textInputViews.sortedByTag() - - // If autoToolbar behavior is by tag, then sorting it according to tag property. - case .byPosition: return textInputViews.sortedByPosition() - } - } - } - - func privateIsEnableAutoToolbar(of textInputView: some IQTextInputView) -> Bool { - - var isEnabled: Bool = isEnabled - - guard var textInputViewController = (textInputView as UIView).iq.viewContainingController() else { - return isEnabled - } - - // If it is searchBar textInputView embedded in Navigation Bar - if (textInputView as UIView).iq.textFieldSearchBar() != nil, - let navController: UINavigationController = textInputViewController as? UINavigationController, - let topController: UIViewController = navController.topViewController { - textInputViewController = topController - } - - if !isEnabled, enabledToolbarClasses.contains(where: { textInputViewController.isKind(of: $0) }) { - isEnabled = true - } - - if isEnabled { - - // If found any toolbar disabled classes then return. - if disabledToolbarClasses.contains(where: { textInputViewController.isKind(of: $0) }) { - isEnabled = false - } - - // Special Controllers - if isEnabled { - - let classNameString: String = "\(type(of: textInputViewController.self))" - - // _UIAlertControllerTextFieldViewController - if classNameString.contains("UIAlertController"), - classNameString.hasSuffix("TextFieldViewController") { - isEnabled = false - } - } - } - - return isEnabled - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -private extension IQKeyboardToolbarManager { - - private static func getSwiftUIHostingView(textInputView: some IQTextInputView) -> UIView? { - var swiftUIHostingView: UIView? - let swiftUIHostingViewName: String = "UIHostingView<" - var superView: UIView? = textInputView.superview - while let aSuperview: UIView = superView { - - let classNameString: String = { - var name: String = "\(type(of: aSuperview.self))" - if name.hasPrefix("_") { - name.removeFirst() - } - return name - }() - - if classNameString.hasPrefix(swiftUIHostingViewName) { - swiftUIHostingView = aSuperview - break - } - - superView = aSuperview.superview - } - return swiftUIHostingView - } -} diff --git a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager.swift b/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager.swift deleted file mode 100644 index 5186e05e6..000000000 --- a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager.swift +++ /dev/null @@ -1,142 +0,0 @@ -// -// IQKeyboardToolbarManager.swift -// https://github.com/hackiftekhar/IQKeyboardToolbarManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQTextInputViewNotification -import IQKeyboardCore -import IQKeyboardToolbar - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers public final class IQKeyboardToolbarManager: NSObject { - - private let textInputViewObserver: IQTextInputViewNotification = .init() - - internal var textInputView: (some IQTextInputView)? { - textInputViewObserver.textInputView - } - - /** - Returns the default singleton instance. - */ - @MainActor - @objc public static let shared: IQKeyboardToolbarManager = .init() - - /** - Automatic add the toolbar functionality. Default is false. - */ - public var isEnabled: Bool = false { - didSet { - reloadInputViews() - showLog("isEnabled: \(isEnabled ? "Yes" : "NO")") - } - } - - public var isDebuggingEnabled: Bool = false - - /** - Configurations related to the toolbar display over the keyboard. - */ - public let toolbarConfiguration: IQKeyboardToolbarConfiguration = .init() - - // MARK: UISound handling - - /** - If YES, then it plays inputClick sound on next/previous/done click. - */ - public var playInputClicks: Bool = true - - /** - Disable automatic toolbar creation within the scope of disabled toolbar viewControllers classes. - Within this scope, 'isEnabled' property is ignored. Class should be kind of UIViewController. - */ - public var disabledToolbarClasses: [UIViewController.Type] = [ - UIAlertController.self, - UIInputViewController.self - ] - - /** - Enable automatic toolbar creation within the scope of enabled toolbar viewControllers classes. - Within this scope, 'isEnabled' property is ignored. Class should be kind of UIViewController. - If same Class is added in disabledToolbarClasses list, then enabledToolbarClasses will be ignore. - */ - public var enabledToolbarClasses: [UIViewController.Type] = [] - - /** - Allowed subclasses of UIView to add all inner textInputView, - this will allow to navigate between textInputView contains in different superview. - Class should be kind of UIView. - */ - public var deepResponderAllowedContainerClasses: [UIView.Type] = [ - UITableView.self, - UICollectionView.self, - IQDeepResponderContainerView.self - ] - - internal var logIndentation = 0 - - internal override init() { - super.init() - - addTextInputViewObserver() - - // (Bug ID: #550) - // Loading IQKeyboardToolbar, IQTitleBarButtonItem, IQBarButtonItem to fix first time keyboard appearance delay - // If you experience exception breakpoint issue at below line then try these solutions - // https://stackoverflow.com/questions/27375640/all-exception-break-point-is-stopping-for-no-reason-on-simulator - DispatchQueue.main.async { - let textInputView: UITextField = UITextField() - textInputView.iq.addDone(target: nil, action: #selector(self.doneAction(_:))) - textInputView.iq.addPreviousNextDone(target: nil, - previousAction: #selector(self.previousAction(_:)), - nextAction: #selector(self.nextAction(_:)), - doneAction: #selector(self.doneAction(_:))) - } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -private extension IQKeyboardToolbarManager { - - private func removeTextInputViewObserver() { - textInputViewObserver.unsubscribe(identifier: "IQKeyboardToolbarManager") - } - - private func addTextInputViewObserver() { - textInputViewObserver.subscribe(identifier: "IQKeyboardToolbarManager", - changeHandler: { [weak self] event, textInputView in - guard let self = self else { return } - guard (textInputView as UIView).iq.isAlertViewTextField() == false else { - return - } - - switch event { - case .beginEditing: - reloadInputViews() - case .endEditing: - removeToolbarIfRequired(of: textInputView) - } - }) - } -} diff --git a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Action.swift b/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Action.swift deleted file mode 100644 index 1a7981920..000000000 --- a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Action.swift +++ /dev/null @@ -1,210 +0,0 @@ -// -// IQKeyboardToolbarManager+Action.swift -// https://github.com/hackiftekhar/IQKeyboardToolbarManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore -import IQKeyboardToolbar - -// MARK: Previous next button actions -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardToolbarManager { - - /** - Returns YES if can navigate to previous responder textInputView, otherwise NO. - */ - var canGoPrevious: Bool { - // If it is not first textInputView. then it's previous object canBecomeFirstResponder. - guard let textInputView: any IQTextInputView = self.textInputView, - let textInputViews: [any IQTextInputView] = responderViews(of: textInputView), - let index: Int = textInputViews.firstIndex(where: { $0 == textInputView }), - index > 0 else { - return false - } - return true - } - - /** - Returns YES if can navigate to next responder textInputViews, otherwise NO. - */ - var canGoNext: Bool { - // If it is not first textInputView. then it's previous object canBecomeFirstResponder. - guard let textInputView: any IQTextInputView = self.textInputView, - let textInputViews: [any IQTextInputView] = responderViews(of: textInputView), - let index: Int = textInputViews.firstIndex(where: { $0 == textInputView }), - index < textInputViews.count-1 else { - return false - } - return true - } - - /** - Navigate to previous responder textInputViews - */ - @discardableResult - func goPrevious() -> Bool { - - // If it is not first textInputView. then it's previous object becomeFirstResponder. - guard let textInputView: any IQTextInputView = self.textInputView, - let textInputViews: [any IQTextInputView] = responderViews(of: textInputView), - let index: Int = textInputViews.firstIndex(where: { $0 == textInputView }), - index > 0 else { - return false - } - - let nextTextInputView: any IQTextInputView = textInputViews[index-1] - - let isAcceptAsFirstResponder: Bool = nextTextInputView.becomeFirstResponder() - - // If it refuses then becoming previous textInputView as first responder again. (Bug ID: #96) - if !isAcceptAsFirstResponder { - showLog("Refuses to become first responder: \(nextTextInputView)") - } - - return isAcceptAsFirstResponder - } - - /** - Navigate to next responder textInputView. - */ - @discardableResult - func goNext() -> Bool { - - // If it is not first textInputView. then it's previous object becomeFirstResponder. - guard let textInputView: any IQTextInputView = self.textInputView, - let textInputViews: [any IQTextInputView] = responderViews(of: textInputView), - let index: Int = textInputViews.firstIndex(where: { $0 == textInputView }), - index < textInputViews.count-1 else { - return false - } - - let nextTextInputView: any IQTextInputView = textInputViews[index+1] - - let isAcceptAsFirstResponder: Bool = nextTextInputView.becomeFirstResponder() - - // If it refuses then becoming previous textInputView as first responder again. (Bug ID: #96) - if !isAcceptAsFirstResponder { - showLog("Refuses to become first responder: \(nextTextInputView)") - } - - return isAcceptAsFirstResponder - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -internal extension IQKeyboardToolbarManager { - - /** previousAction. */ - func previousAction(_ barButton: IQBarButtonItem) { - - // If user wants to play input Click sound. - if playInputClicks { - // Play Input Click Sound. - UIDevice.current.playInputClick() - } - - guard canGoPrevious, - let textInputView: any IQTextInputView = self.textInputView else { - return - } - - let isAcceptedAsFirstResponder: Bool = goPrevious() - - if isAcceptedAsFirstResponder { - Self.sendInvokeAction(of: barButton, sender: textInputView) - } - } - - /** nextAction. */ - func nextAction(_ barButton: IQBarButtonItem) { - - // If user wants to play input Click sound. - if playInputClicks { - // Play Input Click Sound. - UIDevice.current.playInputClick() - } - - guard canGoNext, - let textInputView: any IQTextInputView = self.textInputView else { - return - } - - let isAcceptedAsFirstResponder: Bool = goNext() - - if isAcceptedAsFirstResponder { - Self.sendInvokeAction(of: barButton, sender: textInputView) - } - } - - /** doneAction. Resigning current textInputView. */ - func doneAction(_ barButton: IQBarButtonItem) { - - // If user wants to play input Click sound. - if playInputClicks { - // Play Input Click Sound. - UIDevice.current.playInputClick() - } - - guard let textInputView: any IQTextInputView = self.textInputView else { - return - } - - // Resign textInputView. - let isResignedFirstResponder: Bool = textInputView.resignFirstResponder() - - if isResignedFirstResponder { - Self.sendInvokeAction(of: barButton, sender: textInputView) - } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -private extension IQKeyboardToolbarManager { - private static func sendInvokeAction(of barButton: IQBarButtonItem, sender: some IQTextInputView) { - // Handling search bar special case - if let searchBar: UISearchBar = sender.iq.textFieldSearchBar() { - switch barButton { - case sender.internalToolbar.nextBarButton: - searchBar.internalToolbar.nextBarButton.invocation?.invoke(from: searchBar) - case sender.internalToolbar.previousBarButton: - searchBar.internalToolbar.previousBarButton.invocation?.invoke(from: searchBar) - case sender.internalToolbar.doneBarButton: - searchBar.internalToolbar.doneBarButton.invocation?.invoke(from: searchBar) - default: - break - } - } else { - barButton.invocation?.invoke(from: sender) - } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -fileprivate extension IQTextInputView { - var internalToolbar: IQKeyboardToolbar { - return iq.toolbar - } -} diff --git a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Toolbar.swift b/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Toolbar.swift deleted file mode 100644 index 52b78954a..000000000 --- a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Toolbar.swift +++ /dev/null @@ -1,273 +0,0 @@ -// -// IQKeyboardToolbarManager+Toolbar.swift -// https://github.com/hackiftekhar/IQKeyboardToolbarManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore -import IQKeyboardToolbar - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQKeyboardToolbarManager { - /** reloadInputViews to reload toolbar buttons enable/disable state on the fly Enhancement ID #434. */ - func reloadInputViews() { - - guard let textInputView = textInputView else { return } - // If enabled then adding toolbar. - if privateIsEnableAutoToolbar(of: textInputView) { - self.addToolbarIfRequired(of: textInputView) - } else { - self.removeToolbarIfRequired(of: textInputView) - } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -internal extension IQKeyboardToolbarManager { - - /** - Default tag for toolbar with Done button -1001 - */ - private static let toolbarTag = -1001 - - // swiftlint:disable function_body_length - // swiftlint:disable cyclomatic_complexity - /** - Add toolbar if it is required to add on textInputViews and it's siblings. - */ - func addToolbarIfRequired(of textInputView: some IQTextInputView) { - - // Either there is no inputAccessoryView or - // if accessoryView is not appropriate for current situation - // (There is Previous/Next/Done toolbar) - guard let siblings: [any IQTextInputView] = responderViews(of: textInputView), !siblings.isEmpty, - !Self.hasUserDefinedInputAccessoryView(textInputView: textInputView) else { - return - } - - showLog(">>>>> \(#function) started >>>>>", indentation: 1) - defer { - showLog("<<<<< \(#function) ended <<<<<", indentation: -1) - } - - showLog("Found \(siblings.count) responder sibling(s)") - let rightConfiguration: IQBarButtonItemConfiguration = getRightConfiguration() - - let isTableCollectionView: Bool - if (textInputView as UIView).iq.superviewOf(type: UITableView.self) != nil || - (textInputView as UIView).iq.superviewOf(type: UICollectionView.self) != nil { - isTableCollectionView = true - } else { - isTableCollectionView = false - } - - let previousNextDisplayMode: IQPreviousNextDisplayMode = toolbarConfiguration.previousNextDisplayMode - - let havePreviousNext: Bool - switch previousNextDisplayMode { - case .default: - // If the textInputView is part of UITableView/UICollectionView then we should be exposing previous/next too - // Because at this time we don't know previous or next cell if it contains another textInputView to move. - if isTableCollectionView { - havePreviousNext = true - } else if siblings.count <= 1 { - // If only one object is found, then adding only Done button. - havePreviousNext = false - } else { - havePreviousNext = true - } - case .alwaysShow: - havePreviousNext = true - case .alwaysHide: - havePreviousNext = false - } - - let placeholderConfig: IQKeyboardToolbarPlaceholderConfiguration = toolbarConfiguration.placeholderConfiguration - let titleText: String? = placeholderConfig.showPlaceholder ? textInputView.iq.drawingPlaceholder : nil - if havePreviousNext { - let prevConfiguration: IQBarButtonItemConfiguration = getPreviousConfiguration() - let nextConfiguration: IQBarButtonItemConfiguration = getNextConfiguration() - - textInputView.iq.addToolbar(target: self, - previousConfiguration: prevConfiguration, - nextConfiguration: nextConfiguration, - rightConfiguration: rightConfiguration, title: titleText, - titleAccessibilityLabel: placeholderConfig.accessibilityLabel) - if isTableCollectionView { - // (Bug ID: #56) - // In case of UITableView, the next/previous buttons should always be enabled. - textInputView.iq.toolbar.previousBarButton.isEnabled = true - textInputView.iq.toolbar.nextBarButton.isEnabled = true - } else { - // If first textInputView, then previous should not be enabled. - if let first = siblings.first { - textInputView.iq.toolbar.previousBarButton.isEnabled = first != textInputView - } else { - textInputView.iq.toolbar.previousBarButton.isEnabled = false - } - // If last textInputView, then next should not be enabled. - if let last = siblings.last { - textInputView.iq.toolbar.nextBarButton.isEnabled = last != textInputView - } else { - textInputView.iq.toolbar.nextBarButton.isEnabled = false - } - } - } else { - textInputView.iq.addToolbar(target: self, rightConfiguration: rightConfiguration, - title: titleText, - titleAccessibilityLabel: placeholderConfig.accessibilityLabel) - } - // (Bug ID: #78) - textInputView.inputAccessoryView?.tag = IQKeyboardToolbarManager.toolbarTag - - Self.applyToolbarConfiguration(textInputView: textInputView, toolbarConfiguration: toolbarConfiguration) - } - // swiftlint:enable function_body_length - // swiftlint:enable cyclomatic_complexity - - /** Remove any toolbar if it is IQKeyboardToolbar. */ - func removeToolbarIfRequired(of textInputView: some IQTextInputView) { // (Bug ID: #18) - - guard let toolbar: IQKeyboardToolbar = textInputView.inputAccessoryView as? IQKeyboardToolbar, - toolbar.tag == IQKeyboardToolbarManager.toolbarTag else { - return - } - - showLog(">>>>> \(#function) started >>>>>", indentation: 1) - - defer { - showLog("<<<<< \(#function) ended <<<<<", indentation: -1) - } - - textInputView.inputAccessoryView = nil - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -private extension IQKeyboardToolbarManager { - - static func hasUserDefinedInputAccessoryView(textInputView: some IQTextInputView) -> Bool { - guard let inputAccessoryView: UIView = textInputView.inputAccessoryView, - inputAccessoryView.tag != IQKeyboardToolbarManager.toolbarTag else { return false } - - let swiftUIAccessoryNamePrefixes: [String] = [ - "RootUIView", // iOS 18 - "InputAccessoryHost" // iOS 17 and below - ] - let classNameString: String = "\(type(of: inputAccessoryView.classForCoder))" - - // If it's SwiftUI accessory view but doesn't have a height (fake accessory view), then we should - // add our own accessoryView otherwise, keep the SwiftUI accessoryView since user has added it from code - guard swiftUIAccessoryNamePrefixes.contains(where: { classNameString.hasPrefix($0)}), - inputAccessoryView.subviews.isEmpty else { - return true - } - return false - } - - func getRightConfiguration() -> IQBarButtonItemConfiguration { - let rightConfiguration: IQBarButtonItemConfiguration - if let configuration: IQBarButtonItemConfiguration = toolbarConfiguration.doneBarButtonConfiguration { - rightConfiguration = configuration - rightConfiguration.action = #selector(self.doneAction(_:)) - } else { - rightConfiguration = IQBarButtonItemConfiguration(systemItem: .done, action: #selector(self.doneAction(_:))) - rightConfiguration.accessibilityLabel = "Done" - } - return rightConfiguration - } - - func getPreviousConfiguration() -> IQBarButtonItemConfiguration { - let prevConfiguration: IQBarButtonItemConfiguration - if let configuration: IQBarButtonItemConfiguration = toolbarConfiguration.previousBarButtonConfiguration { - configuration.action = #selector(self.previousAction(_:)) - prevConfiguration = configuration - } else { - let chevronUp: UIImage = UIImage(systemName: "chevron.up") ?? UIImage() - prevConfiguration = IQBarButtonItemConfiguration(image: chevronUp, - action: #selector(self.previousAction(_:))) - prevConfiguration.accessibilityLabel = "Previous" - } - return prevConfiguration - } - - func getNextConfiguration() -> IQBarButtonItemConfiguration { - let nextConfiguration: IQBarButtonItemConfiguration - if let configuration: IQBarButtonItemConfiguration = toolbarConfiguration.nextBarButtonConfiguration { - configuration.action = #selector(self.nextAction(_:)) - nextConfiguration = configuration - } else { - let chevronDown: UIImage = UIImage(systemName: "chevron.down") ?? UIImage() - nextConfiguration = IQBarButtonItemConfiguration(image: chevronDown, - action: #selector(self.nextAction(_:))) - nextConfiguration.accessibilityLabel = "Next" - } - return nextConfiguration - } - - static func applyToolbarConfiguration(textInputView: some IQTextInputView, - toolbarConfiguration: IQKeyboardToolbarConfiguration) { - - let toolbar: IQKeyboardToolbar = textInputView.iq.toolbar - - // Setting toolbar tintColor // (Enhancement ID: #30) - if toolbarConfiguration.useTextInputViewTintColor { - toolbar.tintColor = textInputView.tintColor - } else { - toolbar.tintColor = toolbarConfiguration.tintColor - } - - // Bar style according to keyboard appearance - switch textInputView.keyboardAppearance { - case .dark: - toolbar.barStyle = .black - toolbar.barTintColor = nil - default: - toolbar.barStyle = .default - toolbar.barTintColor = toolbarConfiguration.barTintColor - } - - // Setting toolbar title font. // (Enhancement ID: #30) - guard toolbarConfiguration.placeholderConfiguration.showPlaceholder, - !textInputView.iq.hidePlaceholder else { - toolbar.titleBarButton.title = nil - return - } - - // Updating placeholder font to toolbar. //(Bug ID: #148, #272) - if toolbar.titleBarButton.title == nil || - toolbar.titleBarButton.title != textInputView.iq.drawingPlaceholder { - toolbar.titleBarButton.title = textInputView.iq.drawingPlaceholder - } - - // Setting toolbar title font. // (Enhancement ID: #30) - toolbar.titleBarButton.titleFont = toolbarConfiguration.placeholderConfiguration.font - - // Setting toolbar title color. // (Enhancement ID: #880) - toolbar.titleBarButton.titleColor = toolbarConfiguration.placeholderConfiguration.color - - // Setting toolbar button title color. // (Enhancement ID: #880) - toolbar.titleBarButton.selectableTitleColor = toolbarConfiguration.placeholderConfiguration.buttonColor - } -} diff --git a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/UIKitExtensions/Array+Sort.swift b/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/UIKitExtensions/Array+Sort.swift deleted file mode 100644 index 83a8b9c2f..000000000 --- a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/UIKitExtensions/Array+Sort.swift +++ /dev/null @@ -1,58 +0,0 @@ -// -// Array+Sort.swift -// https://github.com/hackiftekhar/IQKeyboardToolbarManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore - -/** -UIView.subviews sorting category. -*/ -@available(iOSApplicationExtension, unavailable) -@MainActor -internal extension Array where Element: IQTextInputView { - - /** - Returns the array by sorting the UIView's by their tag property. - */ - func sortedByTag() -> [Element] { - - return sorted(by: { (obj1: Element, obj2: Element) -> Bool in - - return (obj1.tag < obj2.tag) - }) - } - - /** - Returns the array by sorting the UIView's by their tag property. - */ - func sortedByPosition() -> [Element] { - - return sorted(by: { (obj1: Element, obj2: Element) -> Bool in - if obj1.frame.minY != obj2.frame.minY { - return obj1.frame.minY < obj2.frame.minY - } else { - return obj1.frame.minX < obj2.frame.minX - } - }) - } -} diff --git a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+Responders.swift b/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+Responders.swift deleted file mode 100644 index 592399ee6..000000000 --- a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+Responders.swift +++ /dev/null @@ -1,179 +0,0 @@ -// -// UIView+Responders.swift -// https://github.com/hackiftekhar/IQKeyboardToolbarManager -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore - -@available(iOSApplicationExtension, unavailable) -@MainActor -private struct AssociatedKeys { - static var ignoreSwitchingByNextPrevious: Int = 0 -} - -/** -UIView category for managing textInputView -*/ -@available(iOSApplicationExtension, unavailable) -@MainActor -public extension IQKeyboardExtension where Base: IQTextInputView { - - /** - If ignoreSwitchingByNextPrevious is true then library will ignore this textInputView - while moving to other textInputView using keyboard toolbar next previous buttons. - Default is false - */ - var ignoreSwitchingByNextPrevious: Bool { - get { - if let base = base { - return objc_getAssociatedObject(base, &AssociatedKeys.ignoreSwitchingByNextPrevious) as? Bool ?? false - } - return false - } - set(newValue) { - if let base = base { - objc_setAssociatedObject(base, &AssociatedKeys.ignoreSwitchingByNextPrevious, - newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - } -} - -// swiftlint:disable unused_setter_value -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension UIView { - @available(*, unavailable, renamed: "iq.ignoreSwitchingByNextPrevious") - var ignoreSwitchingByNextPrevious: Bool { - get { false } - set { } - } -} -// swiftlint:enable unused_setter_value - -@available(iOSApplicationExtension, unavailable) -@MainActor -internal extension IQKeyboardExtension where Base: IQTextInputView { - - /** - Returns all siblings of the receiver which canBecomeFirstResponder. - */ - func responderSiblings() -> [any IQTextInputView] { - - // Getting all siblings - guard let siblings: [UIView] = base?.superview?.subviews else { return [] } - - // Array of textInputView. - var textInputViews: [any IQTextInputView] = [] - for view in siblings { - if let view = view as? any IQTextInputView, - view == base || !view.internalIgnoreSwitchingByNextPrevious, - view.internalCanBecomeFirstResponder() { - textInputViews.append(view) - } - } - - return textInputViews - } -} - -/** -UIView category for managing textInputView -*/ -@available(iOSApplicationExtension, unavailable) -@MainActor -internal extension IQKeyboardExtension where Base: UIView { - - /** - Returns all deep subViews of the receiver which canBecomeFirstResponder. - */ - func deepResponderViews() -> [any IQTextInputView] { - - guard let subviews: [UIView] = base?.subviews, !subviews.isEmpty else { return [] } - - // Array of textInputViews. - var textInputViews: [any IQTextInputView] = [] - - for view in subviews { - - if let view = view as? any IQTextInputView, - view == base || !view.internalIgnoreSwitchingByNextPrevious, - view.internalCanBecomeFirstResponder() { - textInputViews.append(view) - } - // Sometimes there are hidden or disabled views and textInputView inside them still recorded, - // so we added some more validations here (Bug ID: #458) - // Uncommented else (Bug ID: #625) - else if view.subviews.count != 0, - base?.isUserInteractionEnabled == true, - base?.isHidden == false, base?.alpha != 0.0 { - for deepView in view.iq.deepResponderViews() { - textInputViews.append(deepView) - } - } - } - - // subviews are returning in opposite order. Sorting according the frames 'y'. - return textInputViews.sorted(by: { (view1: any IQTextInputView, view2: any IQTextInputView) -> Bool in - - let frame1: CGRect = view1.convert(view1.bounds, to: base) - let frame2: CGRect = view2.convert(view2.bounds, to: base) - - if frame1.minY != frame2.minY { - return frame1.minY < frame2.minY - } else { - return frame1.minX < frame2.minX - } - }) - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -private extension IQKeyboardExtension where Base: IQTextInputView { - - func canBecomeFirstResponder() -> Bool { - - var canBecomeFirstResponder: Bool = base?.iqIsEnabled == true - - if canBecomeFirstResponder { - canBecomeFirstResponder = base?.isUserInteractionEnabled == true && - base?.isHidden == false && - base?.alpha != 0.0 && - !isAlertViewTextField() && - textFieldSearchBar() == nil - } - - return canBecomeFirstResponder - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -fileprivate extension IQTextInputView { - var internalIgnoreSwitchingByNextPrevious: Bool { - return iq.ignoreSwitchingByNextPrevious - } - func internalCanBecomeFirstResponder() -> Bool { - return iq.canBecomeFirstResponder() - } -} diff --git a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+RespondersObjc.swift b/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+RespondersObjc.swift deleted file mode 100644 index f8113e6c7..000000000 --- a/Example/Pods/IQKeyboardToolbarManager/IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+RespondersObjc.swift +++ /dev/null @@ -1,44 +0,0 @@ -// -// UIView+RespondersObjc.swift -// https://github.com/hackiftekhar/IQKeyboardToolbar -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -// MARK: For ObjectiveC Compatibility - -// swiftlint:disable identifier_name -@objc public extension UITextField { - - var iq_ignoreSwitchingByNextPrevious: Bool { - get { iq.ignoreSwitchingByNextPrevious } - set { iq.ignoreSwitchingByNextPrevious = newValue } - } -} - -@objc public extension UITextView { - - var iq_ignoreSwitchingByNextPrevious: Bool { - get { iq.ignoreSwitchingByNextPrevious } - set { iq.ignoreSwitchingByNextPrevious = newValue } - } -} -// swiftlint:enable identifier_name diff --git a/Example/Pods/IQKeyboardToolbarManager/LICENSE b/Example/Pods/IQKeyboardToolbarManager/LICENSE deleted file mode 100644 index 5d8eb9642..000000000 --- a/Example/Pods/IQKeyboardToolbarManager/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Example/Pods/IQKeyboardToolbarManager/README.md b/Example/Pods/IQKeyboardToolbarManager/README.md deleted file mode 100644 index d20fe8aa4..000000000 --- a/Example/Pods/IQKeyboardToolbarManager/README.md +++ /dev/null @@ -1,93 +0,0 @@ -# IQKeyboardToolbarManager - -[![CI Status](https://img.shields.io/travis/hackiftekhar/IQKeyboardToolbarManager.svg?style=flat)](https://travis-ci.org/hackiftekhar/IQKeyboardToolbarManager) -[![Version](https://img.shields.io/cocoapods/v/IQKeyboardToolbarManager.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardToolbarManager) -[![License](https://img.shields.io/cocoapods/l/IQKeyboardToolbarManager.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardToolbarManager) -[![Platform](https://img.shields.io/cocoapods/p/IQKeyboardToolbarManager.svg?style=flat)](https://cocoapods.org/pods/IQKeyboardToolbarManager) - -![Screenshot](https://raw.githubusercontent.com/hackiftekhar/IQKeyboardToolbarManager/master/Screenshot/IQKeyboardToolbarManagerScreenshot.png) - -## Example - -To run the example project, clone the repo, and run `pod install` from the Example directory first. - -## Requirements - -## Installation - -IQKeyboardToolbarManager is available through [CocoaPods](https://cocoapods.org). To install -it, simply add the following line to your Podfile: - -```ruby -pod 'IQKeyboardToolbarManager' -``` - -## Usage - -Enable toolbar handling in AppDelegate - -```swift -import UIKit -import IQKeyboardToolbarManager - -@UIApplicationMain -class AppDelegate: UIResponder, UIApplicationDelegate { - - func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { - IQKeyboardToolbarManager.shared.isEnabled = true - return true - } -``` - -Cuistomize Behavior -```swift - IQKeyboardToolbarManager.shared.toolbarConfiguration.useTextInputViewTintColor = true - IQKeyboardToolbarManager.shared.toolbarConfiguration.tintColor = UIColor.systemGreen - IQKeyboardToolbarManager.shared.toolbarConfiguration.barTintColor = UIColor.systemYellow - IQKeyboardToolbarManager.shared.toolbarConfiguration.previousNextDisplayMode = .alwaysShow - IQKeyboardToolbarManager.shared.toolbarConfiguration.manageBehavior = .byPosition - - IQKeyboardToolbarManager.shared.toolbarConfiguration.previousBarButtonConfiguration = ... // BarButton configuration to change title, image or system image etc - IQKeyboardToolbarManager.shared.toolbarConfiguration.nextBarButtonConfiguration = ... // BarButton configuration to change title, image or system image etc - IQKeyboardToolbarManager.shared.toolbarConfiguration.doneBarButtonConfiguration = ... // BarButton configuration to change title, image or system image etc - - IQKeyboardToolbarManager.shared.toolbarConfiguration.placeholderConfiguration.showPlaceholder = false - IQKeyboardToolbarManager.shared.toolbarConfiguration.placeholderConfiguration.font = UIFont.italicSystemFont(ofSize: 14) - IQKeyboardToolbarManager.shared.toolbarConfiguration.placeholderConfiguration.color = UIColor.systemPurple - IQKeyboardToolbarManager.shared.toolbarConfiguration.placeholderConfiguration.buttonColor = UIColor.systemBrown // This is used only if placeholder is an action button - - IQKeyboardToolbarManager.shared.playInputClicks = false - - IQKeyboardToolbarManager.shared.disabledToolbarClasses.append(ChatViewController.self) - IQKeyboardToolbarManager.shared.enabledToolbarClasses.append(LoginViewController.self) - IQKeyboardToolbarManager.shared.deepResponderAllowedContainerClasses.append(UIStackView.self) -``` - -Useful functions and variables -```swift - if IQKeyboardToolbarManager.shared.canGoPrevious { - ... - } - - if IQKeyboardToolbarManager.shared.canGoNext { - ... - } - - IQKeyboardToolbarManager.shared.goPrevious() - IQKeyboardToolbarManager.shared.goNext() - - IQKeyboardToolbarManager.shared.reloadInputViews() // If some textInputView hierarchy are changed on the fly then use this to reload button states -``` - -Useful functions and variables for TextInputView -```swift - textField.iq.ignoreSwitchingByNextPrevious = false -``` - -## Author - -Iftekhar Qurashi hack.iftekhar@gmail.com - -## License - -IQKeyboardToolbarManager is available under the MIT license. See the LICENSE file for more info. diff --git a/Example/Pods/IQTextInputViewNotification/IQTextInputViewNotification/Assets/PrivacyInfo.xcprivacy b/Example/Pods/IQTextInputViewNotification/IQTextInputViewNotification/Assets/PrivacyInfo.xcprivacy deleted file mode 100644 index 90211906c..000000000 --- a/Example/Pods/IQTextInputViewNotification/IQTextInputViewNotification/Assets/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,14 +0,0 @@ - - - - - NSPrivacyAccessedAPITypes - - NSPrivacyTrackingDomains - - NSPrivacyCollectedDataTypes - - NSPrivacyTracking - - - diff --git a/Example/Pods/IQTextInputViewNotification/IQTextInputViewNotification/Classes/IQTextInputViewInfo.swift b/Example/Pods/IQTextInputViewNotification/IQTextInputViewNotification/Classes/IQTextInputViewInfo.swift deleted file mode 100644 index 4b5e4f91e..000000000 --- a/Example/Pods/IQTextInputViewNotification/IQTextInputViewNotification/Classes/IQTextInputViewInfo.swift +++ /dev/null @@ -1,91 +0,0 @@ -// -// IQTextInputViewInfo.swift -// https://github.com/hackiftekhar/IQTextInputViewNotification -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardCore - -@available(iOSApplicationExtension, unavailable) -@MainActor -public struct IQTextInputViewInfo: Equatable { - - nonisolated public static func == (lhs: Self, rhs: Self) -> Bool { - return lhs.textInputView == rhs.textInputView && - lhs.event == rhs.event - } - - @MainActor - @objc public enum Event: Int { - case beginEditing - case endEditing - - public var name: String { - switch self { - case .beginEditing: - return "BeginEditing" - case .endEditing: - return "EndEditing" - } - } - } - - public let event: Event - - public let textInputView: any IQTextInputView - - internal init?(notification: Notification, event: Event) { - guard let view: any IQTextInputView = notification.object as? (any IQTextInputView) else { - return nil - } - - self.event = event - textInputView = view - } -} - -// MARK: Deprecated -@available(iOSApplicationExtension, unavailable) -public extension IQTextInputViewInfo { - - @available(*, unavailable, renamed: "event") - var name: Event { event } - - @available(*, unavailable, renamed: "textInputView") - var textFieldView: any IQTextInputView { textInputView } -} - -@available(*, unavailable, renamed: "IQTextInputViewInfo") -@MainActor -public struct IQTextFieldViewInfo: Equatable {} - -@available(iOSApplicationExtension, unavailable) -@objcMembers public class IQTextInputViewInfoObjC: NSObject { - private let wrappedValue: IQTextInputViewInfo - - public var event: IQTextInputViewInfo.Event { wrappedValue.event } - - public var textInputView: any IQTextInputView { wrappedValue.textInputView } - - init(wrappedValue: IQTextInputViewInfo){ - self.wrappedValue = wrappedValue - } -} diff --git a/Example/Pods/IQTextInputViewNotification/IQTextInputViewNotification/Classes/IQTextInputViewNotification.swift b/Example/Pods/IQTextInputViewNotification/IQTextInputViewNotification/Classes/IQTextInputViewNotification.swift deleted file mode 100644 index 8822d3923..000000000 --- a/Example/Pods/IQTextInputViewNotification/IQTextInputViewNotification/Classes/IQTextInputViewNotification.swift +++ /dev/null @@ -1,182 +0,0 @@ -// -// IQTextInputViewNotification.swift -// https://github.com/hackiftekhar/IQTextInputViewNotification -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import Combine -import IQKeyboardCore - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers public final class IQTextInputViewNotification: NSObject { - - private var storage: Set = [] - - private var textInputViewObservers: [AnyHashable: TextInputViewCompletion] = [:] - - private var findInteractionTextInputViewInfo: IQTextInputViewInfo? - - public private(set) var textInputViewInfo: IQTextInputViewInfo? - - public var event: IQTextInputViewInfo.Event? { - textInputViewInfo?.event - } - - public var textInputView: (any IQTextInputView)? { - return textInputViewInfo?.textInputView - } - - public override init() { - super.init() - - // Registering for TextInputView notification. - do { - let beginEditingNotificationNames: [Notification.Name] = [ - UITextField.textDidBeginEditingNotification, - UITextView.textDidBeginEditingNotification - ] - - for notificationName in beginEditingNotificationNames { - NotificationCenter.default.publisher(for: notificationName) - .compactMap({ IQTextInputViewInfo(notification: $0, event: .beginEditing) }) - .sink(receiveValue: { [weak self] info in - guard let self = self else { return } - self.didBeginEditing(info: info) - }) - .store(in: &storage) - } - } - - do { - let endEditingNotificationNames: [Notification.Name] = [ - UITextField.textDidEndEditingNotification, - UITextView.textDidEndEditingNotification - ] - - for notificationName in endEditingNotificationNames { - NotificationCenter.default.publisher(for: notificationName) - .compactMap({ IQTextInputViewInfo(notification: $0, event: .endEditing) }) - .sink(receiveValue: { [weak self] info in - guard let self = self else { return } - self.didEndEditing(info: info) - }) - .store(in: &storage) - } - } - } - - private func didBeginEditing(info: IQTextInputViewInfo) { - - if #available(iOS 16.0, *), - let findInteractionTextInputViewInfo = findInteractionTextInputViewInfo, - findInteractionTextInputViewInfo.textInputView.iqFindInteraction?.isFindNavigatorVisible == true { - // // This means the this didBeginEditing call comes due to find interaction - textInputViewInfo = findInteractionTextInputViewInfo - sendEvent(info: findInteractionTextInputViewInfo) - } else if textInputViewInfo != info { - textInputViewInfo = info - findInteractionTextInputViewInfo = nil - sendEvent(info: info) - } else { - findInteractionTextInputViewInfo = nil - } - } - - private func didEndEditing(info: IQTextInputViewInfo) { - - if textInputViewInfo != info { - if #available(iOS 16.0, *), - info.textInputView.iqIsFindInteractionEnabled { - findInteractionTextInputViewInfo = textInputViewInfo - } else { - findInteractionTextInputViewInfo = nil - } - textInputViewInfo = info - sendEvent(info: info) - textInputViewInfo = nil - } - } -} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQTextInputViewNotification { - - typealias TextInputViewCompletion = (_ event: IQTextInputViewInfo.Event, - _ textInputView: any IQTextInputView) -> Void - - func subscribe(identifier: AnyHashable, changeHandler: @escaping TextInputViewCompletion) { - textInputViewObservers[identifier] = changeHandler - - if let textInputViewInfo = textInputViewInfo { - changeHandler(textInputViewInfo.event, textInputViewInfo.textInputView) - } - } - - func unsubscribe(identifier: AnyHashable) { - textInputViewObservers[identifier] = nil - } - - func isSubscribed(identifier: AnyHashable) -> Bool { - return textInputViewObservers[identifier] != nil - } - - @nonobjc - private func sendEvent(info: IQTextInputViewInfo) { - - for block in textInputViewObservers.values { - block(info.event, info.textInputView) - } - } -} - -// MARK: Deprecated -@available(iOSApplicationExtension, unavailable) -@MainActor -public extension IQTextInputViewNotification { - - @available(*, unavailable, renamed: "textInputViewInfo") - var textFieldViewInfo: IQTextInputViewInfo? { textInputViewInfo } - - @available(*, unavailable, renamed: "textInputView") - var textFieldView: (some IQTextInputView)? { textInputView } - - @available(*, unavailable, renamed: "subscribe(identifier:changeHandler:)") - func registerTextFieldViewChange(identifier: AnyHashable, changeHandler: @escaping TextInputViewCompletion) {} - - @available(*, unavailable, renamed: "unsubscribe(identifier:)") - func unregisterSizeChange(identifier: AnyHashable) {} -} - -@available(*, unavailable, renamed: "IQTextInputViewNotification") -@MainActor -@objcMembers public final class IQTextFieldViewListener: NSObject {} - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc public extension IQTextInputViewNotification { - - var textInputViewInfoObjc: IQTextInputViewInfoObjC? { - guard let textInputViewInfo = textInputViewInfo else { return nil } - return IQTextInputViewInfoObjC(wrappedValue: textInputViewInfo) - } -} diff --git a/Example/Pods/IQTextInputViewNotification/LICENSE b/Example/Pods/IQTextInputViewNotification/LICENSE deleted file mode 100644 index 4440a4066..000000000 --- a/Example/Pods/IQTextInputViewNotification/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2024 hackiftekhar - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/Example/Pods/IQTextInputViewNotification/README.md b/Example/Pods/IQTextInputViewNotification/README.md deleted file mode 100644 index 392651254..000000000 --- a/Example/Pods/IQTextInputViewNotification/README.md +++ /dev/null @@ -1,66 +0,0 @@ -# IQTextInputViewNotification - -[![CI Status](https://img.shields.io/travis/hackiftekhar/IQTextInputViewNotification.svg?style=flat)](https://travis-ci.org/hackiftekhar/IQTextInputViewNotification) -[![Version](https://img.shields.io/cocoapods/v/IQTextInputViewNotification.svg?style=flat)](https://cocoapods.org/pods/IQTextInputViewNotification) -[![License](https://img.shields.io/cocoapods/l/IQTextInputViewNotification.svg?style=flat)](https://cocoapods.org/pods/IQTextInputViewNotification) -[![Platform](https://img.shields.io/cocoapods/p/IQTextInputViewNotification.svg?style=flat)](https://cocoapods.org/pods/IQTextInputViewNotification) - -![Screenshot](https://raw.githubusercontent.com/hackiftekhar/IQTextInputViewNotification/master/Screenshot/IQTextInputViewNotificationScreenshot.png) - -## Example - -To run the example project, clone the repo, and run `pod install` from the Example directory first. - -## Requirements - -## Installation - -IQTextInputViewNotification is available through [CocoaPods](https://cocoapods.org). To install -it, simply add the following line to your Podfile: - -```ruby -pod 'IQTextInputViewNotification' -``` - -## Usage - -To observe textInputView becomeFirstResponder and resignFirstResponder changes, subscribe to the textInputView events:- - -```swift -import IQTextInputViewNotification - -class ViewController: UIViewController { - - private let textInputViewObserver: IQTextInputViewNotification = .init() - - override func viewWillAppear(_ animated: Bool) { - super.viewWillAppear(animated) - - // Subscribe - textInputViewObserver.subscribe(identifier: "YOUR_UNIQUE_IDENTIFIER") {info in - print(info.event.name) // BeginEditing or EndEditing event - print(info.textInputView) // TextInputView which begin editing or end editing - // Write your own logic here based on event - } - } - - override func viewWillDisappear(_ animated: Bool) { - super.viewWillDisappear(animated) - - // Unsubscribe - textInputViewObserver.unsubscribe(identifier: "YOUR_UNIQUE_IDENTIFIER") - } -} -``` - -## Author - -Iftekhar Qurashi hack.iftekhar@gmail.com - -## Flow - -![Screenshot](https://raw.githubusercontent.com/hackiftekhar/IQTextInputViewNotification/master/Screenshot/FlowDiagram.jpg) - -## License - -IQTextInputViewNotification is available under the MIT license. See the LICENSE file for more info. diff --git a/Example/Pods/IQTextView/IQTextView/Assets/PrivacyInfo.xcprivacy b/Example/Pods/IQTextView/IQTextView/Assets/PrivacyInfo.xcprivacy deleted file mode 100644 index 90211906c..000000000 --- a/Example/Pods/IQTextView/IQTextView/Assets/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,14 +0,0 @@ - - - - - NSPrivacyAccessedAPITypes - - NSPrivacyTrackingDomains - - NSPrivacyCollectedDataTypes - - NSPrivacyTracking - - - diff --git a/Example/Pods/IQTextView/IQTextView/Classes/IQTextView+Placeholderable.swift b/Example/Pods/IQTextView/IQTextView/Classes/IQTextView+Placeholderable.swift deleted file mode 100644 index 1cf39548d..000000000 --- a/Example/Pods/IQTextView/IQTextView/Classes/IQTextView+Placeholderable.swift +++ /dev/null @@ -1,29 +0,0 @@ -// -// IQTextView.swift -// https://github.com/hackiftekhar/IQTextView -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit -import IQKeyboardToolbar - -@available(iOSApplicationExtension, unavailable) -@MainActor -@objc extension IQTextView: IQPlaceholderable { } diff --git a/Example/Pods/IQTextView/IQTextView/Classes/IQTextView.swift b/Example/Pods/IQTextView/IQTextView/Classes/IQTextView.swift deleted file mode 100644 index 9c49e512b..000000000 --- a/Example/Pods/IQTextView/IQTextView/Classes/IQTextView.swift +++ /dev/null @@ -1,193 +0,0 @@ -// -// IQTextView.swift -// https://github.com/hackiftekhar/IQTextView -// Copyright (c) 2013-24 Iftekhar Qurashi. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import UIKit - -/** @abstract UITextView with placeholder support */ -@available(iOSApplicationExtension, unavailable) -@MainActor -@objcMembers open class IQTextView: UITextView { - - required public init?(coder aDecoder: NSCoder) { - super.init(coder: aDecoder) - setup() - } - - override public init(frame: CGRect, textContainer: NSTextContainer?) { - super.init(frame: frame, textContainer: textContainer) - setup() - } - - override open func awakeFromNib() { - super.awakeFromNib() - setup() - } - - private func setup() { - NotificationCenter.default.addObserver(self, selector: #selector(self.refreshPlaceholder), - name: UITextView.textDidChangeNotification, object: self) - - do { - placeholderLabel.frame = placeholderExpectedFrame - placeholderLabel.autoresizingMask = [.flexibleWidth, .flexibleHeight] - placeholderLabel.lineBreakMode = .byWordWrapping - placeholderLabel.numberOfLines = 0 - placeholderLabel.font = self.font - placeholderLabel.textAlignment = self.textAlignment - placeholderLabel.backgroundColor = UIColor.clear - placeholderLabel.isAccessibilityElement = false - placeholderLabel.textColor = UIColor.placeholderText - self.addSubview(placeholderLabel) - refreshPlaceholder() - } - } - - private var placeholderInsets: UIEdgeInsets { - let top: CGFloat = self.textContainerInset.top - let left: CGFloat = self.textContainerInset.left + self.textContainer.lineFragmentPadding - let bottom: CGFloat = self.textContainerInset.bottom - let right: CGFloat = self.textContainerInset.right + self.textContainer.lineFragmentPadding - return UIEdgeInsets(top: top, left: left, bottom: bottom, right: right) - } - - private var placeholderExpectedFrame: CGRect { - let insets: UIEdgeInsets = self.placeholderInsets - let maxWidth: CGFloat = self.frame.width-insets.left-insets.right - let size: CGSize = CGSize(width: maxWidth, height: self.frame.height-insets.top-insets.bottom) - let expectedSize: CGSize = placeholderLabel.sizeThatFits(size) - - return CGRect(x: insets.left, y: insets.top, width: maxWidth, height: expectedSize.height) - } - - public let placeholderLabel: UILabel = .init() - - /** @abstract To set textView's placeholder text color. */ - @IBInspectable open var placeholderTextColor: UIColor? { - - get { - return placeholderLabel.textColor - } - - set { - placeholderLabel.textColor = newValue - } - } - - /** @abstract To set textView's placeholder text. Default is nil. */ - @IBInspectable open var placeholder: String? { - - get { - return placeholderLabel.text - } - - set { - placeholderLabel.text = newValue - refreshPlaceholder() - } - } - - /** @abstract To set textView's placeholder attributed text. Default is nil. */ - open var attributedPlaceholder: NSAttributedString? { - get { - return placeholderLabel.attributedText - } - - set { - placeholderLabel.attributedText = newValue - refreshPlaceholder() - } - } - - open override func layoutSubviews() { - super.layoutSubviews() - - placeholderLabel.frame = placeholderExpectedFrame - } - - @objc private func refreshPlaceholder() { - - let text: String = text ?? attributedText?.string ?? "" - placeholderLabel.alpha = text.isEmpty ? 1 : 0 - } - - open override var text: String! { - - didSet { - refreshPlaceholder() - } - } - - open override var attributedText: NSAttributedString! { - - didSet { - refreshPlaceholder() - } - } - - open override var font: UIFont? { - - didSet { - - if let font: UIFont = font { - placeholderLabel.font = font - } else { - placeholderLabel.font = UIFont.systemFont(ofSize: 12) - } - } - } - - open override var textAlignment: NSTextAlignment { - didSet { - placeholderLabel.textAlignment = textAlignment - } - } - - open override var intrinsicContentSize: CGSize { - guard !hasText else { - return super.intrinsicContentSize - } - - var newSize: CGSize = super.intrinsicContentSize - let placeholderInsets: UIEdgeInsets = self.placeholderInsets - newSize.height = placeholderExpectedFrame.height + placeholderInsets.top + placeholderInsets.bottom - - return newSize - } - - open override func caretRect(for position: UITextPosition) -> CGRect { - var originalRect = super.caretRect(for: position) - - // When placeholder is visible and text alignment is centered - guard placeholderLabel.alpha == 1 && self.textAlignment == .center else { return originalRect } - - // Calculate the width of the placeholder text - let font = placeholderLabel.font ?? UIFont.systemFont(ofSize: UIFont.systemFontSize) - let textSize = placeholderLabel.text?.size(withAttributes: [.font: font]) ?? .zero - // Calculate the starting x position of the centered placeholder text - let centeredTextX = (self.bounds.size.width - textSize.width) / 2 - // Update the caret position to match the starting x position of the centered text - originalRect.origin.x = centeredTextX - - return originalRect - } -} diff --git a/Example/Pods/IQTextView/LICENSE b/Example/Pods/IQTextView/LICENSE deleted file mode 100644 index 5d8eb9642..000000000 --- a/Example/Pods/IQTextView/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Example/Pods/IQTextView/README.md b/Example/Pods/IQTextView/README.md deleted file mode 100644 index 417325e5e..000000000 --- a/Example/Pods/IQTextView/README.md +++ /dev/null @@ -1,48 +0,0 @@ -# IQTextView - -[![CI Status](https://img.shields.io/travis/hackiftekhar/IQTextView.svg?style=flat)](https://travis-ci.org/hackiftekhar/IQTextView) -[![Version](https://img.shields.io/cocoapods/v/IQTextView.svg?style=flat)](https://cocoapods.org/pods/IQTextView) -[![License](https://img.shields.io/cocoapods/l/IQTextView.svg?style=flat)](https://cocoapods.org/pods/IQTextView) -[![Platform](https://img.shields.io/cocoapods/p/IQTextView.svg?style=flat)](https://cocoapods.org/pods/IQTextView) - -![Screenshot](https://raw.githubusercontent.com/hackiftekhar/IQTextView/master/Screenshot/IQTextViewScreenshot.png) - -## Example - -To run the example project, clone the repo, and run `pod install` from the Example directory first. - -## Requirements - -## Installation - -IQTextView is available through [CocoaPods](https://cocoapods.org). To install -it, simply add the following line to your Podfile: - -```ruby -pod 'IQTextView' -``` - -## Usage - -You can set any UITextView class to IQTextView and then you can change the placeholder and placeholderTextColor from the storyboard - -To change them via code, you may have to set them programmatically -```swift -textView.placeholderTextColor = UIColor.lightGray -textView.placeholder = "Enter your message here..." -``` - -To work this with IQKeyboardToolbarManager to show placeholder in toolbar, you may have to confirm IQPlaceholderable manually in your code -```swift -@available(iOSApplicationExtension, unavailable) -@MainActor -extension IQTextView: IQPlaceholderable { } -``` - -## Author - -Iftekhar Qurashi hack.iftekhar@gmail.com - -## License - -IQTextView is available under the MIT license. See the LICENSE file for more info. diff --git a/Example/Pods/Local Podspecs/ConsentViewController.podspec.json b/Example/Pods/Local Podspecs/ConsentViewController.podspec.json index be0bd4e5d..e9e0d9e7d 100644 --- a/Example/Pods/Local Podspecs/ConsentViewController.podspec.json +++ b/Example/Pods/Local Podspecs/ConsentViewController.podspec.json @@ -51,7 +51,8 @@ }, "pod_target_xcconfig": { "BUILD_LIBRARY_FOR_DISTRIBUTION": "YES", - "DEFINES_MODULE": "YES" + "DEFINES_MODULE": "YES", + "OTHER_SWIFT_FLAGS[config=Debug]": "$(inherited) -enable-testing" }, "swift_version": "5.1" } diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index 869d47eae..a4b833829 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -86,46 +86,6 @@ PODS: - GoogleUtilities/UserDefaults (8.1.0): - GoogleUtilities/Logger - GoogleUtilities/Privacy - - IQKeyboardCore (1.0.5) - - IQKeyboardManagerSwift (8.0.1): - - IQKeyboardManagerSwift/Appearance (= 8.0.1) - - IQKeyboardManagerSwift/Core (= 8.0.1) - - IQKeyboardManagerSwift/IQKeyboardReturnManager (= 8.0.1) - - IQKeyboardManagerSwift/IQKeyboardToolbarManager (= 8.0.1) - - IQKeyboardManagerSwift/IQTextView (= 8.0.1) - - IQKeyboardManagerSwift/Resign (= 8.0.1) - - IQKeyboardManagerSwift/Appearance (8.0.1): - - IQKeyboardManagerSwift/Core - - IQKeyboardManagerSwift/Core (8.0.1): - - IQKeyboardNotification - - IQTextInputViewNotification - - IQKeyboardManagerSwift/IQKeyboardReturnManager (8.0.1): - - IQKeyboardReturnManager - - IQKeyboardManagerSwift/IQKeyboardToolbarManager (8.0.1): - - IQKeyboardManagerSwift/Core - - IQKeyboardToolbarManager - - IQKeyboardManagerSwift/IQTextView (8.0.1): - - IQTextView - - IQKeyboardManagerSwift/Resign (8.0.1): - - IQKeyboardManagerSwift/Core - - IQKeyboardNotification (1.0.3) - - IQKeyboardReturnManager (1.0.4): - - IQKeyboardCore (= 1.0.5) - - IQKeyboardToolbar (1.1.1): - - IQKeyboardCore - - IQKeyboardToolbar/Core (= 1.1.1) - - IQKeyboardToolbar/Core (1.1.1): - - IQKeyboardCore - - IQKeyboardToolbar/Placeholderable - - IQKeyboardToolbar/Placeholderable (1.1.1): - - IQKeyboardCore - - IQKeyboardToolbarManager (1.1.3): - - IQKeyboardToolbar - - IQTextInputViewNotification - - IQTextInputViewNotification (1.0.8): - - IQKeyboardCore - - IQTextView (1.0.5): - - IQKeyboardToolbar/Placeholderable - JSONView (0.0.3) - nanopb (3.30910.0): - nanopb/decode (= 3.30910.0) @@ -143,7 +103,6 @@ PODS: DEPENDENCIES: - ConsentViewController (from `../`) - FirebaseAnalytics - - IQKeyboardManagerSwift - JSONView - Nimble (= 13.7.0) - Quick (= 7.6.2) @@ -163,14 +122,6 @@ SPEC REPOS: - FirebaseInstallations - GoogleAppMeasurement - GoogleUtilities - - IQKeyboardCore - - IQKeyboardManagerSwift - - IQKeyboardNotification - - IQKeyboardReturnManager - - IQKeyboardToolbar - - IQKeyboardToolbarManager - - IQTextInputViewNotification - - IQTextView - JSONView - nanopb - Nimble @@ -185,7 +136,7 @@ EXTERNAL SOURCES: :path: "../" SPEC CHECKSUMS: - ConsentViewController: 902ee261f3416c50a915dadf2f28ecaca00e9546 + ConsentViewController: fac768766d0044b142f1affd2c94d741bc564394 CwlCatchException: 7acc161b299a6de7f0a46a6ed741eae2c8b4d75a CwlCatchExceptionSupport: 54ccab8d8c78907b57f99717fb19d4cc3bce02dc CwlMachBadInstructionHandler: dae4fdd124d45c9910ac240287cc7b898f4502a1 @@ -197,14 +148,6 @@ SPEC CHECKSUMS: FirebaseInstallations: 0ee9074f2c1e86561ace168ee1470dc67aabaf02 GoogleAppMeasurement: 0dfca1a4b534d123de3945e28f77869d10d0d600 GoogleUtilities: 00c88b9a86066ef77f0da2fab05f65d7768ed8e1 - IQKeyboardCore: 28c8bf3bcd8ba5aa1570b318cbc4da94b861711e - IQKeyboardManagerSwift: 835fc9c6e4732398113406d84900ad2e8f141218 - IQKeyboardNotification: d7382c4466c5a5adef92c7452ebf861b36050088 - IQKeyboardReturnManager: 972be48528ce9e7508ab3ab15ac7efac803f17f5 - IQKeyboardToolbar: d4bdccfb78324aec2f3920659c77bb89acd33312 - IQKeyboardToolbarManager: 6c693c8478d6327a7ef2107528d29698b3514dbb - IQTextInputViewNotification: f5e954d8881fd9808b744e49e024cc0d4bcfe572 - IQTextView: ae13b4922f22e6f027f62c557d9f4f236b19d5c7 JSONView: ba9049102fae7ad70de40234d0b7c60986e61e4c nanopb: fad817b59e0457d11a5dfbde799381cd727c1275 Nimble: 0d202a1be6a346929560c212341240339875b6f0 @@ -214,6 +157,6 @@ SPEC CHECKSUMS: SwiftLint: 3d48e2fb2a3468fdaccf049e5e755df22fb40c2c Wormholy: ab1c8c2f02f58587a0941deb0088555ffbf039a1 -PODFILE CHECKSUM: 6af712623e87f48887fdfc1a2ee251a83706b428 +PODFILE CHECKSUM: 94b917154571d7057186d448c1cfdb80061ca3cd COCOAPODS: 1.16.2 diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj index 6ec49d513..d5ec3c23d 100644 --- a/Example/Pods/Pods.xcodeproj/project.pbxproj +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -9,9 +9,9 @@ /* Begin PBXAggregateTarget section */ 0010F36F9D103AAE441EA8E1058A19BC /* SPMobileCore-tvOS */ = { isa = PBXAggregateTarget; - buildConfigurationList = 1EBC19BA904E766FE0D14F5786FC3F54 /* Build configuration list for PBXAggregateTarget "SPMobileCore-tvOS" */; + buildConfigurationList = 6F7AFC32EBFAEB95DDCEB9B866DB100E /* Build configuration list for PBXAggregateTarget "SPMobileCore-tvOS" */; buildPhases = ( - D2563F8C51D75930A6B832D6E673E318 /* [CP] Copy XCFrameworks */, + 49B899CD94278542DA5A4BE52A73E288 /* [CP] Copy XCFrameworks */, ); dependencies = ( ); @@ -19,9 +19,9 @@ }; 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */ = { isa = PBXAggregateTarget; - buildConfigurationList = 6098B9CDCC5E3B555285349576DFBE48 /* Build configuration list for PBXAggregateTarget "SPMobileCore-iOS" */; + buildConfigurationList = 808385E807CE29A17E23DDD13973FF6F /* Build configuration list for PBXAggregateTarget "SPMobileCore-iOS" */; buildPhases = ( - EE23006ECB6E077044AB05F97C143D3A /* [CP] Copy XCFrameworks */, + FD411A8535BB1DAB8AE96B463C90F40B /* [CP] Copy XCFrameworks */, ); dependencies = ( ); @@ -38,13 +38,13 @@ }; B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */ = { isa = PBXAggregateTarget; - buildConfigurationList = 73698F5E307483982BBBFFD4EE9A21F0 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */; + buildConfigurationList = 0AF443C231D2AC48896904B660904AD3 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */; buildPhases = ( - 11D8A917FCCBD88C149BC69256451AC8 /* [CP] Copy XCFrameworks */, + 5A6BE25CADFF8394C42D1056874026E5 /* [CP] Copy XCFrameworks */, ); dependencies = ( - 56E6B2FE158AF5399DE266D405BF66FE /* PBXTargetDependency */, - 163B717C1BF1E4C088399BAFB95F16B1 /* PBXTargetDependency */, + BEB14FF33A1B80DDCB1F7E71016798AA /* PBXTargetDependency */, + 7E8015FD711EFDE9A2981742962C9191 /* PBXTargetDependency */, ); name = GoogleAppMeasurement; }; @@ -55,3179 +55,2612 @@ 8C5B5926777AB8C2838BC915F74F1BC1 /* [CP] Copy XCFrameworks */, ); dependencies = ( - 8F771E89EC8F67F91A6579ECB91ABE57 /* PBXTargetDependency */, - EC1FA60387FB3F7E4F38131FA528719A /* PBXTargetDependency */, - CC3D1D025804402805AA1086731D259B /* PBXTargetDependency */, - 4D30CAB7A72A43925B7482224C17D90D /* PBXTargetDependency */, - 80456ED01B0F1704445BA7C87ED43165 /* PBXTargetDependency */, + D6685CA239593C3087238A7A4727E677 /* PBXTargetDependency */, + DCFA337C1C0AEA37F2C149742B0B6DFA /* PBXTargetDependency */, + 9DBEF957ED2687958CE56E6C713253D7 /* PBXTargetDependency */, + A54EBF1050DAB11E48999E3D27B2DEAE /* PBXTargetDependency */, + 7BAD724B590733316CE788FEC86D2B19 /* PBXTargetDependency */, ); name = FirebaseAnalytics; }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 002537927A2B4FF384F5E04F646F849C /* ShareUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FA4E06192FBBD2D464EEB4AB46FCC50 /* ShareUtils.swift */; }; - 005CFE22A2ABBABB461FCF31E90DBAE9 /* ExpectationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF194C25B34AEA58DDC39968922E81AC /* ExpectationMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 01408ED940F0C4BC25688141CDA45895 /* IQTextInputViewNotification-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 01B7A0F12119250D0C87E0712F834199 /* IQTextInputViewNotification-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 002537927A2B4FF384F5E04F646F849C /* ShareUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6598E2BE5FA262A82F4610298F70426 /* ShareUtils.swift */; }; + 005CFE22A2ABBABB461FCF31E90DBAE9 /* ExpectationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = D27CD9530A31B105C03C4291D69013E5 /* ExpectationMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 01F118752BAFCE3B41C88F3575DA908A /* SPGDPRCategoryDetailsViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = F8C910DBDF5A6D2D1FD47EEAE69D7867 /* SPGDPRCategoryDetailsViewController.xib */; }; - 0219FE757B9413E61775A6BCB6B5834D /* images in Resources */ = {isa = PBXBuildFile; fileRef = 8BC7AF51FA2F0826802F6A36F319AEAE /* images */; }; + 02A8B3CE76F848550DD7D9D6E6A5F0CC /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA3A212C79BC0C75312BF518E37D9E1 /* FBLPromise+Await.m */; }; 02D53E0C5AEE5D7155F47989839045D9 /* SPAppleTVButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 670261981CE4CA4F02735BAF553CF466 /* SPAppleTVButton.swift */; }; + 0305F1982EB2E2409251C13C0AA97A4B /* jest.config.json in Resources */ = {isa = PBXBuildFile; fileRef = F56C090F1C9366C37AB253AAB9FE1A05 /* jest.config.json */; }; 036CBB08E74433519935991439C03522 /* ConsentViewController-iOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1840EBC85C38B3D34E599412FD06EE5F /* ConsentViewController-iOS-dummy.m */; }; - 03D0213609AF47754608B4D421764EB1 /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 480A6F751D5CC62587A6E70F578A7252 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 048DE687F4DA16325F28D4A9F555A7F6 /* AtomicBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6958407BC993A53D89D27E4AA038B74E /* AtomicBox.swift */; }; - 04F53977B7E98FB594E0CC339C38A4D9 /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED4C44088D195E59E09E786F41DAD355 /* Map.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 04FB3EE8176CA2D3D2DCE74AB0FB7F84 /* UIView+Hierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA8CD736A98F2741BD96AF9CFB0498E4 /* UIView+Hierarchy.swift */; }; - 0598E3FB68037697F03D693581DC3BB8 /* AssertionRecorder+Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA26FA80CF19C1376665161D157B339A /* AssertionRecorder+Async.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 05AC9BC63148EA7467217D8502618CCE /* RequestDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8900858EF8CA1647169B147D2791DF67 /* RequestDetailViewController.swift */; }; - 05B22043CF9AAD54DF8530179AC5B74B /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A5B85C33CEAEF1D6C35FD328C4D76F4F /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03B7FABEF65B0DBC990C8B99C9E498B1 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 66D8DAFD85A0B991DCA00D3CE2A35DAA /* PrivacyInfo.xcprivacy */; }; + 04F53977B7E98FB594E0CC339C38A4D9 /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1430F45E4554B6CABED4867A77E25DEB /* Map.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 058436C03D7933930C3C9762287CC760 /* images in Resources */ = {isa = PBXBuildFile; fileRef = 8BC7AF51FA2F0826802F6A36F319AEAE /* images */; }; + 0598E3FB68037697F03D693581DC3BB8 /* AssertionRecorder+Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04117DE208A4F4F3EB24426B69A86672 /* AssertionRecorder+Async.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 05AC9BC63148EA7467217D8502618CCE /* RequestDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9124FEEB4685049F8046B2467AFF4E75 /* RequestDetailViewController.swift */; }; 05C024C8DC888045E08C3E15D526FBFC /* SPString.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA6B5382DCD05DA49AE8667BAAD85D46 /* SPString.swift */; }; - 0645909EAD097C6E2EE313FC0F4D78A1 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E616169FBC8240945FC48D592274B4A /* RaisesException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 069E8C5D6394E382702451CCF591A765 /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 1789C906329962E5457BC43ADCAB742A /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0645909EAD097C6E2EE313FC0F4D78A1 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68A266767518E3B4D84197B03E8EFB05 /* RaisesException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 07859B68B5A050F9A259B4E7115C26E8 /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = E022694EBD639B47976FDF834FB1C922 /* Date.swift */; }; - 080CC7053A2F2C7D273326D36A969C35 /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7006A5366815E0D1A1AC0BC96AF85400 /* AllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 08765EEB98CF088F7263077316CB1105 /* IQKeyboardToolbarConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1BEC02223C75794AFCD195F68ED8447 /* IQKeyboardToolbarConfiguration.swift */; }; - 08C4A098A74D4D121A85CD0A906387EF /* UIView+ParentObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 237601B38F13A3670A4070C1CAC6862D /* UIView+ParentObjc.swift */; }; - 0927772B94F2E0BEDEC2DA39580C19B2 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 309C0270C20A21A240AC4C4C13ACF54D /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 093EAB67EFF3C5AD121131B05D2F9474 /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AEFF9CB21CFE2C6E9CABE1E8FC2049E /* Config.swift */; }; - 09A8CA94D3D946B6E3A248495C95E5EA /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = CE83326423A35E77F8489B85BACF722B /* pb_common.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 09B28A835027614014E7D4945121DA5E /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18FC2954F1FB2A2E4820D10D9B873A50 /* HaveCount.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 09C209A2FAC47F3BE1E49B1C6D90AAC8 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 00760845D8B0C5DA675FA4CC4DE50940 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09E91ACB0667F1A80B81A95B21FBC90D /* IQBarButtonItemConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E054BBC07794A97A72D7F5FD34898FF /* IQBarButtonItemConfiguration.swift */; }; + 07FF684AA7BD2345FB24E1B3FF139D80 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 855370FC8300FBF55C4726690B9C6294 /* FIROptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 080CC7053A2F2C7D273326D36A969C35 /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27B489FE8E5373A678868715F5E37A85 /* AllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 0927772B94F2E0BEDEC2DA39580C19B2 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BF38E2D4A611D1CB98007D22EDE74CA9 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 093EAB67EFF3C5AD121131B05D2F9474 /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = E08341FF0B126BFD0CDD86637D32A455 /* Config.swift */; }; + 09B28A835027614014E7D4945121DA5E /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56A5FF710324E88DF01167AA05E0A73B /* HaveCount.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 09EC8C63446993BCD771BFBB29D6EDF5 /* UIApplicationExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA758438A6F939B8785F036B8FB7EC9A /* UIApplicationExtensions.swift */; }; - 0A027154BD8C18CCFEFDC6FBA4480484 /* IQKeyboardInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7C2329C3E94A50D0854E8A86D2E0C27 /* IQKeyboardInfo.swift */; }; - 0A0E259F7830642BB6611CACFA1059BB /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F964FBA416ED6D27F11DAAA6C0D730B /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0A528D1CD706A0D187C87AA488547FE2 /* RequestTitleSectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1CF9482DF9831CCB3E533ACFE2AACC24 /* RequestTitleSectionView.xib */; }; + 0AC3C06916BADCA057E6A2C40B7AA59A /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F6C9F063562098F1CE8683FCCBF9937F /* FIRInstallationsSingleOperationPromiseCache.m */; }; 0B333576C998A22F40A9F863C766600F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; 0B4403F7BA9B11EB639F3ED2492CA10D /* SPMessageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 022AE72E29CD671904856E3584C975F9 /* SPMessageViewController.swift */; }; - 0B6F04CE2EA80488636D90C4A8C86096 /* ContainElementSatisfying.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C6E0A6079652131BBD0DBAEEAC0EFAA /* ContainElementSatisfying.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 0B732EC53A3809F2EAAB812ED6D69A4A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 0B6F04CE2EA80488636D90C4A8C86096 /* ContainElementSatisfying.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33B5CA37AA2F3603DDA4A2F7F1A2C41C /* ContainElementSatisfying.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 0B747A1A5A7C658E3D9FE454EFBBD72A /* AtomicBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6D81D324A45B00A21917B41DC00EE14 /* AtomicBox.swift */; }; + 0B7F5EF10E7976D891D0299E4AE0F2EF /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 985F3C9C7DC4A32AE5CFB01EFE60D3C2 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0B8D62242B8BA81792F4044EB6747DE2 /* SPFocusableTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F045FC917421FFB4E16A9C05BD0B27C8 /* SPFocusableTextView.swift */; }; 0BA117D41AE7DF743E2BD691BD9E85B0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 886B70550F3C22CC20F9B77783E267E6 /* Foundation.framework */; }; - 0BB4D2CF32A898D12060CCC1E30F258E /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = F4717DE3C7C32C18CA230DEF9AE3D3FE /* PrivacyInfo.xcprivacy */; }; - 0BCC9000571E193669B73A666B8A3D6A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 0C54B693C4A8C43E728438EAF9E2096A /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B9096FD1A4F1C96E2829FA42428F04D /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C7E8C6D76B84FE123ACE539929AC205 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 983369F50E07F986B7B75FE69228C2EC /* FIRLogger.m */; }; - 0CA9FC6CAA57112356FC3437B7C25112 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = BBBB1C27BF4880E7D44DA1EA3A17A658 /* GULNetwork.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0CC428ABA928E852A1BD0DB497652191 /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B12C2B2013EFCA0F1FEB1D5379405A8 /* FailureMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 0BEFACEF8CB7D14619E68093C75ABBEE /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = D86548772C990F391B79991DAC88A054 /* FBLPromise+Reduce.m */; }; + 0BF02A8794E5DA114776A81DFAEF44DF /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 8965F6D4EB895612380EF3DE6F4D9FA7 /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0CC428ABA928E852A1BD0DB497652191 /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 898700DC4DB5095AAB02015D2BB39875 /* FailureMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 0CE1F7EE062F835142B3670F070B38E2 /* SPGCMData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00BA232A188CE8CB8BE0617C8DD20B4C /* SPGCMData.swift */; }; - 0CF1461DEF6B2B8377AD34DBC8556318 /* IQKeyboardConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = E62B48AD78A8199016E9CC780B0C438D /* IQKeyboardConstants.swift */; }; - 0D8EEBB9CC617942ADB52211DD0BBECF /* Behavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 259EFEA7087E5468175533431A8057F5 /* Behavior.swift */; }; - 0D98860FE102C85029C9EF08AF393538 /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = CF5214681ADBB06F82221BD6E6C63ECF /* GULMutableDictionary.m */; }; - 0DA7CF0CB9572DF213806235E77E833A /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E41CA8AA74470D540AF0516CAAB225AD /* PrivacyInfo.xcprivacy */; }; - 0DC989E3B702C52A41143EADDCCD974B /* IQKeyboardReturnManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE3ACC9919EBFCC1AB3449F164F1C80 /* IQKeyboardReturnManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0E0AE17B0067ADB8EDDA24CA8B061DD0 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2F037708CF295D855EFDAD564C8EB8 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0E35C54CF0CA441B4185FDC10F9F2804 /* Pods-Examples-ConsentViewController_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D15D3DB152A6F0E9F5C482B377B5F225 /* Pods-Examples-ConsentViewController_Example-dummy.m */; }; - 0EF5251B4830B5B176F38213B451319D /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E0FF0EB4ABF09B6C32D854A470072E8 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0D2BAAB17C7CA24CD18926F15F063CAE /* HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D32366DEB6715D89BF41684226E71F5 /* HeartbeatsPayload.swift */; }; + 0D8EEBB9CC617942ADB52211DD0BBECF /* Behavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFB523B22A88143D46E82779B32E65E1 /* Behavior.swift */; }; + 0E35C54CF0CA441B4185FDC10F9F2804 /* Pods-Examples-ConsentViewController_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 61A8434CED8A5A96AEE10FEDB9AF07D5 /* Pods-Examples-ConsentViewController_Example-dummy.m */; }; + 0F5DB064435700F5FB0A247AAA922F22 /* FIRTimestampInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = B7759C3AED387997BDA50B71144FD787 /* FIRTimestampInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F92C4B025204616701437DB215EBF46 /* ConnectivityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F469EC0035C69528C810216676EAA16 /* ConnectivityManager.swift */; }; 0FE07A316F2174353CB169F2426F874D /* SPLocalStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 544D049FDBD11D7D2116C49CE621A93D /* SPLocalStorage.swift */; }; - 1054F8E57CB5D3E24A56017601184463 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = B1BEE24BA36FDA58A106C56809C0610C /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 106295D97388A896BBADD5F46794B9D2 /* AsyncWorld+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3B7F216AFAC272B8A629EBC12FA2E0A /* AsyncWorld+DSL.swift */; }; + 0FE8E81445EF1D19031A853D0F9A5146 /* SP_Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 3AC41A4E33416989A7D8796B73BA4A07 /* SP_Icon.png */; }; + 10089C7E11F56978D093DA90276C1D8B /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = 38F9D36922805BFE98C8F15887DDA75F /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1057FA1BC8642CF9125EBAF17FF5C7C5 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3136B459DC0B05660687DF4A3B9F65 /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 106295D97388A896BBADD5F46794B9D2 /* AsyncWorld+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19A515124D7AE6ED7F9E9FAB52BB9B77 /* AsyncWorld+DSL.swift */; }; 10A9C60521259FEC70E382CEFEF1D4DA /* ErrorMetricsRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E61BABB7274D17637E09D5A58A03EFB /* ErrorMetricsRequest.swift */; }; - 10AA1B43CFA96387A9A7C7B95769137F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 10BB5BD599785055C092310B1FED7485 /* BeVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18C8FD65ACC0A1178BF37AB4EC3186DB /* BeVoid.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 10EF5E97991D442245AF7A2E29030684 /* AsyncBehavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FF007DE16FC76B92D2B471ADE891BED /* AsyncBehavior.swift */; }; - 10EFEBDEEA7241A841CBA5CE3452A60C /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 740097A017371498ADAAA1D0AB5B7F1C /* pb_decode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 12AEFB4DEFC2627E558D99A56F68495E /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A69621B2FFC5BDB799083519D042BA81 /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m */; }; - 131A2352CC8213EE7F580146D3A70338 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = A46E3B649881FB5DBD58A006029D4A9C /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; - 135FC315A97F8A2CE4F1D0BB470B1603 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = DCF101A454E3B6E2A06629217D2236D8 /* FIRInstallationsIDController.m */; }; - 13C2FD16E9B856418787A685B49DB321 /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDA0BEEBE00BD74FC0487862440E6BFC /* BeNil.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 141DA98037BFADDA0F32291A522BB3D6 /* TestSelectorNameProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26484551773621D3B85EA2980BF9C36E /* TestSelectorNameProvider.swift */; }; - 14470839BDDE9874905A805E5C06BCBA /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = 69211393A493FE597E264D3C509449FE /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 14A3E693D258756A9DC27670D78E46A4 /* Wormholy.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED1FC96C6EDA99EF67C2DA3C4A33582A /* Wormholy.swift */; }; - 14B6CD10CEEBAE2E97DD01C6ACCCEE65 /* AsyncTimerSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 475D9F18CAAD368552304C5852F05426 /* AsyncTimerSequence.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 14E79E04743C4E32079D996F8FD928FE /* Wormholy-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CFEF89211FE63A0A4B6ADD195A259172 /* Wormholy-dummy.m */; }; - 153221793E0474B7B93799990CB4989E /* Negation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77C1460EBE5ED2EA5DA2743DF370336D /* Negation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 154BA734A492E470746B950518BC93F0 /* IQKeyboardAppearanceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2B165934E9839F38ACCAC3155B9E1AD /* IQKeyboardAppearanceManager.swift */; }; - 15B9EB4CD4324D010E4798EC18AC7662 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AB648CCEE84EE032BC3748305CA25FA /* FIRApp.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 10BB5BD599785055C092310B1FED7485 /* BeVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13916C9CB5D0CD65F90BA3F13D5E1D33 /* BeVoid.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 10EF5E97991D442245AF7A2E29030684 /* AsyncBehavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 892A50298130B8D30A525A58BEC34A2B /* AsyncBehavior.swift */; }; + 12AEFB4DEFC2627E558D99A56F68495E /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BF5032FC7D514BFE613B06681A02593 /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m */; }; + 12E97704BF78C3592B5CFB527E017905 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = AD846BCD8B155D1F9888DE2E55C38968 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13C2FD16E9B856418787A685B49DB321 /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 512E962EA6C47F4678880930CB2C73FD /* BeNil.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 141DA98037BFADDA0F32291A522BB3D6 /* TestSelectorNameProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 142C0A4A62EFBA47B4794D0362C2D63B /* TestSelectorNameProvider.swift */; }; + 14592C1F350062CE562B912FF56471A2 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = E6EA4EE2E0B3349DDA3F12A650A9EB6C /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 14A3E693D258756A9DC27670D78E46A4 /* Wormholy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78A7B19E05B6B311A80634B10A410A31 /* Wormholy.swift */; }; + 14B6CD10CEEBAE2E97DD01C6ACCCEE65 /* AsyncTimerSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72BDC80971614F239817E891B1BC5F50 /* AsyncTimerSequence.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 14E79E04743C4E32079D996F8FD928FE /* Wormholy-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D457B402B751C04F059255B73FCD3084 /* Wormholy-dummy.m */; }; + 153221793E0474B7B93799990CB4989E /* Negation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4635A175F55A56F658216A24DDBD810 /* Negation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 154388E14F42F8A2F5E379C616C53DE8 /* SPJSReceiver.spec.js in Resources */ = {isa = PBXBuildFile; fileRef = 27958D4E3AA3B961EBD163BD2E74D50E /* SPJSReceiver.spec.js */; }; + 15E586876B903838C76237A59C8126E9 /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 4571B1E59B818C137F7B607D94E42743 /* FIRInstallationsHTTPError.m */; }; 15F7859A5D597281BEE4F7B58343F8E1 /* SPError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F85113A0AACDC00A440D14420910AE6 /* SPError.swift */; }; - 16ADFBF5F416B72A67F12B11933B3D2C /* WHCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B789CF2E82183FA849B2EE1AE3EEB80A /* WHCollectionView.swift */; }; - 17E5817291D1245A9F5B1ECED5A20613 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C58E8D9EEFDCDCAA11A3C5873FCF26 /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 18520690BEF54206E7584E6CCF103B32 /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46DC532A2458C8E24116BF023C0C228D /* World+DSL.swift */; }; - 18DE42B17DD54EBD54E91C9F1DEEB361 /* ActionableTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AF44F0431C5517FC97624B819A93234 /* ActionableTableViewCell.swift */; }; - 194C6A69F5CEFA8B647322223F3A1E11 /* URL+FileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72C7F44C43C5690DC0B883678B1A6DCB /* URL+FileName.swift */; }; + 16ADFBF5F416B72A67F12B11933B3D2C /* WHCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65BF46DF058D3DB05DE71CA21C424E7E /* WHCollectionView.swift */; }; + 171561994A738A4E0A4B3BCC2717753A /* SPJSReceiver.js in Resources */ = {isa = PBXBuildFile; fileRef = D58978C5A6A1FD143B441530BC082B6F /* SPJSReceiver.js */; }; + 17313D882C0D3AA6E8F94383CF1C28DF /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = DA2964F48A8D541EDAA1BC00C85FEA4A /* FBLPromise+Async.m */; }; + 1768B1324A9619EFDDDED87314560F1C /* HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7165F4339A1D7754C68B727150F09DB5 /* HeartbeatController.swift */; }; + 17AC7A8AF2D22958FA58007738A6163A /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 67BD118284431B9B050B55B136CB3324 /* GULMutableDictionary.m */; }; + 18520690BEF54206E7584E6CCF103B32 /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = F07C3D01FFA070062D9EC8A369BDB030 /* World+DSL.swift */; }; + 18730D082F976A1CAB712036C76AF01D /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = A5CEB69F91D9FAFC3465E461AC94D714 /* FBLPromise+Validate.m */; }; + 18DE42B17DD54EBD54E91C9F1DEEB361 /* ActionableTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78FE85CA000CC0581969BAF127702A7B /* ActionableTableViewCell.swift */; }; + 19062B8E1878C0BB7DCA1086564E8847 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7657012FACCA8BEE19E8895F6814D0FE /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 194C6A69F5CEFA8B647322223F3A1E11 /* URL+FileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = C25A919CE660D5F6D792682A4F31D41E /* URL+FileName.swift */; }; 196B47392EE25ECDE796E984CDACAEFB /* SPGPPConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BF731E1A10A5B0E656AC139B62F8213 /* SPGPPConfig.swift */; }; - 19820A6F5E0349A8B8B18DA554277051 /* WHBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DC4E9EF6EB31ED585E5F26358A9AB74 /* WHBundle.swift */; }; - 19A4D6EC725DAEAF6B356A41A2F42AA6 /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1AE3F717FE3E0E66C2B39495FB5A811 /* ThrowError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 19A8BA55445BDFF3673B440428CF20F2 /* AsyncWorld+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3B7F216AFAC272B8A629EBC12FA2E0A /* AsyncWorld+DSL.swift */; }; - 19D605E74EEAC94D578B9E0535D8B722 /* SPCCPAVendorDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DC7D803B015186A369CD4EEDDEA702D5 /* SPCCPAVendorDetailsViewController.xib */; }; - 1A2024BCE25A33C62313B1131A349D55 /* CwlPosixPreconditionTesting-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EC13EE03CEE8CE6A374E6B796A5FC24 /* CwlPosixPreconditionTesting-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1ABECC35106C9F2E17542ADE169DF594 /* CwlBadInstructionException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33C6E68936062BDC159B49D3849FB9A0 /* CwlBadInstructionException.swift */; }; + 19820A6F5E0349A8B8B18DA554277051 /* WHBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CA75820FBF48DE87826D69A57262161 /* WHBundle.swift */; }; + 19A4D6EC725DAEAF6B356A41A2F42AA6 /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3109154306A035EA1599891C38CF19E /* ThrowError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 19A8BA55445BDFF3673B440428CF20F2 /* AsyncWorld+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19A515124D7AE6ED7F9E9FAB52BB9B77 /* AsyncWorld+DSL.swift */; }; + 19E538BE448181D7B6A948431BC784D7 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 8F3A84E62621BA59A7CD3B10E88F2A63 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; + 1A2024BCE25A33C62313B1131A349D55 /* CwlPosixPreconditionTesting-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D07E3BCB34DC26117B3D73571E14C719 /* CwlPosixPreconditionTesting-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1ABECC35106C9F2E17542ADE169DF594 /* CwlBadInstructionException.swift in Sources */ = {isa = PBXBuildFile; fileRef = D61761FAED1678EBE49D655704D4D852 /* CwlBadInstructionException.swift */; }; 1B19AEF1438CB1242A40D3E2CA04909C /* SPPMHeader.xib in Sources */ = {isa = PBXBuildFile; fileRef = E809C61DAFA64E047AFD6934B3D368B1 /* SPPMHeader.xib */; }; 1B1A5EA137A86DACEE1E2EC63E6C5919 /* SPGDPRPartnersViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35A574F4B3BD123791C31E94F754B3BA /* SPGDPRPartnersViewController.swift */; }; - 1B7A8F55CFCFE073C5C72C48977722B3 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B08161A2B63C49591A4C21B2AEC49EC /* World.swift */; }; - 1BAF203C3626D3820631D4635FC175C7 /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 97C08F366011ABF5B61B5D428C2A32B0 /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1BFA4ABF251291148F55384528F10D38 /* IQScrollViewConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = F43C191D5EFD4AA4564971E2F3E68FCF /* IQScrollViewConfiguration.swift */; }; - 1D4D62C7EE1C0CBADAC8F18A0FD319FB /* IQKeyboardReturnManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4847673071B546336221625AD9A94683 /* IQKeyboardReturnManager.swift */; }; - 1D68793DEB8218A1E7A36E9125E50F20 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = C9A9B7E43BDAD2F718FFD17A863D0A84 /* XCTestSuite+QuickTestSuiteBuilder.m */; }; + 1B7A8F55CFCFE073C5C72C48977722B3 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF61B9BC5870DBCF5759758E0AEF470A /* World.swift */; }; + 1BAF203C3626D3820631D4635FC175C7 /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = B6CCD8475E6BA243257119339E4DBD54 /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1BD6A174023074F85C517BCF39EE050B /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = B17AA814F91AF2B4285F9FF82C6B9777 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1BE60976B8F8F0760BDB9C925FBFD990 /* ActionableTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1A8BBB653B9F1324355A62F2B2E3B41B /* ActionableTableViewCell.xib */; }; + 1D68793DEB8218A1E7A36E9125E50F20 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = AF70F6C06F30ADCDB7F323D2D97C770A /* XCTestSuite+QuickTestSuiteBuilder.m */; }; 1DB1633C61DA140AF6E7BD63826CBC27 /* SourcepointClientCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBB9A9F0E5F0ED975F2A1A1AA5A8A5EC /* SourcepointClientCoordinator.swift */; }; - 1DF9387949CFB08A4EE564C6EE1B0D0D /* Pods-Examples-SourcePointMetaApp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F30A2BF8247E3B49846E08BF91D6D6F /* Pods-Examples-SourcePointMetaApp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1E1E1DE975154FFCC5E4D108CF9B8EEE /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73B841F3C3994F9FB5964CFADC739D15 /* BeEmpty.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 1E6E0992BF3458CCEA7F98CBB9ADE2CA /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 59C79470037DDC297119D5F6E19B71ED /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1F3B13CB4D8ABB3F2AD8AE85C72BF328 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FDD93343FCF19CFFE387161EBDBA43B /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1E1E1DE975154FFCC5E4D108CF9B8EEE /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9CCD89762C814CB71B70559F70DBD78 /* BeEmpty.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 1F2ABB479ACBCAACCE54D092273165DE /* SPCCPACategoryDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 95CE5BA6845C27259E5E75FF90D770CF /* SPCCPACategoryDetailsViewController.xib */; }; 1F5816EC51D2E6BC36187BD057F475DC /* SPGDPRVendorDetailsViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = DFD25270998D2DDE6B8FC4CE1F1E2368 /* SPGDPRVendorDetailsViewController.xib */; }; - 1F6F6626C0CE2411BB510B9F89E28B0C /* jest.config.json in Resources */ = {isa = PBXBuildFile; fileRef = F56C090F1C9366C37AB253AAB9FE1A05 /* jest.config.json */; }; - 1F7BE94B345F840E50ED0C82B136A413 /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = B07C103C97EA779BB2E3F8418929E9EF /* Contain.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 1F7BE94B345F840E50ED0C82B136A413 /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4696D09BF427952653E303D3DCD6E794 /* Contain.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 20063354541D068DE84E06668361B094 /* SPUserDefaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = F82FF19FFE4F10307AE69709C965B235 /* SPUserDefaults.swift */; }; - 200BB60276088AC5C663547014DB10E5 /* AsyncSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = E97532B3008EAD598A48D9E01B06B2B7 /* AsyncSpec.swift */; }; - 20C4A97DA1AF0A39F61F0A6DCE0A9349 /* SatisfyAnyOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5632689C6FB84E1275F7312AAC7B9057 /* SatisfyAnyOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 20F33144FABEFFDD570E3540FADED175 /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3DE70D4B74186544DE35040F08B1F68 /* BeAKindOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 20FE1FC4EABBDB36F4AD00B851123A87 /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = F12B154BCE2F829B35E14B1572A6A11B /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22484A83A78FADE7FD2803E90FBDCF82 /* GoogleUtilities-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E8B44AA61F315BDAD17181D9386F5FB4 /* GoogleUtilities-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 200BB60276088AC5C663547014DB10E5 /* AsyncSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = B29FC7A662C599DB242209F2C703FE63 /* AsyncSpec.swift */; }; + 20C4A97DA1AF0A39F61F0A6DCE0A9349 /* SatisfyAnyOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A5FCE24A5048739DC589904C6B5C661 /* SatisfyAnyOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 20F33144FABEFFDD570E3540FADED175 /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5E09F27370758C63BA4CE1B82FC3813 /* BeAKindOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 215363FC7DD4C0E60E34D5453E563555 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F1282B41B90B3F9773DBF2031247610 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 220CB882F8A4A94D54C79DD9053DD55A /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = E84ABB3924CEB7F19756CBF084872C9A /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 227A9C404D2092D42CD51C8A0526615E /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 26BA4AB9D49A524FE82F9CB9222777E5 /* FIRVersion.h */; settings = {ATTRIBUTES = (Public, ); }; }; 22AD547E4A39714B5A361ECE2E0CBFB6 /* StateNativeToCoreAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC6BF0CBB80DC543EA9A8290A1EB96A8 /* StateNativeToCoreAdapter.swift */; }; - 22C77BE8A58417F12686AC4DC7B03DE5 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 84B95C43D7B6F56248AD75135BE05088 /* GULLogger.m */; }; 22C980BB64F32D3A17A86D29E08AFBDE /* SPGDPRNativePrivacyManagerViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = F8E495568942DD4F992BA43DDA0C4D7A /* SPGDPRNativePrivacyManagerViewController.xib */; }; - 230937F1917C94B58F9C4369D9DE3850 /* AsyncDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95F0052081268DFDBE4A0120A806FDDD /* AsyncDSL.swift */; }; + 22FBDEFF5422BF2058C65BFA912F5603 /* SPJSReceiver.js in Resources */ = {isa = PBXBuildFile; fileRef = D58978C5A6A1FD143B441530BC082B6F /* SPJSReceiver.js */; }; + 230937F1917C94B58F9C4369D9DE3850 /* AsyncDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D900EC17E881A678C59B7767EBD5B75 /* AsyncDSL.swift */; }; + 238C347F8A1C592B94DF857D070B4555 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 457AA5FBD8CFE8D85E466205678726EE /* GoogleUtilities-dummy.m */; }; + 23908B06F717D7AC71B9DF349ABA75FC /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BF7C624218E90B94B9531ADDB73AF37 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 239AFDF5CC3AA8ACF16F618C585289D1 /* QueryParamEncodableProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42B542E34AECF235CB07BFF55CE23673 /* QueryParamEncodableProtocol.swift */; }; - 242C0F69AF70AD5FAA2D18BF1740C99F /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = A8B5754E3D9CF0928319A37F8D4D281A /* PrivacyInfo.xcprivacy */; }; - 242FC4CDD30FBA64695FD29F1296E71E /* IQRootControllerConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AE3C37AC143AA6187DAA70513DB82D2 /* IQRootControllerConfiguration.swift */; }; - 243ABAFD7E715E4E53E36231636C2268 /* AsyncExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5B09BA535863D4B01B71BFC5473DBC4 /* AsyncExampleGroup.swift */; }; - 25449CC98669E960AD824B69D0C87ABF /* utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9F90000E5510FE177292A21D0DB03 /* utils.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 254A4AC77D2C460E29C74A6301088EEA /* QuickTestSuite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8193AC37D693F05389BC7EE7817E74E2 /* QuickTestSuite.swift */; }; - 257CA545DD8F5B2CB45CE13F5D583EAE /* AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32BA42082EECC00B012859960BF28406 /* AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 25C31532F1D9885C3494945FC4C0CE80 /* CwlCatchExceptionSupport-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 11296EDFC129EA0521F51D9161E5136D /* CwlCatchExceptionSupport-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 243994B3C2619157379F830D6927AE8E /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C662745F8E777E43C429CC47E2FE160 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 243ABAFD7E715E4E53E36231636C2268 /* AsyncExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65E78853D1539A5677D5A62C8E79763E /* AsyncExampleGroup.swift */; }; + 253BBE625A6A154994FCB661DEF4A3DD /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 03EF3D5078569C167DFEA8F2078A351C /* pb_common.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 25449CC98669E960AD824B69D0C87ABF /* utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = D91DDA07BC3CC1B8EB09B3AFA0BB040E /* utils.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 254A4AC77D2C460E29C74A6301088EEA /* QuickTestSuite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AF2E5AAA653C6DCE825A0FF0F7C425C /* QuickTestSuite.swift */; }; + 257CA545DD8F5B2CB45CE13F5D583EAE /* AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 441FCD6C1FDA7C5F43235BFBDF880A17 /* AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 25FDA283E050321C4C28100BAD81495D /* SPGDPRConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87AEFA2EAE4004039B9687ACD673B4AC /* SPGDPRConsent.swift */; }; - 2673A91E6AFC6B693144EC916708B9A2 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB05A5C3231DDF5CB5C7608FDAAED1A /* pb.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 26A77BF8C7623E15452A761030FBF733 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CF9B3750AC996B188363CC4B0C54DD7 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 26CFAE215D7DAE757062A199605F0C22 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = D2B8222ABD79FEDFA24A209D578BAC54 /* GULSceneDelegateSwizzler.m */; }; - 2733E422CC910FBC27AFE219C051E011 /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 7707BD7F05AEAD109DFAD1DC98CC9229 /* FIRInstallationsItem.m */; }; - 27B56CC927D5035AF2398B9A05289D8A /* FirebaseCoreInternal-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 44E39F8D18D1E7093CA122B1010CE382 /* FirebaseCoreInternal-dummy.m */; }; - 27B97C1F90C47C6679DBF368724DEEFC /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = E04746FC82CB76AC1DA809F7843EAF6C /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2889AD3AC4418F1D4DD8001C5F1C3E18 /* Pods-TVOSExampleApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B11A9FF20684FE5D4B69A774C992D8C /* Pods-TVOSExampleApp-dummy.m */; }; - 28CD80B0662073826349FD578F593830 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 28CE8560A54102EC374B7A69A82838BC /* IQTextInputView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE0739C1018CA17711EA54F49417946B /* IQTextInputView.swift */; }; - 28FAD079E457F696C78EC667A68BECC9 /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C468EBD52C660B829A9EF5CA0D838CD /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2979477FBD228A0D857FDFCE5B169E14 /* SPGDPRNativePrivacyManagerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F8E495568942DD4F992BA43DDA0C4D7A /* SPGDPRNativePrivacyManagerViewController.xib */; }; - 2993E41F4D816F700E95292B7E28AEB9 /* Quick-iOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A85E92CAEEEDC4C630593857225DA065 /* Quick-iOS-dummy.m */; }; - 29EAA1377CDEF3A4467EF58D99A9013C /* IQKeyboardToolbarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE7D597697731D9160062FDCF285D382 /* IQKeyboardToolbarManager.swift */; }; + 27B97C1F90C47C6679DBF368724DEEFC /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = DF984411EEE48496E173411B16040B27 /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2889AD3AC4418F1D4DD8001C5F1C3E18 /* Pods-TVOSExampleApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F30B43572ABB63577000F4536CC547A0 /* Pods-TVOSExampleApp-dummy.m */; }; + 28BC6E1EBBC4DD9F37F11F73D475EC60 /* SPGDPRManagePreferenceViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C03190257F1960B9B76BE102566E21AD /* SPGDPRManagePreferenceViewController.xib */; }; + 2993E41F4D816F700E95292B7E28AEB9 /* Quick-iOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A84ED188AE9D9360213A34BABA41E5F /* Quick-iOS-dummy.m */; }; 2A6F44F5545F9718C10ACA9835731D5D /* SPGDPRNativePrivacyManagerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EA93FE946DA25CC8E5B843521B26098 /* SPGDPRNativePrivacyManagerViewController.swift */; }; - 2A9549B0AE9C27665639987870E2CF0B /* IQTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7161B5DCDFE49231562B55DAA6066E11 /* IQTextView.swift */; }; - 2AB73082683D7D83ADB8BB50F30B9DAA /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B4FC1CAC1404126C258F956D45F9CCC6 /* FIRInstallationsSingleOperationPromiseCache.m */; }; - 2BCFE5F1E33F30397EABF79C911E78E8 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = C86E7B7B7BB35A919A914A174E125A7A /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C4ED8CCEC312B0B6FA2D0FBC4D602FF /* NMBStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = 050F9B9E655D48CD28778AA2297DA7BB /* NMBStringify.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 2CB251BA5ED66B35CA44C76151800FDA /* BeWithin.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0E65EFCCCF70977E03B71E52395AD11 /* BeWithin.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 2B03E823DFFED53F56FE40D58890C174 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = DF8FB938F2D1C3417C0E8E56F6968387 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BFB93F31F5BA5B7C2F45CA621AAF7E2 /* javascript in Resources */ = {isa = PBXBuildFile; fileRef = 04DB65DCECD90C91E3B57C2CBD3A859A /* javascript */; }; + 2C4ED8CCEC312B0B6FA2D0FBC4D602FF /* NMBStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = 90A8D58C370061FBE079C887EDBA0F71 /* NMBStringify.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 2CB251BA5ED66B35CA44C76151800FDA /* BeWithin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32649384E0CC1778A67679C905B06984 /* BeWithin.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 2DD2BEABEFD014F58D0AD92F0251DF53 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2160BA55970AC59C8D21B7738DDC1015 /* nanopb-dummy.m */; }; + 2DD8D799536AD0FBEB9AE0025FF5A56C /* CwlCatchException.h in Headers */ = {isa = PBXBuildFile; fileRef = 58076705F607BB2F4741F98BA11EEA4D /* CwlCatchException.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2DE8979EFD2E51496BB02F03044CA0CD /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 710E7506C59FEEDFAFD3B5F74D2EF6FD /* FBLPromise+Then.m */; }; 2E3795EA821D8EC9119EB36E532D0914 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 2E40DE55394C0E8B1FC8C4E4DBF8B61F /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51933828D8851062D12D91760880D827 /* DSL.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 2E40DE55394C0E8B1FC8C4E4DBF8B61F /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73B8CA33151989BB179C3D17D42A2E92 /* DSL.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 2E57BDAA75BF6B6B4C234EB7F28A526F /* PrivacyManagerViewData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53E5FC8C35255A7A82860F62CB1CAD67 /* PrivacyManagerViewData.swift */; }; - 2E6A63B67ED2BE70D780A9740DD11B9B /* IQKeyboardReturnManager+UITextFieldDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA61691E97C846F19ADB7C40FD2B4ADB /* IQKeyboardReturnManager+UITextFieldDelegate.swift */; }; - 2E8B6514F514A729590A81E03B5DE65A /* TestState.swift in Sources */ = {isa = PBXBuildFile; fileRef = 054F7CF39326FC823FD090254AC82F87 /* TestState.swift */; }; - 2EFBCF44E12E01458BB1687B460645C8 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1A0C1E8502B39156213F23E163801B61 /* PrivacyInfo.xcprivacy */; }; - 2F40D27F39EF50A87195CA7AF2B91334 /* CwlMachBadInstructionHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 79613E4C842C69EAE38E095B7F90BD86 /* CwlMachBadInstructionHandler.m */; }; - 2FDFC006662EEF2E9F7FF3574868DAE9 /* IQKeyboardManagerSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FB1C98E910F1E6D0DACA28CF05FA08E /* IQKeyboardManagerSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 30C3BBD4A266167853362EC5C0C9ECCC /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = B38761F6B536F6512B2550EEFADD6366 /* FBLPromise+Race.m */; }; - 310BD61B10B942BDF047216298B94909 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = B9B245DECDD24C9AC0F75E7898CAEF76 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 311E961331F50AEB4A4D232CBE5FF389 /* FIRCurrentDateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 377CC3E93DF4518F2B7A6637C33D243F /* FIRCurrentDateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 318844FA1E66E09EEBAA61EF15A4EA9E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 31B9F69F6195997DD1E14EADDAF6D54F /* IQKeyboardManager+Resign_Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B2ED71044E7761E480E636165D8EFC6 /* IQKeyboardManager+Resign_Deprecated.swift */; }; - 31FAE8A64E6BE3ED94D713953D2B5914 /* Pods-Tests-SourcePointMetaAppUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 49550D844E07013FA3B4314D5FFDDFD2 /* Pods-Tests-SourcePointMetaAppUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3208575D9DFA94D5D594A6B7E138DD2E /* CwlCatchException.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D1EF07B4074C5D3B21D293539E811B4 /* CwlCatchException.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 323657BC696F1D62932DB6DD3262B511 /* PollAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EC6888F5775C185C1CDDABBBDBBA30D /* PollAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 328DBDC98F4A0C0A1FE2753A79CB1CDB /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F6BB2423C69F99EEAC09C7C9E7B6E66 /* Expectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 2E8B6514F514A729590A81E03B5DE65A /* TestState.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E6C776AB7AD85BFFD9E04FE1A6A838F /* TestState.swift */; }; + 2F40D27F39EF50A87195CA7AF2B91334 /* CwlMachBadInstructionHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 34C34399E24890F70D21E7D034B47D66 /* CwlMachBadInstructionHandler.m */; }; + 323657BC696F1D62932DB6DD3262B511 /* PollAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 535474DC1B52AA0BE310C17803121EC2 /* PollAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 328DBDC98F4A0C0A1FE2753A79CB1CDB /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F29115D95F0553BA382E8F62BAC00F6B /* Expectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 32928B90D3F4BA7FAEFE3875403991A3 /* SPNativeMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 946D9B91981FF3562F0B248C01EF193C /* SPNativeMessage.swift */; }; 32AF7AD38971CDDA662EB9180E03FE9E /* SPAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4316DD881EB24CB8967689A40A4A0E9 /* SPAction.swift */; }; - 33CFC3693A0F9032B74A14A4DCD9188B /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 62E9A3917CEA0826634BC756095B0CED /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33EF6EC39620AB9A739CA4BE11E72BC6 /* NimbleSwiftTestingHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E72C75729C5B0D555147F8E096CDF979 /* NimbleSwiftTestingHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 34090A0E457BDC62306BF8A2EB8AD43D /* BeginWithPrefix.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB2C05762A801FB522FBCB138FF1441E /* BeginWithPrefix.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 3450E07D11B6725479708866A22CA0F0 /* NMBExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DE8448FA1AE310E2375710837E256E9 /* NMBExpectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 34B80C88F9E57499A4A92B90001182BF /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C65EE1CE46F0EF23C89F969024E6B02 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3527E7AF75181E57E0E2951F3CDFA0C2 /* Barcode.png in Resources */ = {isa = PBXBuildFile; fileRef = 87295588035B548CD735B7461612EFE9 /* Barcode.png */; }; - 355A2BB26622FBA7C7A1456D9D8206A2 /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D542779C488CF8ED5AD479BF0B8FB1A /* Equal.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 3579BC1FCACFC2C40F8B762BD75F1E45 /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = B07C103C97EA779BB2E3F8418929E9EF /* Contain.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 357A7658034DDF01E8BD546F0F757FE4 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = FCC4D7BA5D8ACEC8567D676494521B19 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 365F73583037D0B277C80E70DDA88A62 /* AsyncMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D7754507C4F4A1D871BB0E2791C1968 /* AsyncMatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 33A981CFD247F924993CE43FE53D7396 /* SP_Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 3AC41A4E33416989A7D8796B73BA4A07 /* SP_Icon.png */; }; + 33EF6EC39620AB9A739CA4BE11E72BC6 /* NimbleSwiftTestingHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 462B2AEFDB6F73AADFBB9D28D5A983CE /* NimbleSwiftTestingHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 34090A0E457BDC62306BF8A2EB8AD43D /* BeginWithPrefix.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6097CB13D34CFC992D614D6FD7536DF2 /* BeginWithPrefix.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3450E07D11B6725479708866A22CA0F0 /* NMBExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAEBA3A4FFB630398D8DDB44B90DD703 /* NMBExpectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 34B80C88F9E57499A4A92B90001182BF /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BE2CC69216CFE42540DBE68FCA0B4ED2 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 34FA80716C100DC5E94E85F22D794C2F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 355A2BB26622FBA7C7A1456D9D8206A2 /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6910437F69F8060DB1E41F17E14DA86A /* Equal.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3579BC1FCACFC2C40F8B762BD75F1E45 /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4696D09BF427952653E303D3DCD6E794 /* Contain.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 365F73583037D0B277C80E70DDA88A62 /* AsyncMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64C6AFFB907364693ECA2156ACC287D1 /* AsyncMatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 3670CEDBC78B3828C40D41E70D757421 /* SPUserDefaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = F82FF19FFE4F10307AE69709C965B235 /* SPUserDefaults.swift */; }; - 36A78A9EF7E943B3CE27D4A1567AE5BC /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = A26BBC7E4321F39E52EB7D529A6C5E94 /* DSL.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 36A78A9EF7E943B3CE27D4A1567AE5BC /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B11DD25C102F8D3F852D9C18A2A9A84 /* DSL.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 370597C666009A4DA8B738DA7B6E2F40 /* PMCategoryManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D01AADE4EF28E9EA6E9B56822417319 /* PMCategoryManager.swift */; }; 3742490D6E095118E08C6A6A2CE673EC /* PMVendorManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14A31B695BE605B7BC300ABA7A0BBD99 /* PMVendorManager.swift */; }; - 379092C9902DD6CDF6550A71664139F2 /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = AB8A4A9B4157CDAA3D994D9F0DAA5886 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 37AC1886871D051C086DC4ED86EA159B /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE4C5BB8F7EA63BD8D6D7AA25EF08757 /* BeGreaterThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 3820714A7C5BF205088A53517F71327D /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDA0BEEBE00BD74FC0487862440E6BFC /* BeNil.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 3824E1CB9FB67C985E91FEE580743C73 /* Pods-Tests-ConsentViewController_ExampleTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B4807E584DB501AC5F5FAAB14026E391 /* Pods-Tests-ConsentViewController_ExampleTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 384716AA84A6AABC193E70BBD3551E4D /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = A633DBE772E554D5D84ED42635A8334C /* QCKDSL.m */; }; - 38806A19B071642225258043ACAC1F1B /* RequestCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 10F2EEC527F6E7935FFABF0983620715 /* RequestCell.xib */; }; + 379092C9902DD6CDF6550A71664139F2 /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E23243F3244D77153C241B89D588965 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 37AC1886871D051C086DC4ED86EA159B /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = E562D071DF5C85A7D9A62DF9869F2077 /* BeGreaterThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3820714A7C5BF205088A53517F71327D /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 512E962EA6C47F4678880930CB2C73FD /* BeNil.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3824E1CB9FB67C985E91FEE580743C73 /* Pods-Tests-ConsentViewController_ExampleTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D7246DDC44ED9E5CF7F0DE1BD77AEB3 /* Pods-Tests-ConsentViewController_ExampleTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 384716AA84A6AABC193E70BBD3551E4D /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 82721DF39766E6031B3B3B8EEDE27221 /* QCKDSL.m */; }; + 38EDAED31CEC454BFC9D16C840FF0894 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 245141383B0DEF2750705E09A499BFA5 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; }; 391884A124B6D8A5F636CB9DF862B68F /* SPCustomViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90E690FB1B8426FF22064D899B790E77 /* SPCustomViewController.swift */; }; - 393150D916BC6931789162F62507B840 /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 698B6323D03AD253DEAE782E65E107E7 /* QuickSpec.m */; }; - 393EA19D753060B10D0E5476301A6D49 /* StopTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20BCCE3D8FFE4752339823149D7C43EF /* StopTest.swift */; }; - 398606BAE47F5838D86AAEA79AAD330C /* SPCCPAPartnersViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F69850BE0942AAF7569973E18927CB8F /* SPCCPAPartnersViewController.xib */; }; - 399193B5F5A3C8C1E8E64F79383F7B50 /* Pods-Examples-NativeMessageExample-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A393314456FFB3E06800F9CD1A915F3 /* Pods-Examples-NativeMessageExample-dummy.m */; }; - 39CDB19C4C05A139C9892619717AC07C /* String+C99ExtendedIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF374197388716B739DB5B8C30DAD6A0 /* String+C99ExtendedIdentifier.swift */; }; - 39E02AAFE91B74CA651E994A207A32DC /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AF12426E4EBBD9E1FDCCCB1D791C2B2 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 393150D916BC6931789162F62507B840 /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 32D32B79D6DC04E1E545D20DE4AA6381 /* QuickSpec.m */; }; + 393EA19D753060B10D0E5476301A6D49 /* StopTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87E898681CF454A1619068162EFD8563 /* StopTest.swift */; }; + 398A3DAB5D4482FDC7F12901034BBB85 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = DF9400A036A2057E31F6D39994BEA6E3 /* FBLPromise.m */; }; + 399193B5F5A3C8C1E8E64F79383F7B50 /* Pods-Examples-NativeMessageExample-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B2D93B546613CD1183082319D60D0B1 /* Pods-Examples-NativeMessageExample-dummy.m */; }; + 39CDB19C4C05A139C9892619717AC07C /* String+C99ExtendedIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FD3BBDAAF1F07D0A59E3F98DBC9264E /* String+C99ExtendedIdentifier.swift */; }; + 3A22A9AD8BA0C1789D1C38CA77DAD6AC /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = 56903A24DFEEEE17BCCB74C60DAA505D /* FBLPromise+Any.m */; }; 3A2938794E3DAF508D4CDD3A553B59A1 /* SPAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4316DD881EB24CB8967689A40A4A0E9 /* SPAction.swift */; }; - 3A39CCA7D7AD4FD7F1A7B8B43554CF8C /* UIView+IQKeyboardExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44D7A9D4428EC8819191D61354C9DDD3 /* UIView+IQKeyboardExtension.swift */; }; + 3A435814DABA350499BD9808D31BD887 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = FEAA37B3D22A777089D46A71867C85AF /* FIRComponentType.m */; }; 3A98C43354F336986C77D9BE0A4CDF97 /* MessagesResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A0C68D976DEFB9773D1E67B3627B6D1 /* MessagesResponse.swift */; }; 3AA804D2F0325EAA829545018DBBA4FD /* NSObjectExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = B449CC35881DF31AE43C3912C1B54623 /* NSObjectExtensions.swift */; }; - 3ABD286C73FE54EC18C5FF02C3156E3C /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = 547430F6B989F18B64D86FFC4646F10D /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3AD6D2087FE0FBDE5C73300B1BCF62FC /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3F0A86AF2E75FC5D43E56354F932455 /* Storage.swift */; }; - 3B150A756DBE89161A5E1D73FE9E06CF /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 957ECFCEB95A78EED2F84236B2271846 /* BeIdenticalTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 3B25346E05DC25C0921A825E66A48D64 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = 833828B6DA0C15775334C4481526CC58 /* Match.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 3B6B4253770D7DD8238C8490E45C25DB /* Pods-Tests-ObjC-ExampleAppUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 70AAF1737DA93EA12FCC90DF925BEB8B /* Pods-Tests-ObjC-ExampleAppUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3ABD286C73FE54EC18C5FF02C3156E3C /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A380CBD6CD24A6B43504FFCAE32570F /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3AD6D2087FE0FBDE5C73300B1BCF62FC /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D7D891703ECCCAA0B68299E77C25CCF /* Storage.swift */; }; + 3B150A756DBE89161A5E1D73FE9E06CF /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4D41D0FC581C64139A0BF48F1400C96 /* BeIdenticalTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3B25346E05DC25C0921A825E66A48D64 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0227394C89EF232D13803AC414CC8E0D /* Match.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3B6B4253770D7DD8238C8490E45C25DB /* Pods-Tests-ObjC-ExampleAppUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CAFC8EAFF3ABC5EA268F6B493C20AE6B /* Pods-Tests-ObjC-ExampleAppUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 3B7613669A268FDFC65FB3281E3BDE10 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 3B940D502D4A1469497702FDC3446BB8 /* SPCCPACategoryDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 95CE5BA6845C27259E5E75FF90D770CF /* SPCCPACategoryDetailsViewController.xib */; }; - 3B9AEA58A68761A13A9A1608EC111438 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DC8945AB452F2860FCC5CBB94324624 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BC4E7F029D69CE1A6CF4BD7B41495AE /* Pods-Examples-AuthExample-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B462B473A535B8124B294EBC6A4A8902 /* Pods-Examples-AuthExample-dummy.m */; }; - 3C0EE25A8332F0F496C8A6039761B4F7 /* WormholyMethodSwizzling.h in Headers */ = {isa = PBXBuildFile; fileRef = B050097AE422BC05C6098DCF057DB272 /* WormholyMethodSwizzling.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3C159F369305E5B0486526D4569BE052 /* BeResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCE82D92BB4A30E93E343AE451E79C32 /* BeResult.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 3C298F9D9EF861E82A79FDA9ECD161C4 /* mach_excServer.c in Sources */ = {isa = PBXBuildFile; fileRef = 018C7D6DA1414FA7FD58A494AA74FAF0 /* mach_excServer.c */; }; - 3C4FEB010213C05BA28D51A0CCB99E72 /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = F3AA96C6D3CC2339D41DFCCA064AE221 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3CD7469F814E39E2590078E9EF586773 /* ThrowAssertion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EFDF09D136087E961C24BA4E9EE1CD8 /* ThrowAssertion.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 3CEEFF73AC131A090B954E435211F57A /* HooksPhase.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6CFFBFD33C80AE18D03D79100AF8558 /* HooksPhase.swift */; }; - 3CF525CDCD6877F0E35F8358089551E4 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = FBE547F9D281008A40E7EBF35CB5799A /* FBLPromise+Do.m */; }; - 3D0731D9EF07C1F4C9C6BF6A07BD0E03 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = A188CBEBC676609F35A63D53BA78950B /* FIROptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3BC4E7F029D69CE1A6CF4BD7B41495AE /* Pods-Examples-AuthExample-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 03AC08D6BD3BFE3ADF9A6C5E640BAA21 /* Pods-Examples-AuthExample-dummy.m */; }; + 3C0EE25A8332F0F496C8A6039761B4F7 /* WormholyMethodSwizzling.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F41CA1D9D7ED36D50ED1AE1B3E24956 /* WormholyMethodSwizzling.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3C159F369305E5B0486526D4569BE052 /* BeResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6C1B59861446BA981A24EF59CE82F17 /* BeResult.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3C298F9D9EF861E82A79FDA9ECD161C4 /* mach_excServer.c in Sources */ = {isa = PBXBuildFile; fileRef = 835BCC70DDE2D7D5B4D6EA77DFB13651 /* mach_excServer.c */; }; + 3CD7469F814E39E2590078E9EF586773 /* ThrowAssertion.swift in Sources */ = {isa = PBXBuildFile; fileRef = C93613CAA3DC19D9E0E096377AB7C5ED /* ThrowAssertion.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3CEEFF73AC131A090B954E435211F57A /* HooksPhase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24C57F1C49323CAC06C03B45CE4BF7C2 /* HooksPhase.swift */; }; 3D27A637EDEED748258B32EDBE520D08 /* SPGPPConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BF731E1A10A5B0E656AC139B62F8213 /* SPGPPConfig.swift */; }; - 3D58853F9CA6F470FA4A7BB940D83864 /* javascript in Resources */ = {isa = PBXBuildFile; fileRef = 04DB65DCECD90C91E3B57C2CBD3A859A /* javascript */; }; - 3D79750B26A2602EC0B63212A155BAE5 /* images in Resources */ = {isa = PBXBuildFile; fileRef = 8BC7AF51FA2F0826802F6A36F319AEAE /* images */; }; - 3D807046AAFEC1ADEFD197E0ABAE8745 /* StopTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20BCCE3D8FFE4752339823149D7C43EF /* StopTest.swift */; }; - 3DBB73DF5FE9561A3BF1376126AFA5A2 /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA1ADE3868CD5346F4F2BAA26B8668B3 /* BeLessThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 3DBE6B57FF79A8E22D7CB676066F574F /* Pods-Examples-ConsentViewController_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F86DDBECF7964F601C28D8407C8E5660 /* Pods-Examples-ConsentViewController_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3DCC0F266E64D40B629D62B58CBF2663 /* IQTextInputViewNotification-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F00A310658C463AD2E3C33FB171EC9F8 /* IQTextInputViewNotification-dummy.m */; }; - 3EA3CCD77D7A5E466C79EFB595B93EEE /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED4C44088D195E59E09E786F41DAD355 /* Map.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3D807046AAFEC1ADEFD197E0ABAE8745 /* StopTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87E898681CF454A1619068162EFD8563 /* StopTest.swift */; }; + 3DA3B2F3BC7A42FF1A970B744C3D3FCC /* PromisesObjC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E2FFC8F2EF8C9D7411458644EAECFD7 /* PromisesObjC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3DBB73DF5FE9561A3BF1376126AFA5A2 /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96023E180B8A1891858559CA04F99435 /* BeLessThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3DBE6B57FF79A8E22D7CB676066F574F /* Pods-Examples-ConsentViewController_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9900566369968FB29D28C2EC2978C370 /* Pods-Examples-ConsentViewController_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3EA3CCD77D7A5E466C79EFB595B93EEE /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1430F45E4554B6CABED4867A77E25DEB /* Map.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3EA5099B409F706D74A5D0C5999E03FA /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = CECFB29FFF56FB9A2B1A4DA99BD7C4F2 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; 3F2D5AEF425A1077679F0724C8D799D5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; 3F316DC99DB45FDF1D54445D736CFCF7 /* SPCustomViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = 11DDF4F1DF218CBFC359A60C30CF9EEA /* SPCustomViewController.xib */; }; - 3F36C9D6FB5F3A4CECE7904F72EA8A7F /* Polling+AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43244700C4FEBF5415C1C05108E62092 /* Polling+AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 3F4D6C35513F3C64570772B201DA44C0 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36F2B7CBA2ADF7578C1336DE88F9EDCA /* MatcherProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 3FAD9B750D7346E3B47DC71B23492C22 /* AsyncSpec+testMethodSelectors.m in Sources */ = {isa = PBXBuildFile; fileRef = E0A060E5DA1F12147B39CB28131FA6D2 /* AsyncSpec+testMethodSelectors.m */; }; - 4007F97612C59D77B483B8197D2D904D /* IQKeyboardManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C720A34C11B645F17B554825FB8C54C /* IQKeyboardManager+Debug.swift */; }; + 3F36C9D6FB5F3A4CECE7904F72EA8A7F /* Polling+AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4B877E79592B4D6C995D2281D9F6286 /* Polling+AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3F4D6C35513F3C64570772B201DA44C0 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8606FF0B324258DD7332EC917FB25EC8 /* MatcherProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 3FAD9B750D7346E3B47DC71B23492C22 /* AsyncSpec+testMethodSelectors.m in Sources */ = {isa = PBXBuildFile; fileRef = 867F4EA1F4EF7ED1FE441EFF3B2BB4AF /* AsyncSpec+testMethodSelectors.m */; }; + 3FC905A0DDDC000BE07D80842EAAF27E /* HeartbeatStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2978BD4281FF6471CEF1AA8DD6A3747 /* HeartbeatStorage.swift */; }; 401F43D3379D2807B81AA6E68B2D3C3E /* SPCCPAPartnersViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BBCE35A0421461965EDB0E1835692D8 /* SPCCPAPartnersViewController.swift */; }; - 405E2B82217AF17D8D1A751D9CB5D61A /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB1E29251A4E8016DF94D588688631D /* FIRComponent.m */; }; 405E64DB9325C9809EC634C22E760615 /* QueryParamEncodableProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42B542E34AECF235CB07BFF55CE23673 /* QueryParamEncodableProtocol.swift */; }; - 406DBF10AC12A6A6866DA34301721A07 /* Colors.swift in Sources */ = {isa = PBXBuildFile; fileRef = A36B888EBDB6ED11E7C0692FE5AAC0E7 /* Colors.swift */; }; - 4076F13A7D32F82EE5A4A1EF4DB520D8 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = 37BFCC7EAC8AA0681464CFDE2CF66640 /* FBLPromise+Catch.m */; }; - 40A83585CEE942FBA4FFEE0BD862A48E /* NSBundle+CurrentTestBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAC7A0B37A8D91FE55F50A479F14B44C /* NSBundle+CurrentTestBundle.swift */; }; - 40AF4CA0EDFA57BB4107C8CF0A899FFC /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E74DCAC75D8463E2BFEEDA549A0D38F /* FIRVersion.m */; }; - 40BA97238F8D1E74D02E15CDD66F1B21 /* IQKeyboardAppearanceManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 284792F06F89CA62D3E6123581FBA927 /* IQKeyboardAppearanceManager+Internal.swift */; }; - 4112FF331A8F8AFCFE98A20E5E7B9807 /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F6C453108D1D255C879A6DF690CA1097 /* FirebaseCore-dummy.m */; }; + 406DBF10AC12A6A6866DA34301721A07 /* Colors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 814F2E965DC27BC9302DA3ECBAFB8776 /* Colors.swift */; }; + 40A83585CEE942FBA4FFEE0BD862A48E /* NSBundle+CurrentTestBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90E96D417DE7D723D1BA3ADBADAD43DB /* NSBundle+CurrentTestBundle.swift */; }; 4169408235535EBB60457F3CDCE48C16 /* SPGDPRVendorDetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28CFB897FC81ACF232126C93B8E36769 /* SPGDPRVendorDetailsViewController.swift */; }; - 4172E7C51B199D9FA4E8D007C5A29B66 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3427A27AC38028C5399CAE2BCF841D6E /* DSL.swift */; }; - 41850263BC8C5028BF7AA43C1DA451EC /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 18F9E19CA9D917CB5655F5450578C723 /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4172E7C51B199D9FA4E8D007C5A29B66 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A1B50CD3FCE4EAB18498D1A2E13F542 /* DSL.swift */; }; + 41CAC7979D1BE2424688C73267F50081 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 9A64100D6D8B95759BA717510E45BAB3 /* PrivacyInfo.xcprivacy */; }; 41F369ABA984CA9510DDE4E60AA579BB /* SPDeviceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3C4FC7367786DA4ADD5D4613303527E /* SPDeviceManager.swift */; }; 421428EB687584018CF7713B83B8E39A /* SPCCPACategoryDetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDF69D30CA3D2B0C488942CB6B5D247E /* SPCCPACategoryDetailsViewController.swift */; }; - 421DB69EC75A310C718C0AD67A56D87F /* WormholyConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = A2413C25A1E9B1773F4BB7C4A9918225 /* WormholyConstructor.m */; }; - 4224C3CD50F0706909A6707CC95A362C /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = C92509E734A6C345C96274A3E981A6A6 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 422FAF61381DBB442AF04CA133D9EFFD /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = BE6574F64FA1EA3700CF64D22C778856 /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 421DB69EC75A310C718C0AD67A56D87F /* WormholyConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = D64B4937FDF3D8CF533E4EB877DF98EB /* WormholyConstructor.m */; }; 424CC30C0AB08ABF402C23CB194BED7B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 42C05503E1C6D3964E899A48CA0A9B31 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ADDC9DE53F9B7E1A134155B9342EECE /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 42E40E3FD6E214CDD1FD6B337A031E2F /* CwlCatchBadInstructionPosix.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33B80CC8EE0ECAB695524973E039F545 /* CwlCatchBadInstructionPosix.swift */; }; - 4341A1338AE2EBB9E309F8D076F4E3A1 /* UIView+RespondersObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A357AC195864E56D2592C1979BBAF05 /* UIView+RespondersObjc.swift */; }; + 42E40E3FD6E214CDD1FD6B337A031E2F /* CwlCatchBadInstructionPosix.swift in Sources */ = {isa = PBXBuildFile; fileRef = 391FC387FE91FBA3B5CA405EA4A7DE54 /* CwlCatchBadInstructionPosix.swift */; }; 436E01B2F9A92092F71120855469374E /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FD841BE77E2D4BDDC8DF77D283B1FCB /* Constants.swift */; }; - 4393FFC58E875928839450ECF8223F14 /* HeartbeatsBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9098FE4D7D58067AE284C8C5FFAC0C68 /* HeartbeatsBundle.swift */; }; - 43FDBC0015161B1DECFF9DAEEEFCF9CE /* FIRCurrentDateProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = AE8A7BA9F0275B149E1D0749B53CDD49 /* FIRCurrentDateProvider.m */; }; - 4400CDB03973F646E753150BF596D719 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = D82C3C1195B47C222E0B307D98FBBBEA /* GULNetwork.m */; }; - 4421EE9436B1F697D69BC77F347B3E99 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AA1E8B56C1C4BB8239C7A2E5838E478 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 439F9005FF43D40583E36BF123F14D60 /* SPJSReceiver.spec.js in Resources */ = {isa = PBXBuildFile; fileRef = 27958D4E3AA3B961EBD163BD2E74D50E /* SPJSReceiver.spec.js */; }; + 4435E4FB97F269247D29522C50A775E3 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BDE29DFB920028897F2C914A9E49536 /* FBLPromise+Race.m */; }; 445E3B02C8A2566281256D9C80A8D29E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 4466446C7F53AEDE2EAAEDCF4DE2406F /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = A633DBE772E554D5D84ED42635A8334C /* QCKDSL.m */; }; - 447AC992306D854F91D322173D594746 /* CwlCatchException.m in Sources */ = {isa = PBXBuildFile; fileRef = CA51FBC8E872CD7ACAD950A44AB5F027 /* CwlCatchException.m */; }; - 44C74568D79682594DBEEDAE1ABB67CD /* WHString.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E02A55905C0BF2681E14D8456919ADA /* WHString.swift */; }; + 4466446C7F53AEDE2EAAEDCF4DE2406F /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 82721DF39766E6031B3B3B8EEDE27221 /* QCKDSL.m */; }; + 44C74568D79682594DBEEDAE1ABB67CD /* WHString.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A045FC67B7EB96DFF872D6DE6A7ABAD /* WHString.swift */; }; 45169E7E24EB6F5AAA4DA3E46B8B3DB6 /* SPCCPAManagePreferenceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C86F91CE1DB8CBB4F20B3FB5198EF7B /* SPCCPAManagePreferenceViewController.swift */; }; - 45A59DA3ED4B808A2452F0953DC2B207 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D52CD7197ACC1E43E8550270796A4CE /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m */; }; + 4532C7DEA70FEB1258B323092E70B831 /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = AC058DD843488186AED951EB40621CF0 /* FIRInstallationsIIDTokenStore.m */; }; + 4534388705AA9A86B2B4E6859BCE946F /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DC4F0B29B237736C39F7DD8FDBB18F9B /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 45A59DA3ED4B808A2452F0953DC2B207 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BE2EC5D536D7759972707199C2ED60E /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m */; }; 45AEC3888A32D59FED868B188F68952F /* ConsentViewController-tvOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B1C9B90A3AFF6D6A5D97A1651A7D2900 /* ConsentViewController-tvOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 462E7E84EEFCCE146DAA352A6BFE3C33 /* CwlPosixPreconditionTesting-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 561022AEBBB35FACDF6EF8E49CE29A97 /* CwlPosixPreconditionTesting-dummy.m */; }; + 45F5B32E635B4E0070F6B3A255EF66E9 /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 60BDF6F81E1BB8325DF5E00FB38DD512 /* FIRInstallations.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 462E7E84EEFCCE146DAA352A6BFE3C33 /* CwlPosixPreconditionTesting-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CAF9E07A7A6305EFFE2EB288673EB511 /* CwlPosixPreconditionTesting-dummy.m */; }; 4697BAA122AB0AE34A48D53083F963B3 /* SPUSNatConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 033B5B585762808D4A67F6F6E91AFC96 /* SPUSNatConsent.swift */; }; - 47A40083079AC4AE82C868B4879BDA85 /* IQKeyboardNotification-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DD2F058EBD88A736E9743D0365C027B9 /* IQKeyboardNotification-dummy.m */; }; - 47A79FD540BE671C2E737C8C2859EF21 /* LongButtonViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 74CF2D6A2D0D5DB2BD259BCCF764887B /* LongButtonViewCell.xib */; }; - 482E9B1513D10FBFF50099B87FC1F4CE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 48708299B5925AE04C9D91F73BCCC642 /* Pods-Tests-SourcePointMetaAppUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6526F67316636BAA3D3F8C518F0864BF /* Pods-Tests-SourcePointMetaAppUITests-dummy.m */; }; - 488457EC015E7FC982FC78FFA9D53CEB /* StorageFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68D160079C28255B1CFB259E7055E78C /* StorageFactory.swift */; }; - 48BF35EF4844B8730D50A6ECC45CF34D /* UIView+Parent.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4D63D4847FC55FF58BB4A31235A0BF9 /* UIView+Parent.swift */; }; - 48C6C5B1E8435F0AE8489E579807243A /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C8B3DAC5F77F196D806BEFA672A46F3 /* GULAppEnvironmentUtil.m */; }; + 46C5DA677400C346FF760014C00F8D01 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = A07C28D654656DF66B982CFE159BEC71 /* FIRInstallationsIIDStore.m */; }; + 46C5DE3014BF038B555A840C7DAC286A /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = FCAF9049188EC86589F780B62B42DDE9 /* PrivacyInfo.xcprivacy */; }; + 477363D1915192F87E0AFD1C976C5AB7 /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F39B530F0DBEB88C60FBF6759CD229C /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4790FA87569DBB58C2AF0A495594A4B3 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B4ED918BC43013749D338B8FA108430 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 479CE4E0195155EBED92F0FDFA0A45C0 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D1180ABCC3693176DDD22CAC67DB156 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47F1DF157CCC9FE055CEC08D37E466D2 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F68489EC6CE03CD58D1D4DE0C761653 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47FED8957ED091C9A1865D4FC23F5434 /* GULNetworkInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 825C7A0644C6D36AD413548EB8E8382A /* GULNetworkInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4976B445BFCBACA547D15C6B461F6278 /* SimpleClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10E0A1B4632BE74D7347FA8479A1CE4F /* SimpleClient.swift */; }; - 49AC0046C9F6D1D6C0B58AC4D549BD22 /* CustomActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DB9104337224F469F02FE1CFA054D8E /* CustomActivity.swift */; }; - 49CB882AA67A43AE9688262A8F673E54 /* IQBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2187FE9772F1A9A746A83A16204EDB91 /* IQBarButtonItem.swift */; }; + 49AC0046C9F6D1D6C0B58AC4D549BD22 /* CustomActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F15E126851CF08C21163E34FBF00EA5 /* CustomActivity.swift */; }; 49D62B451A68F642233D6DBAD56A76E1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 4A044CA16C0CD7633ABD7D765DF03895 /* Wormholy-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E75AE00E671306E9A58B2E5A5815D48F /* Wormholy-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4A9A72BD0456048AA3D2A4B838998B08 /* ToSucceed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81DFF5B09AFDDA41E61A9BC5AEDDC6FD /* ToSucceed.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 4AB96EDC993769A97C6DE3C9941049F2 /* AsyncDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95F0052081268DFDBE4A0120A806FDDD /* AsyncDSL.swift */; }; - 4AC342BFDFE4CBE507542F7158B7370D /* QuickSelectedTestSuiteBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = A65D69CB88594A9705501AF0677C3716 /* QuickSelectedTestSuiteBuilder.swift */; }; - 4AFE2AA43D013508A40397DC24FF2759 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EAF80D436E8A7F00E434A770B74AD91 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4B10E679DDDF43EA604B1B19A5AEE651 /* SPJSReceiver.spec.js in Resources */ = {isa = PBXBuildFile; fileRef = 27958D4E3AA3B961EBD163BD2E74D50E /* SPJSReceiver.spec.js */; }; - 4B6B743CB9C71EB943FEBD4AE1437FE1 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D9476A97FCF2A9624775C73C84BCE3 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B9D79C40B91FAA2AD18083131412828 /* JSONView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0C55A5303CFB5640DC3BDA91663E33 /* JSONView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4BA15C1EFB17DF94B7758A5552EFE301 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = AEFE0B8AB65CAA06ADCEC1AC92FB08CF /* FBLPromise+Testing.m */; }; + 4A044CA16C0CD7633ABD7D765DF03895 /* Wormholy-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AFA73929A513224468A91EDB21C124E /* Wormholy-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4A9A72BD0456048AA3D2A4B838998B08 /* ToSucceed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3432DADF2BA3478255509D961040CCA2 /* ToSucceed.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 4AB96EDC993769A97C6DE3C9941049F2 /* AsyncDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D900EC17E881A678C59B7767EBD5B75 /* AsyncDSL.swift */; }; + 4AC342BFDFE4CBE507542F7158B7370D /* QuickSelectedTestSuiteBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A22DFECEFEB682092C9E0A7176FD7E1 /* QuickSelectedTestSuiteBuilder.swift */; }; + 4AFFB626836DC07A212DF7ED5CF430EC /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = D29A7FD24890BA441D55198AF549DAEF /* FIRInstallationsItem.m */; }; + 4B7E3527BFEEC1A0C22C0BE2E5D0580F /* FIRCurrentDateProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E7489FE0B5548F7792286FF53D8AC5A /* FIRCurrentDateProvider.m */; }; + 4B9D79C40B91FAA2AD18083131412828 /* JSONView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E8DD150C18816A42BAA6A0D9977D5B /* JSONView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4BBC77786D48629EFFBB9A0ACD32BBC2 /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = FC8366C584A08F8D3CF627BBB65324C4 /* FBLPromise+Delay.m */; }; + 4D0639F88051BD599F36421151E9DBC5 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = CCC563B6A69D2B0D20A8FB30665142D1 /* GULNetworkURLSession.m */; }; 4E2C1297ABC02A22BFBF28B32C7D3CB8 /* SPQRCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE78CA102B7BD2FFD251FA862D4239DC /* SPQRCode.swift */; }; - 4E838C65E0C476ED90E68A6D5ADF748E /* Nimble-tvOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 271B9303BE698648CA3470649FD280CD /* Nimble-tvOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4EE1F5E35A80958DD706031221117B2B /* ElementsEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B143EBC1966C88F868E06AAC74D1677 /* ElementsEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 4EE65849828C6F9BD0CE67D2B2868A46 /* Matcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A27B524BCCE68381BE0D1E3D5FEA7A6 /* Matcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 4EF14F6516D6C16A8D3B24D7CB14EEF4 /* Equal+Tuple.swift in Sources */ = {isa = PBXBuildFile; fileRef = F440B4F75146FD828851926CEEE43163 /* Equal+Tuple.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 4FA0BEFCC6F57EF89351840090802E47 /* UIViewController+ParentContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1C32D73EB2B645FC9BF38D9365ECCEA /* UIViewController+ParentContainer.swift */; }; + 4E838C65E0C476ED90E68A6D5ADF748E /* Nimble-tvOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B2FEB356A7C93226880DA2DF756BA51E /* Nimble-tvOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4EE1F5E35A80958DD706031221117B2B /* ElementsEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7936F9CC47E87196EADCC0A32CFE579A /* ElementsEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 4EE65849828C6F9BD0CE67D2B2868A46 /* Matcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = CECD5CEF7A06ACD8E031ED8E025DCE01 /* Matcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 4EF14F6516D6C16A8D3B24D7CB14EEF4 /* Equal+Tuple.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16AB754F0D2103BCF9E6EC83FAFAE414 /* Equal+Tuple.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 4F676FDC744F549E9A5F525DE256C4EF /* GULNetworkInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E7EF4FBBE64D7A0C659CC1AA72FDAC3 /* GULNetworkInfo.m */; }; + 4FF0501676FDBD5CB8A022E980091E60 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E2FD17AA6762BEAB6E92778BF0E023 /* FIRLogger.m */; }; 501DA5BDE8B9B9A9CB2F9C9649BEDF7A /* SPCampaigns.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9811C119055ADA50A0FB38EFA8F3237 /* SPCampaigns.swift */; }; + 50333EED4BC8C7C5B59B20C08F2F253F /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 623117FF974FB0FB1E6BCE68FA255F07 /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5092611EAEDF9B57CDDC32F17D9432B9 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AF4E875AA9FF50BC34EEFB327418AAF /* FBLPromise+Testing.m */; }; 50BFD5D2763D34A0BD17A81965626913 /* SPMessageUIDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BC1FB1939BFE5F15D153AAC7FEF4A83 /* SPMessageUIDelegate.swift */; }; - 5148653BD6608868D5B10E5B48644DDE /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = F90DDF1898184087BBAD77CEC96A842D /* GULApplication.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 51A3890D89005002D0E83E2578AF804F /* UIView+ResignObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 684D5E952D1884720316846DA0045368 /* UIView+ResignObjc.swift */; }; + 51672E1225B302E91C3F8F939EE10795 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = FCAF9049188EC86589F780B62B42DDE9 /* PrivacyInfo.xcprivacy */; }; + 51AB82B157CE47D656D7B5560E328DFA /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 51CD3C7D17AABA82467F35AF824AD67F /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51BB496C0C1A7132E0902DAEBCBB2473 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E89B513CEE32822C3678F04BC0D9F27 /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51D8B67641358622716A1D73C5B88A6B /* SPCampaignEnv.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D6BAA29C8563F4A6E565468007F72C4 /* SPCampaignEnv.swift */; }; 51D8DE3681AFC11D58D676637C058249 /* ConsentViewController-tvOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C2D78C7CC2691E374ACEB1E6F473BD02 /* ConsentViewController-tvOS-dummy.m */; }; - 51DD2FECC69E8668BEC4F85436C7FE82 /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29978296061A1207DEE8CAB87764F0DA /* NimbleXCTestHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 524BDC4CB74414F98BD75FD8BA36226F /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = F6B816906F8A377175AF29FD385267AF /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 5301834732AA4B5A3B024F809C1F4DF5 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 32266AE7F761B56C2F69BA2BE77054A0 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 531F4516F0B15B271AF13355D8CD55D2 /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D4924F4ABCA937EF78C6D630F046064 /* EndWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 532CDEAD5A8DBA5C9F053FDA420C5D46 /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14EE15EE2D21740716E29AC2EE0A6076 /* Closures.swift */; }; - 541C62C64648C6F7A7B06C130855FA6C /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C925C17E276718B3B82E1F218B59371 /* AssertionRecorder.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 54AAB7E8FBEB048BB04F0620D8479FFB /* AsyncExample.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDE29F7E2C2B8181BDC86D8BC3C43A2F /* AsyncExample.swift */; }; - 54C1CA78AA74A3A51AF899625C9C11DA /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C7F93F7CFF13C43FCDDF68AC3D6522C /* BeGreaterThanOrEqualTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 551D3F3E2972DE40D696A161E4813F98 /* WeakContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3626ADBB3B7D16166250CB83C71FD62 /* WeakContainer.swift */; }; - 559B1D21B2B49E2B49F5E9F9CFB2E871 /* IQKeyboardManager+ToolbarManagerDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9293F38470C63C2962F16E019C59547 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */; }; - 5676384BE46B29B3008A5DCF5CA20905 /* Behavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 259EFEA7087E5468175533431A8057F5 /* Behavior.swift */; }; + 51DD2FECC69E8668BEC4F85436C7FE82 /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 918C0AE49CDE63B115192CE0A1B0E0E8 /* NimbleXCTestHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 51EE07C027448A05C2E5989CD3D89154 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D67D2C3FAFFE22ADCB1544D4F42E24 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5280811BF86E477186149298B2556210 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 4458D1091D559C633515A51150C0DEE0 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; + 531F4516F0B15B271AF13355D8CD55D2 /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = E09E2A0CFA94259396CB6CEB353D28D2 /* EndWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 532CDEAD5A8DBA5C9F053FDA420C5D46 /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 960100516CBDC6A1EC54318B4AE3F1EB /* Closures.swift */; }; + 541C62C64648C6F7A7B06C130855FA6C /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B108F5A67F202BB0C878709D7FAEDF7 /* AssertionRecorder.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 54AAB7E8FBEB048BB04F0620D8479FFB /* AsyncExample.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C348D8B81A15C7A514C7AAA3648FCEB /* AsyncExample.swift */; }; + 54C1CA78AA74A3A51AF899625C9C11DA /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37FC59E9D44AF812BCB6A6B2B092B47D /* BeGreaterThanOrEqualTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 54D70689ABE93BB9193B0E4364FD4512 /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 9741CDF6C6A5BA9F9888C1CE1979527E /* FBLPromiseError.m */; }; + 5676384BE46B29B3008A5DCF5CA20905 /* Behavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFB523B22A88143D46E82779B32E65E1 /* Behavior.swift */; }; 567B9B6568EB9542D11647C5A5D08EB1 /* SPCampaignEnv.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D6BAA29C8563F4A6E565468007F72C4 /* SPCampaignEnv.swift */; }; 56F9C3DB14923BD952C7EB9F8DD017BA /* SourcePointClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 182C561114B03D57F4A67E016CB87CFB /* SourcePointClient.swift */; }; - 572E269AE112CECC7AE4B293E42151DA /* NSBundle+CurrentTestBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAC7A0B37A8D91FE55F50A479F14B44C /* NSBundle+CurrentTestBundle.swift */; }; + 572E269AE112CECC7AE4B293E42151DA /* NSBundle+CurrentTestBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90E96D417DE7D723D1BA3ADBADAD43DB /* NSBundle+CurrentTestBundle.swift */; }; 575FD7F32DE2AF256BE6B67FB8B5EDDF /* SharedNativeToCoreAdapters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 624334D7BEEF45679E6500B48CAF4E27 /* SharedNativeToCoreAdapters.swift */; }; - 5788F6A41F490BA4F8D89B6ED952C5FA /* MatchError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BFD36A5C928AC017F56C1D85904E4BA /* MatchError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 578A5B5AA434F789E77D79B621260648 /* NimbleSwiftTestingHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E72C75729C5B0D555147F8E096CDF979 /* NimbleSwiftTestingHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 57D5DE6136C3C41C02909DA74C316785 /* Polling.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0227A01D4F0BD28AF391B3A9DB204D03 /* Polling.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 57D620DC2F6FA4BD1251180934A8CA51 /* FIRTimestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = 50EAF75774A8D0D95B92DB43E3CDD6AE /* FIRTimestamp.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5788F6A41F490BA4F8D89B6ED952C5FA /* MatchError.swift in Sources */ = {isa = PBXBuildFile; fileRef = E49E6D6DF3D5881F79486368E84FCB60 /* MatchError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 578A5B5AA434F789E77D79B621260648 /* NimbleSwiftTestingHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 462B2AEFDB6F73AADFBB9D28D5A983CE /* NimbleSwiftTestingHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 57D5DE6136C3C41C02909DA74C316785 /* Polling.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3677F11C8AE9FB7BFBA1CF30068D1B53 /* Polling.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 584BC3B43F9279CB9C798919BBB35A85 /* SPPrivacyManagerRequestResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96046321F1D0A6B8DB94CFC1A02E4839 /* SPPrivacyManagerRequestResponse.swift */; }; - 585E27117F01D1FF8D5DBB2FBDD467D2 /* BeVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18C8FD65ACC0A1178BF37AB4EC3186DB /* BeVoid.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 59032A0895799CFF0F7E2E4DD192B38D /* IQInvocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A022E1234424683435C80940388BE00 /* IQInvocation.swift */; }; - 5932AC8235F4D68D5D1C8119DD03ACB7 /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = 547430F6B989F18B64D86FFC4646F10D /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5A1F0264F883C81BA3C9BB59B61C79FE /* javascript in Resources */ = {isa = PBXBuildFile; fileRef = 04DB65DCECD90C91E3B57C2CBD3A859A /* javascript */; }; - 5A247DA4A9BDEEB12619889B47ADFA6D /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 87D5ABE9F3D08E0E9D3B6E428A17FA0B /* NMBExceptionCapture.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 5A8AB7FCF66E0E146BD4FD15F420BDBF /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3F02076DF398AB04994F86592D2A03B /* SuiteHooks.swift */; }; - 5AAE8557F63374E68C8623A4965E7782 /* Polling.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0227A01D4F0BD28AF391B3A9DB204D03 /* Polling.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 5BEF5CEC91101BD98D478BD892528C70 /* AssertionRecorder+Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA26FA80CF19C1376665161D157B339A /* AssertionRecorder+Async.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 5C58080A1AF3D52C09D45D939C23854C /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4839977FE2F318D830B3611AAC7E0B07 /* ExampleGroup.swift */; }; - 5CF4698F9A8F89E3C94439F8438B66E2 /* IQTextInputViewInfoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F63F06A3984BCA7D29B059A0408A9A12 /* IQTextInputViewInfoModel.swift */; }; - 5DC101E82DFFD4DDE7BCD0BA2D8467DB /* UIView+Resign.swift in Sources */ = {isa = PBXBuildFile; fileRef = 135682E6BB9D8F99E34FEC9D5D0E744A /* UIView+Resign.swift */; }; - 5DC324A6C43DD20E69455BB33B4193BD /* NimbleEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA5D8EF50A7F32B84EBC90AF394CB7C8 /* NimbleEnvironment.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 5E24E5DF2F1B2FED867957864E7669F9 /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = E04746FC82CB76AC1DA809F7843EAF6C /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 585E27117F01D1FF8D5DBB2FBDD467D2 /* BeVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13916C9CB5D0CD65F90BA3F13D5E1D33 /* BeVoid.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 58E02CA7B999430A87D32E7E49BC2404 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = E3DF9797CB7081636075297C5AD03C8F /* GULNSData+zlib.m */; }; + 5932AC8235F4D68D5D1C8119DD03ACB7 /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A380CBD6CD24A6B43504FFCAE32570F /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5A247DA4A9BDEEB12619889B47ADFA6D /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 86A7C611C4CD9683D25B8560131AFD15 /* NMBExceptionCapture.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 5A8AB7FCF66E0E146BD4FD15F420BDBF /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9279BC8901C9D4808E6F89B206E0EA14 /* SuiteHooks.swift */; }; + 5AAE8557F63374E68C8623A4965E7782 /* Polling.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3677F11C8AE9FB7BFBA1CF30068D1B53 /* Polling.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 5AEB76D30F81513312E3557E791B65E8 /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 53A96ADB84F50B33405CB597E3C56835 /* GULKeychainStorage.m */; }; + 5B7335F7EF4B131BADBF0FF2085357AE /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 002DA9997692065274872476380833D2 /* FIROptions.m */; }; + 5BEF5CEC91101BD98D478BD892528C70 /* AssertionRecorder+Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04117DE208A4F4F3EB24426B69A86672 /* AssertionRecorder+Async.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 5C071F920D94B8C26D71B55820B50AD0 /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 58D58BA0B172E442BA8F040546731303 /* FirebaseInstallations-dummy.m */; }; + 5C153C68B0102BD3C6945847A39D9915 /* CwlCatchExceptionSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C0029DE294E83BFBB84C2887A08C25E0 /* CwlCatchExceptionSupport-dummy.m */; }; + 5C58080A1AF3D52C09D45D939C23854C /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2735D11320E4C0B28753849CA0C4FADF /* ExampleGroup.swift */; }; + 5CB582212469EA2D48A85E5132565E2A /* TextTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F489C6D8BF4D2897D5E6BDD18EB86725 /* TextTableViewCell.xib */; }; + 5D6F902C288B5672DF143CA7950AB3BB /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = DB8E64A84501116406F05591EF5569D1 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5DA186DC88513F9479ABEDB3C6814102 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 00F2DFA440703FD4A962457105C4F549 /* FIRApp.m */; }; + 5DB20ABF155F7472B840AAB7378246B3 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = EA58F85FCDEC2400C373393A8B8671F2 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DC324A6C43DD20E69455BB33B4193BD /* NimbleEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97E474B81FF725EB6C01439A223F8BD6 /* NimbleEnvironment.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 5E24E5DF2F1B2FED867957864E7669F9 /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = DF984411EEE48496E173411B16040B27 /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; }; 5EE447360FF7EF4A075BFE61D01CD457 /* GDPRPMConsentSnapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5D6584C89A476EAB14E471673012300 /* GDPRPMConsentSnapshot.swift */; }; - 5EF6D9E6A32DD18D070F9197B77E621A /* IQKeyboardToolbarManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D7DE976823DEE57DFC868F29DF873AF /* IQKeyboardToolbarManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5F5F094636A99E789C83162A7BFF24B4 /* HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54A470A44EDE551DA0AFA256D2C5D4FF /* HeartbeatController.swift */; }; - 5FAE1D3236DC07D013196A1DDA0FC68C /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = F63D0B2446F40712AA7AD3941D1BCB53 /* ExampleHooks.swift */; }; - 60047BD8AF182AD53512CB4F23F741B5 /* CwlCatchException-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB21CCD209327E78352F268FE5D05DD /* CwlCatchException-dummy.m */; }; - 602B72C096BD766AAEB2286B8BD51294 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E616169FBC8240945FC48D592274B4A /* RaisesException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 5FAE1D3236DC07D013196A1DDA0FC68C /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06219E171DAD51821C073703A23B86D4 /* ExampleHooks.swift */; }; + 60047BD8AF182AD53512CB4F23F741B5 /* CwlCatchException-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E63152537F06AB68D928373397496476 /* CwlCatchException-dummy.m */; }; + 602B72C096BD766AAEB2286B8BD51294 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68A266767518E3B4D84197B03E8EFB05 /* RaisesException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 60ADF92D28536AE91C8830EF1EE88545 /* OSLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DC58EDA4573836B36C15FE9D20DA773 /* OSLogger.swift */; }; - 60B509039763325F5314393DCDD7C472 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F9C078C5139CC0543A765E2FF230C90 /* FBLPromise+Async.m */; }; - 610BB71178C79F5071FDB51045F79596 /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5E901D6799A4080D3DA5DE97F41AB72 /* BeLogical.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 610F47A5BBDD2271EA15F178856976AF /* IQPlaceholderable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53F00746A713E8D3E29D36852B7F2A61 /* IQPlaceholderable.swift */; }; - 6172C495BCF4F58B73EFBD9DF7321789 /* WHBaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A153645F2DDB19458FE1A4346444F6FE /* WHBaseViewController.swift */; }; - 6206E5CD384823133D7BF1C3B9DC9520 /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67957B9E77D349FDBA49CD741DA313D2 /* Stringers.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 62098C923A3CCFA2AB66EB8D158E984B /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = F7FC3DF3EC50F2594E30DE7CD391DC34 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6228B3B995726E67C14441AB35FBC912 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 6231F81849412A52C52287872172ED06 /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE61A8CA9758CA1D4AA14AA0909D6F4A /* Callsite.swift */; }; - 62344244793E5ABCC224B3EEF08F28EE /* AsyncWorld.swift in Sources */ = {isa = PBXBuildFile; fileRef = 629C5CA2DE65A4802EEBB04934FE67CE /* AsyncWorld.swift */; }; + 610BB71178C79F5071FDB51045F79596 /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15189BA69BDFC39E7A0E6CDC4DC6FB80 /* BeLogical.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 6172C495BCF4F58B73EFBD9DF7321789 /* WHBaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24787721563C702E5268B6ECBDB11450 /* WHBaseViewController.swift */; }; + 6206E5CD384823133D7BF1C3B9DC9520 /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = B00B568B3FD94D3462B7949D8CFBFBBB /* Stringers.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 6231F81849412A52C52287872172ED06 /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A2339FBE3D2799180870D117A85A752 /* Callsite.swift */; }; + 62344244793E5ABCC224B3EEF08F28EE /* AsyncWorld.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55B41B068310EFBB9FE1665C5A225DA2 /* AsyncWorld.swift */; }; 6248C2A34AB4EAF291F190E72ECBE09C /* OSLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DC58EDA4573836B36C15FE9D20DA773 /* OSLogger.swift */; }; - 62E6BC8C9BB4CC12D26B654302A1103F /* NimbleTimeInterval.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54D129B0FF00E96ADA5E985D90AEB12D /* NimbleTimeInterval.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 62ED706B2E85A968AD1E0734698D1E00 /* Array+Sort.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD8A1623E24EBB185642DD871266F75A /* Array+Sort.swift */; }; - 630E93E0E73A19E7914139F6CAE445BB /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1AE3F717FE3E0E66C2B39495FB5A811 /* ThrowError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 633DC282F9B4394A0C8D3337B98BD76B /* IQTitleBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14250D74426E3F8CEAA313072076355C /* IQTitleBarButtonItem.swift */; }; - 6350B1EF54E299F8FD510F0FF03F885F /* GULNetworkInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CA07D267FBD8C4220DECC3B0848D17 /* GULNetworkInfo.m */; }; + 62E6BC8C9BB4CC12D26B654302A1103F /* NimbleTimeInterval.swift in Sources */ = {isa = PBXBuildFile; fileRef = F29AD012F64DCE477800BA6013E08ABF /* NimbleTimeInterval.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 630E93E0E73A19E7914139F6CAE445BB /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3109154306A035EA1599891C38CF19E /* ThrowError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 63D6E6B05774D7956F06C8C5F3540430 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = 22E7A0FEE44B392FEDDAA42328B91CE9 /* FIRInstallationsIDController.m */; }; 63FA51277E3679AA04B09C05FB7E0D94 /* PrivacyManagerViewData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53E5FC8C35255A7A82860F62CB1CAD67 /* PrivacyManagerViewData.swift */; }; - 6408EEC4924B8B8B0439489358C47443 /* Quick-iOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C27FE6E8099EFAE616C0117F0A94461C /* Quick-iOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 654C6BCFF2B8365ECB3663536F5411E4 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 48A552628325A8E063430D78445EB2F1 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6562A3FFAACF4E2767DA2E1D933D1C18 /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 82C724D20EAC54F77E63A4B052CF0253 /* FIRInstallationsHTTPError.m */; }; - 6588E326C2A66E610993DFE4627E5F84 /* NMBExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DE8448FA1AE310E2375710837E256E9 /* NMBExpectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 6408EEC4924B8B8B0439489358C47443 /* Quick-iOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C1D5825FE9414179562E255A3A503F29 /* Quick-iOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 646AFC757A4D48BE07EB5D51646571DA /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 498A3EDFE6F43066D1D7A0024AFC6CFE /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6588E326C2A66E610993DFE4627E5F84 /* NMBExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAEBA3A4FFB630398D8DDB44B90DD703 /* NMBExpectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 65AAEB24AD3E2FA5235D2FF67A3BEB22 /* SPURLExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CDDC03D1A80206740DFE90B0356D8FC /* SPURLExtensions.swift */; }; - 65D9F6E820F16343ED7779E027D114ED /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 8689BBFFCE916282306018B8C16C73A4 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; - 662B978B41014979E5FF2C6F72BCE893 /* QuickObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 39521561A3A1D050295F964A5391C69E /* QuickObjCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66595A9246FAA5A6E49ADD491C909846 /* Section.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6B6055780BBF42CF95D5E9937FA4B31 /* Section.swift */; }; - 66BD0AFE87FD37205D315B6429CD63F5 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51933828D8851062D12D91760880D827 /* DSL.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 66D0DE389F5E0B1B149A6687B9884E20 /* SatisfyAnyOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5632689C6FB84E1275F7312AAC7B9057 /* SatisfyAnyOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 6741E7FC57848343D9C6AEE59812A0DC /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 754BEF92020F4A1FC09E103BB777106A /* QuickConfiguration.m */; }; - 67E998107712685316435BEAEBD69DBA /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = D0A20F94BAC0F3868916549EF7807042 /* FIRInstallations.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 67EF68970A8DE610A52E54ADDE76B1DF /* ErrorUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5A307F97B8D4D230351B1E3803B356C /* ErrorUtility.swift */; }; - 67F28A410FE50AA82AAB5D72ACBD8806 /* SP_Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 3AC41A4E33416989A7D8796B73BA4A07 /* SP_Icon.png */; }; - 69BA8E18742B5F0F24EB399B9330AA18 /* IQKeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11F290A7274F920B01D24B662A5E5E88 /* IQKeyboardManager.swift */; }; - 69CE792E7DF70AF60636D71ACB7A5512 /* IQKeyboardToolbarManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32273C3579DDC80A0E04B464513AEC00 /* IQKeyboardToolbarManager+Internal.swift */; }; + 662B978B41014979E5FF2C6F72BCE893 /* QuickObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 05DDD82571D76F1B6040FDB80E243218 /* QuickObjCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66595A9246FAA5A6E49ADD491C909846 /* Section.swift in Sources */ = {isa = PBXBuildFile; fileRef = 153CA418C4CCC84EB19B933C745D4B17 /* Section.swift */; }; + 66BD0AFE87FD37205D315B6429CD63F5 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73B8CA33151989BB179C3D17D42A2E92 /* DSL.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 66D0DE389F5E0B1B149A6687B9884E20 /* SatisfyAnyOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A5FCE24A5048739DC589904C6B5C661 /* SatisfyAnyOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 6741E7FC57848343D9C6AEE59812A0DC /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 0430733BA910250764FA4BE20EF237D1 /* QuickConfiguration.m */; }; + 67EF68970A8DE610A52E54ADDE76B1DF /* ErrorUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84F0A664168C0FA18A594E170364CAC6 /* ErrorUtility.swift */; }; 6A1C8DA0BBED39C2342CFCAF4D1AA667 /* SPPublisherData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E67FC0C023FEEE646E022609D24DEC6 /* SPPublisherData.swift */; }; - 6ADB6DB35E5E73BACB1AE79E30DA67E1 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = EF6900942D6C588E3E56535DCCF82EFD /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AEFEE8DDE648E29A11CC391E311E11E /* FIRTimestamp.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E2B729B4FD4E54F4503424700745941 /* FIRTimestamp.m */; }; - 6B6663947381FFBBFE357E4134197C10 /* CwlMachBadInstructionHandler-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 85DCA40AD37456BE4FA02979143B558D /* CwlMachBadInstructionHandler-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6C061B03EEE882C3C7918717D81D325E /* SPPMHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = E809C61DAFA64E047AFD6934B3D368B1 /* SPPMHeader.xib */; }; - 6C0DDD6540653EA5EF76BAE08979D62C /* QuickTestObservation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01A004F916AE721171E411659CD37E18 /* QuickTestObservation.swift */; }; - 6C4F8229CC4C8329914D4F065DEF2C0D /* FIRHeartbeatLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AB47EF0B0C5748A52E14C8D16EB9DDC /* FIRHeartbeatLogger.m */; }; + 6B637D045B52BB7A33FA18CC2BAE7753 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 15322C34CB689D51A783BA2B2B0CFC6E /* GULLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6B6663947381FFBBFE357E4134197C10 /* CwlMachBadInstructionHandler-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FD8C1A7CEA1C49D6CBDF4F352C2F2FB /* CwlMachBadInstructionHandler-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6C0DDD6540653EA5EF76BAE08979D62C /* QuickTestObservation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 619C06FAEA3D53A2B1550217D5321839 /* QuickTestObservation.swift */; }; + 6C34619C12CFDA9D28BEBAD42AF62715 /* SPGDPRNativePrivacyManagerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F8E495568942DD4F992BA43DDA0C4D7A /* SPGDPRNativePrivacyManagerViewController.xib */; }; + 6C7A617EFA139188CEF28CB6481A80FB /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = C657E970A741205EA5359E6B6A2C8066 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6CB9559329ACAD8E1F935A11424CB37D /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = E022694EBD639B47976FDF834FB1C922 /* Date.swift */; }; - 6CF57A697F7DB553D24A0B6B994C4B4B /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 06AFB2FB1357339F642D525DD139645C /* GULNetworkConstants.m */; }; - 6DD1C263035F85DF005DD93D0F8C147A /* HeartbeatStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C776DCB2265A3C66F6F085B02E6B99C /* HeartbeatStorage.swift */; }; 6E17FE74B30432F638275F6CD4B6C1C6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 6E531B8B6E54DCD6D630CA1B66D2DD12 /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA1ADE3868CD5346F4F2BAA26B8668B3 /* BeLessThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 6E65891C6AEFDADA41F47D8BEE3A644B /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = EFFB42EBA6B36A4E257D3F51EF9DC7DC /* PrivacyInfo.xcprivacy */; }; - 6E7F5978F0533F02E58933C814C7CEA7 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B08161A2B63C49591A4C21B2AEC49EC /* World.swift */; }; - 6EE8133026BBAD9196509BE66F0D1454 /* SP_Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 3AC41A4E33416989A7D8796B73BA4A07 /* SP_Icon.png */; }; - 6F2CA58486E9F11EB52DA7584225E90D /* QuickSpecBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 1927DE642808C0399D8EC4D6EEBFFA2C /* QuickSpecBase.m */; }; - 6F3765FAE3920A18607D719137972E8E /* CwlCatchException-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E1B76FB29EA8F4A3A6137D51D23FADEF /* CwlCatchException-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6E531B8B6E54DCD6D630CA1B66D2DD12 /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96023E180B8A1891858559CA04F99435 /* BeLessThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 6E6B94E63F073BE3B4BB64B0B0CB20E2 /* SPPrivacyPolicyViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 912335C07E49ADE52F19D561EF6DA3CA /* SPPrivacyPolicyViewController.xib */; }; + 6E7F5978F0533F02E58933C814C7CEA7 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF61B9BC5870DBCF5759758E0AEF470A /* World.swift */; }; + 6ED27AE128B644CCC88F75C6B2A700EC /* HeartbeatsBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0099ABEFFA46E52853778824E09A231E /* HeartbeatsBundle.swift */; }; + 6F2CA58486E9F11EB52DA7584225E90D /* QuickSpecBase.m in Sources */ = {isa = PBXBuildFile; fileRef = B3A41EB6CC90A415A6C846DAE29F994A /* QuickSpecBase.m */; }; + 6F3765FAE3920A18607D719137972E8E /* CwlCatchException-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC90213A94B03253A25DEB451734283 /* CwlCatchException-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 6F5BFDD8F2B44360A2760CDBCF0E2BA5 /* SPDate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0D11B44C645CCA4370139EC3EE9C182 /* SPDate.swift */; }; - 6F9B24A0C0D89C8696C7C9681C2E9FEA /* BeWithin.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0E65EFCCCF70977E03B71E52395AD11 /* BeWithin.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 6F9B24A0C0D89C8696C7C9681C2E9FEA /* BeWithin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32649384E0CC1778A67679C905B06984 /* BeWithin.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 6FA68D9A75ADF262A50E2104D59EDAEB /* SPPrivacyManagerRequestResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96046321F1D0A6B8DB94CFC1A02E4839 /* SPPrivacyManagerRequestResponse.swift */; }; - 6FABC5B14DD375EB3D6079F8AE630E68 /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B12C2B2013EFCA0F1FEB1D5379405A8 /* FailureMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 7002D87D448EBFBF3F2B6CC545BEA033 /* InputStream+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30FA3D98286D1A49ADE17B7E8C9C5E77 /* InputStream+Utils.swift */; }; + 6FABC5B14DD375EB3D6079F8AE630E68 /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 898700DC4DB5095AAB02015D2BB39875 /* FailureMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 7002D87D448EBFBF3F2B6CC545BEA033 /* InputStream+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C267FC91FF61F8F6D959793E124C676 /* InputStream+Utils.swift */; }; 70095025DD7842E6EFA9FE6BDC1E25E5 /* SPGDPRPartnersViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = 4261DEFFFD9A94613A8785C9274D9CFB /* SPGDPRPartnersViewController.xib */; }; - 706546C97EFF9C0C7BA5ED415432F4C9 /* SPCCPAManagePreferenceViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D407B14424BEC0F39C5A5519E9569AAB /* SPCCPAManagePreferenceViewController.xib */; }; - 70EB2F7CFA7F85E4F0AE0FDDD390BA26 /* CustomHTTPProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = D648943AD1475644A64F5CB20717192A /* CustomHTTPProtocol.swift */; }; + 70EB2F7CFA7F85E4F0AE0FDDD390BA26 /* CustomHTTPProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 862A201A42BB7940AEBE4698319FD1C2 /* CustomHTTPProtocol.swift */; }; 710A48C754849C6722436AEA00D0ECD7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 7171773532BA8607A9C99361F0D69C44 /* IQKeyboardManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A89F671C269C20114AD5CEEF81E691E /* IQKeyboardManager+Internal.swift */; }; - 719FF446F175A25EBFC0546BD4CF3AB0 /* SPCustomViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 11DDF4F1DF218CBFC359A60C30CF9EEA /* SPCustomViewController.xib */; }; - 71A04EBB1C14608A292EC31590F3128D /* IQKeyboardManager+ActiveConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7DA271879C5545FA95AC3A9F8807B2B /* IQKeyboardManager+ActiveConfiguration.swift */; }; - 71A53BFA3C4C43E666F8C0DA6028FCF6 /* Pods-Examples-ObjC-ExampleApp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5076611C4673EEC7B845A13EEDAABDCD /* Pods-Examples-ObjC-ExampleApp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 722CFE49C5289FFB97B9662AD7208381 /* FirebaseCoreInternal-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E0A038CAFCE049FCCA2B19001A4C4C96 /* FirebaseCoreInternal-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7278303400D2ABC6AA304C9325B02701 /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4839977FE2F318D830B3611AAC7E0B07 /* ExampleGroup.swift */; }; - 728EAA16343AACA073D8B4FD67105313 /* Equal+TupleArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18F6047FB83FFEC12D6F0FE6CE4703E5 /* Equal+TupleArray.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 72D3DC3B6531EA6BC558FB653D1DF9FF /* Equal+Tuple.swift in Sources */ = {isa = PBXBuildFile; fileRef = F440B4F75146FD828851926CEEE43163 /* Equal+Tuple.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 72D9A45E0F0DE9C9CEFE9529ED72FE76 /* SubclassDetection.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA0F831F10B5385C15685F1BE6EEC902 /* SubclassDetection.swift */; }; - 730AAFFA807494C613D94C1A49A105D1 /* IQKeyboardManager+Appearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B9ACFD5AA593AE2F9E646FAD249CCAA /* IQKeyboardManager+Appearance.swift */; }; - 7451F8CB89E1E04B366DBFF51B829AE0 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ECFAAFC62A2DFE367B301D75F04E4EE /* FBLPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7493C9A6B26E0389E19D56F4E597B420 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 9203BA4D6A6B272DBF889E011390B373 /* FIRApp.m */; }; - 749CB711DD437086998B63AD8E67067F /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEED0B0D8119723149D7E468C5282C0B /* Expression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 74C463E9D6DD2F959C453D80B77646E8 /* AsyncExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5CF58C2980FC8C6E33960F8257583AD /* AsyncExampleHooks.swift */; }; - 74D8047BF13BE50C4380FA0FA14B5398 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = B1C3C5D363C62E3B2674821C53520683 /* FIRBundleUtil.m */; }; - 74E2C46143EC1F9C92E87DE22E41CF9F /* QuickConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBE8437615205B25F5BEF35B3A81EDEE /* QuickConfiguration.swift */; }; - 760AD73609933DD80F292087F77C65B6 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03A4E26FDAB2812977B49469A6B6B561 /* Example.swift */; }; - 760B5F227A6234520658AE2331625379 /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4E19260113E31B01ACC4A40F06CC32 /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 764AAC6D37DCEE0CC7B6487094B2E76D /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 627553C3D560EA9D715BD1548B0CF3D7 /* ExampleMetadata.swift */; }; + 71344BBEAB7CD7E71965C5909DC757B0 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A7135EAF0227A95CBA60514796568214 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7191A7E7EC9E4C4FBF06F58D8BDCE876 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 42DA89C9B6E1A0EF2D37DC044D3E20CD /* GULNetwork.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 71A53BFA3C4C43E666F8C0DA6028FCF6 /* Pods-Examples-ObjC-ExampleApp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 855AB738733A7A78AA95AD581A829FB1 /* Pods-Examples-ObjC-ExampleApp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 71AB3AFE8ACF1FC3D4E29FCB88BA43EB /* WeakContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0BE513955A6A8F454A160C86672A1AF /* WeakContainer.swift */; }; + 71EA7832853646A297D1387B1D06EF40 /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DD196321D611BB05438088E085E051B /* FBLPromise.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7278303400D2ABC6AA304C9325B02701 /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2735D11320E4C0B28753849CA0C4FADF /* ExampleGroup.swift */; }; + 728EAA16343AACA073D8B4FD67105313 /* Equal+TupleArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63FE314A41192D45ADD1573B04810CC7 /* Equal+TupleArray.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 72D3DC3B6531EA6BC558FB653D1DF9FF /* Equal+Tuple.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16AB754F0D2103BCF9E6EC83FAFAE414 /* Equal+Tuple.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 72D9A45E0F0DE9C9CEFE9529ED72FE76 /* SubclassDetection.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCB584E83AF057F9A589843EF7C3B147 /* SubclassDetection.swift */; }; + 734578DE62B3E86E62E44F3CD119F76B /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 19EED79A76C2275317D833D80EC38860 /* FIRAnalyticsConfiguration.m */; }; + 7361B6406A96D7975004BAB3B384346F /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D5FC13DE2F0DC1B3EF8C65E8074CD50 /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 738636B3D9978701C19C0A1248C2B262 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ECE275F580D55BF3195B81188B4C978 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 73EC88069D6718F8A2BD84E64ED2D2F9 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = EA63672DF60F28265DFD1420B99A70EB /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7448355C5632284FD044B0117271CD4D /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F85E06CF5FBCEAD3DC18CF477180039 /* FBLPromise+Do.m */; }; + 746C0A040DB12234B4711F03D5F6A90A /* SPGDPRCategoryDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F8C910DBDF5A6D2D1FD47EEAE69D7867 /* SPGDPRCategoryDetailsViewController.xib */; }; + 749CB711DD437086998B63AD8E67067F /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEBD42371DFCE603D7B22168452A54CD /* Expression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 74C0A29E19BDD90330C4D63E1CD164F6 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 841ECE59E73EC1FE5F2490BAA02B0832 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74C463E9D6DD2F959C453D80B77646E8 /* AsyncExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7190225A20C7D20C3ADAB000F6661E5 /* AsyncExampleHooks.swift */; }; + 74CC21AB3BB0F79E145B2A2096FD1A8B /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 694614A059CDC801BC904A72925A021E /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74E2C46143EC1F9C92E87DE22E41CF9F /* QuickConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00EB5256D8D2065D33FBDFBB317F6160 /* QuickConfiguration.swift */; }; + 74EAA009BFA7348B1BB2F38D85724C6C /* FIRFirebaseUserAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B3F379896A4755F9A8E6E0C9DBE6C3C /* FIRFirebaseUserAgent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75599FDC2CCAF74545AC39A027D44C67 /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = E747AFEEEAD893ED40EDE94A046B4EB1 /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 760AD73609933DD80F292087F77C65B6 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22D2ACDC9E8AA687B43986D8C061F861 /* Example.swift */; }; + 764AAC6D37DCEE0CC7B6487094B2E76D /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = C65C2ED9004D328F635411B8F061B410 /* ExampleMetadata.swift */; }; 7738FD778570CCA09140B99DD3A97C49 /* SPMessageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 022AE72E29CD671904856E3584C975F9 /* SPMessageViewController.swift */; }; 775943CEAAED11AE1AF65DB923F269CC /* SPWebViewExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 617D70F6D92E44183B59218BA5F565AB /* SPWebViewExtensions.swift */; }; - 778B4229E23E12218122EE92523628A4 /* IQDeepResponderContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 790698D1907D96D40B94366B158B24F3 /* IQDeepResponderContainerView.swift */; }; 780834545C4B5786840807BF14CB7DD1 /* SPPublisherData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E67FC0C023FEEE646E022609D24DEC6 /* SPPublisherData.swift */; }; - 78D36ECD4B1C245F739FE0DCDD86D62A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 7907D88CE0210C78C74F77A38220E2F2 /* UIView+IQKeyboardExtensionDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1EF5C57CF95EEDFB6147F92D19FD6F7 /* UIView+IQKeyboardExtensionDeprecated.swift */; }; 794A673A2F56336E980F75EDA02CD25F /* Bundle+Framework.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1049229D7F62564EA52B9AC96A0C3031 /* Bundle+Framework.swift */; }; - 7977571FB80FA05A18B90134DB1DAD88 /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF2760999E9505C542C43463DA33C683 /* BeginWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 79AB00FAA745A1CB8FEE3059696B2036 /* IQKeyboardResignHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E79685EF80A61FB64E0432F6162A1238 /* IQKeyboardResignHandler.swift */; }; - 79DE2217B3EC175E089F343CE6C81BFD /* TestSelectorNameProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26484551773621D3B85EA2980BF9C36E /* TestSelectorNameProvider.swift */; }; + 7977571FB80FA05A18B90134DB1DAD88 /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE69C6D35AA4A945530637E937BF3C2 /* BeginWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 79DE2217B3EC175E089F343CE6C81BFD /* TestSelectorNameProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 142C0A4A62EFBA47B4794D0362C2D63B /* TestSelectorNameProvider.swift */; }; + 7A8C209CC23EB240E289EB5F5276EB09 /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = E5A90DC015710209E7CD98F16456F934 /* FBLPromise+Wrap.m */; }; 7A9D98D0FC3AA6086664643910DA2744 /* SPCCPANativePrivacyManagerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7FC119477F460006B723993FA489467 /* SPCCPANativePrivacyManagerViewController.swift */; }; 7ADBF20309E846BF636F5ABE3B3518E4 /* SPSDK.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64D94984CD5EFE5B89EF3B4A04CE304D /* SPSDK.swift */; }; - 7B3F92A62D124C593C5B226CA3E64008 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 30F24B2C15D59F40D98C16A0F0F912AE /* GULReachabilityChecker.m */; }; - 7B6D521C8CADB209699197EB18BC7D6B /* QuickTestObservation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01A004F916AE721171E411659CD37E18 /* QuickTestObservation.swift */; }; - 7BE767F73E5535731A05F40242B88746 /* AsyncAllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FFDDD271BD34C9D86E1125AE8EADE30 /* AsyncAllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 7BEA3E5604FEAC7F29FD4F290B3E30A0 /* BodyDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43EAE0D413F9625D75E608495B1CD93E /* BodyDetailViewController.swift */; }; + 7B51C4BDD68D0F21362EB82181E4F677 /* CwlCatchExceptionSupport-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A6656A9D08DB2DAFE2F1319CCCECF1C /* CwlCatchExceptionSupport-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7B6D521C8CADB209699197EB18BC7D6B /* QuickTestObservation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 619C06FAEA3D53A2B1550217D5321839 /* QuickTestObservation.swift */; }; + 7BE767F73E5535731A05F40242B88746 /* AsyncAllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = B224AA618A2BB3AE9F445349E349B6C4 /* AsyncAllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 7BEA3E5604FEAC7F29FD4F290B3E30A0 /* BodyDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFB5D523231D320697B390EB06021CD7 /* BodyDetailViewController.swift */; }; 7C04C250FC247CFA1C98A6F30C47F1FA /* SPUserDataCoreToNativeAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFC7850E9B7310BAB913C6048A714A7D /* SPUserDataCoreToNativeAdapter.swift */; }; - 7C0FD2392C294920707F2964049C1152 /* PollAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EC6888F5775C185C1CDDABBBDBBA30D /* PollAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 7C53650E45FFC5893B26340624FE3998 /* MatchError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BFD36A5C928AC017F56C1D85904E4BA /* MatchError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 7C575A96C6D5B3C12254601A9CB6CC21 /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 627553C3D560EA9D715BD1548B0CF3D7 /* ExampleMetadata.swift */; }; - 7D4A73D72E8D7B2BDCF552EA967344CA /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C925C17E276718B3B82E1F218B59371 /* AssertionRecorder.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 7D79E4E25E2D93C44FDE85B2E64DBED1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 7DEA49FF918EF9A70822082BDAF2AF33 /* CurrentSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1B783765AFDBBC9FF7903D64E5A39B0 /* CurrentSpec.swift */; }; - 7E40A8DC22BF42BE8A7D1601EBB1473F /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = EF9D8ACBD90B202ED7671AED491D5F28 /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7ECB33DE7F4F4C3FB20671F5D7AE957A /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 06CDCF1DEF066100C9A8DA515BF0F69F /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7C0594D712174FFFEB409008F8291ADD /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E3DFC70AEFDD34F748C23C321943C6A /* FBLPromise+Retry.m */; }; + 7C0FD2392C294920707F2964049C1152 /* PollAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 535474DC1B52AA0BE310C17803121EC2 /* PollAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 7C53650E45FFC5893B26340624FE3998 /* MatchError.swift in Sources */ = {isa = PBXBuildFile; fileRef = E49E6D6DF3D5881F79486368E84FCB60 /* MatchError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 7C56529FAC82543F3EFDE7E8F4825967 /* FIRHeartbeatLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ABE4BAABF9AD9A9D526D3EA113E6ABB /* FIRHeartbeatLogger.m */; }; + 7C575A96C6D5B3C12254601A9CB6CC21 /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = C65C2ED9004D328F635411B8F061B410 /* ExampleMetadata.swift */; }; + 7D4A73D72E8D7B2BDCF552EA967344CA /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B108F5A67F202BB0C878709D7FAEDF7 /* AssertionRecorder.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 7D4A9626EA53ACEADB232039E6555EC6 /* SPGDPRPartnersViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4261DEFFFD9A94613A8785C9274D9CFB /* SPGDPRPartnersViewController.xib */; }; + 7D733EF797F0E0423986B4F4449CFBB2 /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 479FD5D9017743383ADC818A4A1F6B9A /* FIRComponent.m */; }; + 7DEA49FF918EF9A70822082BDAF2AF33 /* CurrentSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 463C661070B6082D24D57F8E9811D312 /* CurrentSpec.swift */; }; + 7EB15BB83AC6F13C347B5E4EC1FDCE23 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = CE47FFAFB9C6F6775EDA79A36AC2D3B6 /* PrivacyInfo.xcprivacy */; }; 7EF4C8B7230594D639F76CA67D0A2C93 /* SPCCPAManagePreferenceViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = D407B14424BEC0F39C5A5519E9569AAB /* SPCCPAManagePreferenceViewController.xib */; }; - 7F60AC23122F708035574FF801073698 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 369624BF24186412CC06088709AEE3CF /* GoogleUtilities-dummy.m */; }; - 7F67DF9E85AF90BC113B999543A1E3EF /* AsyncTimerSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 475D9F18CAAD368552304C5852F05426 /* AsyncTimerSequence.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 804F74BE6D57E34B1655405D20EEFA1D /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58C9FAAE4EC65C106EE35B0F9CB1D07F /* BeLessThanOrEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 8096E5FBF3ED5E75A63F7C63773023B0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 8097D3814DD761805D17C1D26F355540 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0938054FF37292F241D2F03657DCA974 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m */; }; + 7F1D84645EF6596ABE093C22BDB6640C /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F0355A2C3AE0635078DFFDEBF53FE29 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; + 7F67DF9E85AF90BC113B999543A1E3EF /* AsyncTimerSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72BDC80971614F239817E891B1BC5F50 /* AsyncTimerSequence.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 8024B17AF03D3608EB65538CE278D987 /* FirebaseInstallations-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A7DF8BB4329BC3D758A251886B6B41C7 /* FirebaseInstallations-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 804F74BE6D57E34B1655405D20EEFA1D /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7491C41A4C653109BFD69AA99EA36211 /* BeLessThanOrEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 8097D3814DD761805D17C1D26F355540 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FAD532F54DED27FD9BD341DB8CA8F1A3 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m */; }; 80AEFD5BAB5659618A5D918DE49272EF /* SPGCMData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00BA232A188CE8CB8BE0617C8DD20B4C /* SPGCMData.swift */; }; - 80B82781B81C338EC01EB2715CDAD602 /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = A26BBC7E4321F39E52EB7D529A6C5E94 /* DSL.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 80C47BB4735447FF3A5BD28D85A79FB7 /* IQKeyboardToolbarManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = C936250F69BC4E03BF6EFDD20C6E0449 /* IQKeyboardToolbarManager+Debug.swift */; }; + 80B82781B81C338EC01EB2715CDAD602 /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B11DD25C102F8D3F852D9C18A2A9A84 /* DSL.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 80C6EB50762974A82A84DD03629AA148 /* Bundle+Framework.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1049229D7F62564EA52B9AC96A0C3031 /* Bundle+Framework.swift */; }; + 80F2C97BA36E29120DE6C720F17FAB1C /* SPPMHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = E809C61DAFA64E047AFD6934B3D368B1 /* SPPMHeader.xib */; }; 8195628AC0D48405ABFDABF6197D4957 /* SPError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F85113A0AACDC00A440D14420910AE6 /* SPError.swift */; }; - 8197C81A6E3651313B7688D3C30CDDCE /* SPJSReceiver.js in Resources */ = {isa = PBXBuildFile; fileRef = D58978C5A6A1FD143B441530BC082B6F /* SPJSReceiver.js */; }; - 81C52C82CF4217406DE6A1E7F4F09307 /* PostNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46DECD16C4B5D1902DD9C67D4E8B0D99 /* PostNotification.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 827D4AC084DA2FE3179B4DFB1258B388 /* ContainElementSatisfying.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C6E0A6079652131BBD0DBAEEAC0EFAA /* ContainElementSatisfying.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 8297AD82EB8109C3EF5FF70BEEA55088 /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D861833DDD7FD6648C4077FAB6A45AD /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 82BB43F626D42C809F3CF9E826452354 /* JSONCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42309A7D3A62F66FC79D91D12F041257 /* JSONCell.swift */; }; - 82CADEA8EA1BDE0CD2922067E51E9A70 /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 97C08F366011ABF5B61B5D428C2A32B0 /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 83000B2F87DA911236FFA2F745497D79 /* IQKeyboardToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = E96E350596132C3A65B58D48E75232FE /* IQKeyboardToolbar.swift */; }; - 834088734717D2B434F2DDB4867B6C14 /* HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8B93BF6FE9F9C181C11A80BA91A4930 /* HeartbeatsPayload.swift */; }; - 84437A3D524AF26BCF0B0AAF98530EC3 /* NimbleEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA5D8EF50A7F32B84EBC90AF394CB7C8 /* NimbleEnvironment.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 846460D4C51BDAA4A54E1696111C45FC /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEED0B0D8119723149D7E468C5282C0B /* Expression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 846BF5330DD96081D86381224386284F /* DSL+Require.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1D1AC22D8A04C1B881C008DB0F7CC7 /* DSL+Require.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 847D9BDEEAD4A1E126744333E60CB939 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED6272CCA83508A3A34BA111C6A513BB /* Filter.swift */; }; - 84C5FE455DFA83CA32A4EA0C21846C6F /* Wormholy.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BEE253B425B0AFC6BE08AEB7A374D86 /* Wormholy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 859B6F58397D28FB6595F081C6C3EA2A /* IQKeyboardCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 588242DA939C771DAED4F4CAD87ADD5D /* IQKeyboardCore-dummy.m */; }; - 859E01C4C3F14B093EFCA40D225468EF /* ElementsEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B143EBC1966C88F868E06AAC74D1677 /* ElementsEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 81C52C82CF4217406DE6A1E7F4F09307 /* PostNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384CE5EF9A89CCDCCB2A5FA0C944D704 /* PostNotification.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 827D4AC084DA2FE3179B4DFB1258B388 /* ContainElementSatisfying.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33B5CA37AA2F3603DDA4A2F7F1A2C41C /* ContainElementSatisfying.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 82BB43F626D42C809F3CF9E826452354 /* JSONCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4526DBFFDE56165E758EA42C2C6B6F0A /* JSONCell.swift */; }; + 82CADEA8EA1BDE0CD2922067E51E9A70 /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = B6CCD8475E6BA243257119339E4DBD54 /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 84437A3D524AF26BCF0B0AAF98530EC3 /* NimbleEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97E474B81FF725EB6C01439A223F8BD6 /* NimbleEnvironment.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 846460D4C51BDAA4A54E1696111C45FC /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEBD42371DFCE603D7B22168452A54CD /* Expression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 846BF5330DD96081D86381224386284F /* DSL+Require.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4B69F209B6F1F4495BF114F1541F956 /* DSL+Require.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 847D9BDEEAD4A1E126744333E60CB939 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0F180EBC9B28335EC3432CA43ECDE7E /* Filter.swift */; }; + 84C5FE455DFA83CA32A4EA0C21846C6F /* Wormholy.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BC98D6DF4705676BF8988BE3A0A16EA /* Wormholy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 84EC8D6BABE8DEBD9CA6B0BFE466DB3C /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA2BC033ADDD4D628300EB9B6F1C552 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 859E01C4C3F14B093EFCA40D225468EF /* ElementsEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7936F9CC47E87196EADCC0A32CFE579A /* ElementsEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 8608810E938F441DE59979EA9E6F9CF4 /* ConsentStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B4EE46F7F6CD84E907D32A3E394405B /* ConsentStatus.swift */; }; - 86A6AC20D1D6012F421F9AD2968572D6 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 105CE05DE7CD3B0A74D93C6AD4B5EA00 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */; }; - 86B851708932AE4EF4FAD37947BC387D /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 374E98AEF6664423828FD8464896DD0C /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 876D830BDDCF74F447906E087693E70F /* WHTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EBA88DFA4CE4EECE2EB0957F3BC9427 /* WHTextView.swift */; }; - 87AB4377AAD026B0B29FFBFB8E8BD643 /* AsyncSpec+testMethodSelectors.m in Sources */ = {isa = PBXBuildFile; fileRef = E0A060E5DA1F12147B39CB28131FA6D2 /* AsyncSpec+testMethodSelectors.m */; }; - 881297DFAE7FCD0B7CE35BCB17B9BB04 /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 08F357DF6D86BCE1B955CCA6588B08ED /* FBLPromise+Wrap.m */; }; - 889F8838BA5B9ABE765593C9B4EFC2CC /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EFFD7A3CE87229F9775E2437AB22494 /* FirebaseInstallations-dummy.m */; }; - 8906731121D7E71D8356EB7841785652 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 79B5DEFDD954FFD119B8D63652978BD1 /* FBLPromise+Timeout.m */; }; + 8652978775DC3FC9CC4DB64A709100B8 /* images in Resources */ = {isa = PBXBuildFile; fileRef = 8BC7AF51FA2F0826802F6A36F319AEAE /* images */; }; + 876D830BDDCF74F447906E087693E70F /* WHTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D99DC118D7CD8871838338516B16829C /* WHTextView.swift */; }; + 87AB4377AAD026B0B29FFBFB8E8BD643 /* AsyncSpec+testMethodSelectors.m in Sources */ = {isa = PBXBuildFile; fileRef = 867F4EA1F4EF7ED1FE441EFF3B2BB4AF /* AsyncSpec+testMethodSelectors.m */; }; + 87DCB6EE7D5F4643BB7554EA9E51703F /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EA78D403B3C9A9647550B187B702DBA /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8880EC6042C1DF89486A4C6AE7182C0A /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = DC9A7AD559810014C5DD843DA715769E /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Public, ); }; }; 890F2A7EE9B3FB2379ED6C6CBBF29CC7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 8922FB689B388FFE949B2E5F59D53B2F /* FIRInstallationsBackoffController.m in Sources */ = {isa = PBXBuildFile; fileRef = DB0C46F79E0A712FEA40799F37A7DE9A /* FIRInstallationsBackoffController.m */; }; + 892488D54180DD7543E1F08B9492C591 /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = BB101BC37B0AEBB225E41DC9E97C6A6F /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; 8929213E64105C6B992DF474C3C13FED /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 8931C1D7D40FF9403C542602C138B39E /* FIRFirebaseUserAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = 81333C8E5279606026C2964759B6A72B /* FIRFirebaseUserAgent.m */; }; - 89399D22C8977574686FDA973CC3FF4A /* mach_excServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C82904C58AECE94225849CD3382BF5E /* mach_excServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 893E76A1AE8389810AF5D77B1660A5F3 /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = F63D0B2446F40712AA7AD3941D1BCB53 /* ExampleHooks.swift */; }; - 89C0678D56738ECDF86E588E1454FA9D /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C74BF65952CA34C7E7E7CE246246DDE /* FIRInstallationsErrorUtil.m */; }; - 89CDE11DFBA5DB3C586A8465C956CD0F /* JSONView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9486C1AFBFBCE9306650338B9FBFB1AD /* JSONView-dummy.m */; }; + 892B5DF3DFD4DBCFCA98E08960436D78 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 702C31205742BE62A8C78DBF33C59E18 /* GULAppEnvironmentUtil.m */; }; + 89399D22C8977574686FDA973CC3FF4A /* mach_excServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 71F5620491EDEF774D02716DE77B69FC /* mach_excServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 893E76A1AE8389810AF5D77B1660A5F3 /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06219E171DAD51821C073703A23B86D4 /* ExampleHooks.swift */; }; + 89CDE11DFBA5DB3C586A8465C956CD0F /* JSONView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CF5D725909ED7B31AFBF64914391A556 /* JSONView-dummy.m */; }; 89EF73204A64835221F4B21B4535F663 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 886B70550F3C22CC20F9B77783E267E6 /* Foundation.framework */; }; - 8A481A74BCADC048A3F809F45FA77791 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A3F91679C52A3A821136E6505DD539 /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8A481A74BCADC048A3F809F45FA77791 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FE0614C9432CD7B4E9AC97E73182D27 /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8A5E2DDCB74AC32426651D9BBA5CC31E /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = A5D8FD108C40B3D6DC2391B22EBE35C3 /* FIRVersion.m */; }; 8B6C19D45B1A98FC534B68A5480F4AF9 /* ErrorMetricsRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E61BABB7274D17637E09D5A58A03EFB /* ErrorMetricsRequest.swift */; }; - 8BA002887FDB1808AA352DCF5959267E /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = AD32F2285581C5240F786F49CA8C33E4 /* GULUserDefaults.m */; }; - 8C16C6296EBD70821735825CE53CC264 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C60DC2B63ACF15C0A2D4E186A8D9450 /* PromisesObjC-dummy.m */; }; - 8C1EB97D4A8944524ED5AC5D3F01D0D5 /* SPGDPRVendorDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DFD25270998D2DDE6B8FC4CE1F1E2368 /* SPGDPRVendorDetailsViewController.xib */; }; - 8CE12BB12518908B570DFE4921C01603 /* RequestTitleSectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D7A3F73EF1C63F9610263E2A3C4EBA /* RequestTitleSectionView.swift */; }; - 8D1D77250AC74F5C88B1481C0FC02813 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 96BEBF5B770103D49A6779BB3F23B618 /* PrivacyInfo.xcprivacy */; }; - 8D3AED7AD2C1FE2CB9DC4CF97989CC1D /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = D81FFB2F47CA4FE79FA032EFB71FA53C /* GULSwizzler.m */; }; + 8B9C0C8756BEC636A86D43716B3367A7 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 12BFC6DE2EEB5BBBF11443BBBE947EC8 /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8CE12BB12518908B570DFE4921C01603 /* RequestTitleSectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFB58244D1F8C89ABA1C0612D57AAE64 /* RequestTitleSectionView.swift */; }; + 8D6935E82CBE65E2D453723473491595 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7222A2484A3654D879E80317B612EEC6 /* pb.h */; settings = {ATTRIBUTES = (Public, ); }; }; 8D86A22050F42CA10B647F2DB3B8FAA5 /* SPNativeUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 663B58787E8E424813FCC0E36111F619 /* SPNativeUI.swift */; }; 8DA33568F24969949661DA3449BF97F4 /* SPPrivacyManagerTab.swift in Sources */ = {isa = PBXBuildFile; fileRef = A602E08A711C2221EF6229727384A7CF /* SPPrivacyManagerTab.swift */; }; + 8DB32115471F7A1C6C4771CBCEA387DE /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 630A03DD6C387BDB69F68F8DE133CF6C /* FBLPromise+Recover.m */; }; 8E19FE8BB72AB8610CCD04B529532803 /* SPCCPAVendorDetailsViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = DC7D803B015186A369CD4EEDDEA702D5 /* SPCCPAVendorDetailsViewController.xib */; }; - 8E488F785EEA12B53987EC7C15DAB186 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = D1F15C0CB1373E0CDEC3585B63805043 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 8E4DC5BD2B4BB86B7CA6FD70F6AE2CD8 /* NMBStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = 050F9B9E655D48CD28778AA2297DA7BB /* NMBStringify.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 8E5E43286B05CBC5366AD6130DB3F3B6 /* DSL+AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E7F1F0F821C28473F4A86C41B25AB7 /* DSL+AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 8E4DC5BD2B4BB86B7CA6FD70F6AE2CD8 /* NMBStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = 90A8D58C370061FBE079C887EDBA0F71 /* NMBStringify.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 8E5E43286B05CBC5366AD6130DB3F3B6 /* DSL+AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = C82A5DBE8CACD9017CE1276B35A9596F /* DSL+AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 8E6AFA01D007651B14641DF08ABB45BA /* SPNativeMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 946D9B91981FF3562F0B248C01EF193C /* SPNativeMessage.swift */; }; - 8EFCD85B3221620E636ED6D24D5C39F9 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 8B53BBE2A0D25B5C8D58832F4D0ACE1F /* PrivacyInfo.xcprivacy */; }; - 8F2BE2405B3CEC590A4210535571CE16 /* NSURLSessionConfiguration+Wormholy.h in Headers */ = {isa = PBXBuildFile; fileRef = 236DE9F22C6527027547CC5C4DD8596D /* NSURLSessionConfiguration+Wormholy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8F4874B5FAB85EA9FAA7CE1C916F2E12 /* IQKeyboardToolbarManager+Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = BED36662D4F72A2E1B9DA8B9823EA686 /* IQKeyboardToolbarManager+Deprecated.swift */; }; - 8F8267A271EDA41808A73D90CF0F44AE /* Postman.swift in Sources */ = {isa = PBXBuildFile; fileRef = 611A4150162221DA6ED1C214A3384D0B /* Postman.swift */; }; - 8FA56A61526ECBCBB3DA5B46F7D957E7 /* RingBuffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 135F15712F2E26302AF7A1B3321C1933 /* RingBuffer.swift */; }; - 9002AF57A91A2FF26C5DE7E2A0604550 /* Pods-Tests-SPGDPRExampleAppUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 759D3EA383B901D142D2FC3A8CB640DB /* Pods-Tests-SPGDPRExampleAppUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 903A10BDE9684F07578F7E107DBDFD92 /* Quick-tvOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A109023FCA68FDE015141DD67DC29755 /* Quick-tvOS-dummy.m */; }; - 903D9DFC1F4BD71907599D69F1452209 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC3007A68D81AA5A7DD2C0D79C5DA30 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9085F53299A9FA89BABB78FFF4CD2942 /* AsyncBehavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FF007DE16FC76B92D2B471ADE891BED /* AsyncBehavior.swift */; }; - 9102E9871401005BC3F6C310D5A080F0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 914421E8A8B0CB5D7F60E944EBBF3934 /* CurrentSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1B783765AFDBBC9FF7903D64E5A39B0 /* CurrentSpec.swift */; }; - 91549396B013707E28228B371738EDCB /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 48083DE72EF8FFB2C009AEF98D922690 /* PrivacyInfo.xcprivacy */; }; - 91A9CA7AF46D6CE2880DCA610D02FBD2 /* Requirement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 288EEEA8AEE2176ED91869E38426DC17 /* Requirement.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 8F2BE2405B3CEC590A4210535571CE16 /* NSURLSessionConfiguration+Wormholy.h in Headers */ = {isa = PBXBuildFile; fileRef = D71CFB19F614F66C807739A4ACAC4B87 /* NSURLSessionConfiguration+Wormholy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8F8267A271EDA41808A73D90CF0F44AE /* Postman.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6257BFEAB1C9D0C2CCE7BB18FD92A809 /* Postman.swift */; }; + 9002AF57A91A2FF26C5DE7E2A0604550 /* Pods-Tests-SPGDPRExampleAppUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EE1E3EC8B1B1A3966495448B237ABC7C /* Pods-Tests-SPGDPRExampleAppUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 903A10BDE9684F07578F7E107DBDFD92 /* Quick-tvOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D83242959F1092E99F2EA14C32C81CAF /* Quick-tvOS-dummy.m */; }; + 9085F53299A9FA89BABB78FFF4CD2942 /* AsyncBehavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 892A50298130B8D30A525A58BEC34A2B /* AsyncBehavior.swift */; }; + 9088AFFCA21544421119DD9D25EB4B67 /* FIRTimestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = 503F85CEBC7BA6882CC2DB5C37743B6C /* FIRTimestamp.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 90A1CA8C19F96F2A4FD591739F0B0EAF /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = D917722A29AD87DD5BD068621FBE6438 /* GULReachabilityChecker.m */; }; + 9125B3F002B97AE7C1008065C40464E6 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 18C6007DB93E43DEB892827FF8ED2389 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 914421E8A8B0CB5D7F60E944EBBF3934 /* CurrentSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 463C661070B6082D24D57F8E9811D312 /* CurrentSpec.swift */; }; + 91692D805FB0542CB15B019139657591 /* SPGDPRVendorDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DFD25270998D2DDE6B8FC4CE1F1E2368 /* SPGDPRVendorDetailsViewController.xib */; }; + 9197F5C962876E5D678A67B0E6D1DE52 /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = 7911E69EF4CECB5DAF09A91C4530D33C /* FIRInstallationsAPIService.m */; }; + 91A9CA7AF46D6CE2880DCA610D02FBD2 /* Requirement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12D0FE7D15411CE61E5B2CDFF6BC6BE7 /* Requirement.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 91BD46E56E9D77CDEC90AAB2878518FC /* SPUserData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B1C4DA30BEAE3606FF4DCEFDA3729DD /* SPUserData.swift */; }; - 921906896418BD5370447A3078F2736E /* RequestModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EB98EC760A9900E08B973CADE03FE11 /* RequestModel.swift */; }; - 921D6F2E0F58E42658BEB12886882E95 /* Matcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A27B524BCCE68381BE0D1E3D5FEA7A6 /* Matcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 9287C158B322063134F05EEC4776293D /* Quick-tvOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 969FE37988516D4F7FCD8175873C3FD7 /* Quick-tvOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 92D4D54B1A847D46595C252A928178D9 /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 784E78149BB92433D5D2BB064AEB14AF /* FBLPromise+Delay.m */; }; - 92D7A4883DE80877BB983AC7094AD80E /* SatisfyAllOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = E28183BA96EE0DB449E61EDB2A843AFE /* SatisfyAllOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 92FB58C2D2B11E185216C5D8DEE7065C /* CwlMachBadInstructionHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BB96A1C01235D2DB104ABB1DC2A63E21 /* CwlMachBadInstructionHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9301B49861F217CD337483E5AE1F69C7 /* IQKeyboardToolbarManager+Action.swift in Sources */ = {isa = PBXBuildFile; fileRef = D91F547B9A243B421B112EBB9E56482A /* IQKeyboardToolbarManager+Action.swift */; }; + 921906896418BD5370447A3078F2736E /* RequestModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82D50490D82F2D60AEB51580141F888C /* RequestModel.swift */; }; + 921D6F2E0F58E42658BEB12886882E95 /* Matcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = CECD5CEF7A06ACD8E031ED8E025DCE01 /* Matcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 9287C158B322063134F05EEC4776293D /* Quick-tvOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DEBF8915560F7B496A8793AE2D5C3EED /* Quick-tvOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 929B7053AB730DA578AB8F2EE0C26196 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 92D7A4883DE80877BB983AC7094AD80E /* SatisfyAllOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5DE8078DD6AB98EE633233990050414 /* SatisfyAllOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 92FB58C2D2B11E185216C5D8DEE7065C /* CwlMachBadInstructionHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 16C677CD1015D10A96B8FA6AD1AB6416 /* CwlMachBadInstructionHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; 9319D365F13BBB7D38102A9E6D67D7B4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 886B70550F3C22CC20F9B77783E267E6 /* Foundation.framework */; }; - 931E81541F3170FAD7CF3FA2864EB9DD /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3125E0AEF4C07B3C967DB0A1D09ED6E0 /* FBLPromise+Validate.m */; }; - 9335E0D67CBEA73EB1A98BEFD3CD5B25 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = FCAF9049188EC86589F780B62B42DDE9 /* PrivacyInfo.xcprivacy */; }; - 93605FCACEF04BF42F32654E0388E99B /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = AB8A4A9B4157CDAA3D994D9F0DAA5886 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 93605FCACEF04BF42F32654E0388E99B /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E23243F3244D77153C241B89D588965 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; 937EB7F077EC7D4EF382A23CE99676BE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 886B70550F3C22CC20F9B77783E267E6 /* Foundation.framework */; }; + 939859020BDE8E2F63632051299225D3 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = ED66B0131C8A4D93560B40D085E3989A /* FBLPromise+Catch.m */; }; 93FE3145C2EB0FEEDC4C3C2F39063DA6 /* SPGDPRManagePreferenceViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = C03190257F1960B9B76BE102566E21AD /* SPGDPRManagePreferenceViewController.xib */; }; 941723985A9273897E0E716A848D039B /* Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6EE4EAFFA46B29CEDB96AF54E59AD52 /* Collection.swift */; }; 942523E01A104C54D90A23C8F534A4CC /* SPCampaigns.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9811C119055ADA50A0FB38EFA8F3237 /* SPCampaigns.swift */; }; - 9439CAEA2CC5B25DCC288E56E617A846 /* CwlCatchExceptionSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE99FBCE8B8C83A93A6C33D9D5723514 /* CwlCatchExceptionSupport-dummy.m */; }; - 9467C383135B4FF22E81454BB204B34E /* ToSucceed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81DFF5B09AFDDA41E61A9BC5AEDDC6FD /* ToSucceed.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 946BEC4ABBA847611C4204CC76C9DBE1 /* QuickObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 39521561A3A1D050295F964A5391C69E /* QuickObjCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9491840FF9CFC972963D2C8D4686D043 /* HooksPhase.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6CFFBFD33C80AE18D03D79100AF8558 /* HooksPhase.swift */; }; - 949275F4FF38B01BE04B831EC7EF9AFC /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = A9E567C3801F77C6845784BC161E6AF0 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 954A154D34665966021DDAF41670BD2C /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = E0043707CF07D44F9220C7CF087E2D95 /* FIRAnalyticsConfiguration.m */; }; - 954C0F36E97047A577FF1357B9C0FBBE /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = E2129BA7BCD8B648B9FB349C176DA621 /* FBLPromise+Any.m */; }; - 95841BF2D76DDFBBD1CF3853C878E2F2 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B73E46A10649788206CF69187F13906 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9467C383135B4FF22E81454BB204B34E /* ToSucceed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3432DADF2BA3478255509D961040CCA2 /* ToSucceed.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 946BEC4ABBA847611C4204CC76C9DBE1 /* QuickObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 05DDD82571D76F1B6040FDB80E243218 /* QuickObjCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9491840FF9CFC972963D2C8D4686D043 /* HooksPhase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24C57F1C49323CAC06C03B45CE4BF7C2 /* HooksPhase.swift */; }; 95DD82402D3BC85FADC048E222F53998 /* SPPrivacyPolicyViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = 912335C07E49ADE52F19D561EF6DA3CA /* SPPrivacyPolicyViewController.xib */; }; 95E3A7CEC7A3D008F26846A6BD7420AF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - 964376244EA85C3FDA8B336926AE5718 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = D0E78647084792E4319064B21AE398EC /* PrivacyInfo.xcprivacy */; }; - 9678A12EE467BF1483411C70EB1F0967 /* WHTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A031FC6E352E7051CA493D7D23896D3 /* WHTableView.swift */; }; - 9680B3A0639DF7526CEA82E68C3B2459 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E2EAA97E201B165642B004876504B27A /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9678A12EE467BF1483411C70EB1F0967 /* WHTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB6A301A140BD2B057989168E75356A /* WHTableView.swift */; }; 968E62C694051EB0EEE5774D236973B2 /* SPCCPAPartnersViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = F69850BE0942AAF7569973E18927CB8F /* SPCCPAPartnersViewController.xib */; }; - 96B2795D21F95FE1D8C6E1CF242005F8 /* NimbleTimeInterval.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54D129B0FF00E96ADA5E985D90AEB12D /* NimbleTimeInterval.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 96C3189109605C91F70965FC2778A685 /* QuickSelectedTestSuiteBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = A65D69CB88594A9705501AF0677C3716 /* QuickSelectedTestSuiteBuilder.swift */; }; + 96B2795D21F95FE1D8C6E1CF242005F8 /* NimbleTimeInterval.swift in Sources */ = {isa = PBXBuildFile; fileRef = F29AD012F64DCE477800BA6013E08ABF /* NimbleTimeInterval.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 96C3189109605C91F70965FC2778A685 /* QuickSelectedTestSuiteBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A22DFECEFEB682092C9E0A7176FD7E1 /* QuickSelectedTestSuiteBuilder.swift */; }; 96E869BE6BE558E42A7B1F0D8CB55B66 /* ConsentViewController-iOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CB413D4FC5F9DFD4E06B1F4EC9D9074F /* ConsentViewController-iOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 97CB01642A641B63B444D409068BC9DC /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE4C5BB8F7EA63BD8D6D7AA25EF08757 /* BeGreaterThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 96F082E25521025E460A8465409D47C5 /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FEB5F29456FADD2DA38C8BCCDC2821E /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 97B66C9C2E2151E73B4C989975F0D7B6 /* FIRCurrentDateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = BAFB6978A553EB71DE67714445835E93 /* FIRCurrentDateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97C970D0A5BF756367E9756A13595E4C /* Barcode.png in Resources */ = {isa = PBXBuildFile; fileRef = 87295588035B548CD735B7461612EFE9 /* Barcode.png */; }; + 97CB01642A641B63B444D409068BC9DC /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = E562D071DF5C85A7D9A62DF9869F2077 /* BeGreaterThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 983B1A74DF6DE4FED4683597F11DE51C /* SPPrivacyPolicyViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C384BAF69B1BDA613D1E4F78577AC62F /* SPPrivacyPolicyViewController.swift */; }; - 989B7B0D1925ED300862083FFD08535A /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 080544185156D8EFB4F8B2735F21B295 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98C626862369971C3742D6F76B96954E /* SPLocalStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 544D049FDBD11D7D2116C49CE621A93D /* SPLocalStorage.swift */; }; - 98D4DF8702052534924A9B635F58C249 /* IQKeyboardReturnManager+UITextViewDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5DBC71098660DE5B08E3F9DDD5A97F8 /* IQKeyboardReturnManager+UITextViewDelegate.swift */; }; - 98E99E26C736E4B66F6F82B722AEDF81 /* Pods-Tests-ObjC-ExampleAppUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC6FA136BB9434E8C85E93ED49F4B26A /* Pods-Tests-ObjC-ExampleAppUITests-dummy.m */; }; - 994A121F189424AC74C1E52D0B20635C /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = E78C616233D5D9825EB073523F0DC62C /* FIRComponentContainer.m */; }; - 994AEB8567C56940702DD2296E6C9B3E /* SPJSReceiver.spec.js in Resources */ = {isa = PBXBuildFile; fileRef = 27958D4E3AA3B961EBD163BD2E74D50E /* SPJSReceiver.spec.js */; }; - 999A472BA204C0478C77A5109186F1CD /* WHView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4751DD6B17333E933F4633D6E698BA65 /* WHView.swift */; }; - 99F8376E84A9D5A823E0168AD8C7F6A7 /* Heartbeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6048C9C73410A27C6B4FEACDFD819DF9 /* Heartbeat.swift */; }; - 9A1BD08BE462A6B325DCF2E788B6BF2A /* AsyncExample.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDE29F7E2C2B8181BDC86D8BC3C43A2F /* AsyncExample.swift */; }; - 9A4018F94501CA6ED2440D7D4E0540B7 /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = FD17AB599D447FDD7701ECCA77D1AD28 /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9A5D2BC910BC2277C876226EB38669F6 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = 833828B6DA0C15775334C4481526CC58 /* Match.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 9A89FFCFC2A17839FC64E3CA908FF6F8 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F9BD032C6101EBB566A7C72079A9F6E /* FIRInstallationsIIDStore.m */; }; - 9B644107FB29AE8681579EE6441457F7 /* Negation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77C1460EBE5ED2EA5DA2743DF370336D /* Negation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 9BC7FF7C000E8F447AF0074D51F6CAB4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + 98E99E26C736E4B66F6F82B722AEDF81 /* Pods-Tests-ObjC-ExampleAppUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B1D2F924103347BE5C2A45C1BA29C54 /* Pods-Tests-ObjC-ExampleAppUITests-dummy.m */; }; + 98F11D0C70500708D1248B9A3B318444 /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = BCD0C75321A1C0BF2B9B5D8D662A5D14 /* GULKeychainUtils.m */; }; + 999A472BA204C0478C77A5109186F1CD /* WHView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D41EAEA49CE14A55CC390B800588B31 /* WHView.swift */; }; + 9A1BD08BE462A6B325DCF2E788B6BF2A /* AsyncExample.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C348D8B81A15C7A514C7AAA3648FCEB /* AsyncExample.swift */; }; + 9A31375F7B1191B1B59895A14395E6F4 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = D58925843ACD2530DB031D3F4A88210E /* pb_decode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9A4018F94501CA6ED2440D7D4E0540B7 /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = EA912589A26C4C8224E4E47248628B5E /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9A5D2BC910BC2277C876226EB38669F6 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0227394C89EF232D13803AC414CC8E0D /* Match.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 9ADA67907E3658BC61088F5C36A1F3CC /* nanopb-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 91D62C2979902E1B6BD2624C970711BE /* nanopb-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9B644107FB29AE8681579EE6441457F7 /* Negation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4635A175F55A56F658216A24DDBD810 /* Negation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; 9BD90745A0C5DE1581E973994912C4A6 /* SPPreferencesConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41AF835CF9F5E221DEABDA6B8F4653CF /* SPPreferencesConsent.swift */; }; - 9CE3FF0FC82AAD2CC8663965AB73A13C /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26934FCB04DA419CDDC98A0054B0722A /* AdapterProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 9CF063AD4B3A38BB68F24F8258FA4943 /* CwlPreconditionTesting-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3863FD1C556D54C3E982C50EA82E084 /* CwlPreconditionTesting-dummy.m */; }; - 9D34AA9A8855CC4FBF8C6B9369621637 /* FIRInstallationsBackoffController.m in Sources */ = {isa = PBXBuildFile; fileRef = 62965629485AC3CF2814EC22328196BD /* FIRInstallationsBackoffController.m */; }; - 9D78C19B64B4DD8E28B4CB4DCE864664 /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE7F6B22DDE3192E0442A82C559D5836 /* BeCloseTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - 9DB4007FAB30DBFB16D2B7ABBF4AF85E /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 99E2520C737AC3324E6D8537F4FE3F34 /* FBLPromise+Await.m */; }; - 9DBA28A24BAE417C61EDF7459B1417A6 /* AsyncExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5B09BA535863D4B01B71BFC5473DBC4 /* AsyncExampleGroup.swift */; }; + 9C4DECF5554B46BBE8E68A067E5B6EA5 /* SPCCPAVendorDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DC7D803B015186A369CD4EEDDEA702D5 /* SPCCPAVendorDetailsViewController.xib */; }; + 9CC7C7D473E7C7F42AD8C94E11C797AE /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 67C01F82F839EB6112EF59F7628F0A26 /* FirebaseCore-dummy.m */; }; + 9CE3FF0FC82AAD2CC8663965AB73A13C /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4E227A05C94C5CC3DBB8DC852F7CBC0 /* AdapterProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 9CF063AD4B3A38BB68F24F8258FA4943 /* CwlPreconditionTesting-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7780FE6908644DB0276CB8EF63E29492 /* CwlPreconditionTesting-dummy.m */; }; + 9D78C19B64B4DD8E28B4CB4DCE864664 /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81D479CEF364200B9222C8322B37D601 /* BeCloseTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + 9DB77CBB03614AB0CD5373F10CBE942B /* _ObjC_HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18325BDC645A79CAF2819AB2F78A76BE /* _ObjC_HeartbeatsPayload.swift */; }; + 9DBA28A24BAE417C61EDF7459B1417A6 /* AsyncExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65E78853D1539A5677D5A62C8E79763E /* AsyncExampleGroup.swift */; }; 9DF30473AF8609DB97F8FEA4951F096E /* SPStringifiedJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = E98FFA7D2B12F8B56DF12ED0872E6ED9 /* SPStringifiedJSON.swift */; }; - 9E0315A819CCE40715AA7EA0D3FDC908 /* SPPrivacyPolicyViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 912335C07E49ADE52F19D561EF6DA3CA /* SPPrivacyPolicyViewController.xib */; }; - 9E1EF13402D8ED84835CC887FE7D4136 /* Barcode.png in Resources */ = {isa = PBXBuildFile; fileRef = 87295588035B548CD735B7461612EFE9 /* Barcode.png */; }; - 9E2726BEEA22F505119A3E5FA6C10692 /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = BF930FF66C57169A442D8B8AE1758951 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E72E99F084FA5FA24B04C32573A9875 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A3F91679C52A3A821136E6505DD539 /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9EE86AD5249D81DE2BC7A1E000D73FEF /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC87B2DDE2EA8F037A768043509C7DC /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9F9E0690FED432F2EF91B9BFBA99D3E6 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = AA4F27E44DABBCD644F5EAFC786B157F /* FIRConfiguration.m */; }; + 9E72E99F084FA5FA24B04C32573A9875 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FE0614C9432CD7B4E9AC97E73182D27 /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9E9E28281F9286A238EF8084C3123C7E /* GoogleUtilities-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9265DF8855FE08DA921EBCBD5AD606A4 /* GoogleUtilities-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9EB0572E374F1B5D57E6F9A0D8D0F310 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 7361308DA9F98C418C9DDDDEEFCCEF58 /* PrivacyInfo.xcprivacy */; }; 9F9F036B4C67E60C81006D4A790DCF5B /* SPNativeUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 663B58787E8E424813FCC0E36111F619 /* SPNativeUI.swift */; }; 9FA49574E7A90DA2736C15A086DF330E /* SPMessageLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77DA1D8C3D825C0C7E8EF07206E936D /* SPMessageLanguage.swift */; }; A045AA3F1A0457A98F5799EAD491DC32 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - A072F7B9DAF1246FD9627429AB822483 /* jest.config.json in Resources */ = {isa = PBXBuildFile; fileRef = F56C090F1C9366C37AB253AAB9FE1A05 /* jest.config.json */; }; - A0B4330F6FFCE05D877083804BBA3476 /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = E750A7087DBD3C4BACD13CFF8ED23007 /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0CCB72FBEEA5E29FBF8FB3DF40108A1 /* Nimble-iOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CF88DAEFC6154DED003F3A02E3B6AF3 /* Nimble-iOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A15E1E556BE4AA945D14393E34DDE65E /* SatisfyAllOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = E28183BA96EE0DB449E61EDB2A843AFE /* SatisfyAllOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + A0CCB72FBEEA5E29FBF8FB3DF40108A1 /* Nimble-iOS-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D5DCEDDB5C007CA5312467CF1B51625 /* Nimble-iOS-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A15E1E556BE4AA945D14393E34DDE65E /* SatisfyAllOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5DE8078DD6AB98EE633233990050414 /* SatisfyAllOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; A191C1ACAADF2AD11EEA41435B294895 /* LongButtonViewCell.xib in Sources */ = {isa = PBXBuildFile; fileRef = 74CF2D6A2D0D5DB2BD259BCCF764887B /* LongButtonViewCell.xib */; }; - A1B673B5C9D9DE92ED09661798A8358D /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14EE15EE2D21740716E29AC2EE0A6076 /* Closures.swift */; }; - A1FCE868E7E656F6167DE4E238266930 /* Pods-Tests-AuthExampleUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F409AB3D85FB173A94C05F8560AEF6E /* Pods-Tests-AuthExampleUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A1B673B5C9D9DE92ED09661798A8358D /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 960100516CBDC6A1EC54318B4AE3F1EB /* Closures.swift */; }; + A1FCE868E7E656F6167DE4E238266930 /* Pods-Tests-AuthExampleUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C64FE9E56AAF649C693189700CE9DEF6 /* Pods-Tests-AuthExampleUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; A243A27FA864F9472E8446821EEA38AC /* SPPreferencesConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41AF835CF9F5E221DEABDA6B8F4653CF /* SPPreferencesConsent.swift */; }; + A2598892C5F73ADAA823F62A4D20E642 /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A39C86C44AAD0F5C04D1C710474ECE7 /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; A2762DA4D84F76977EAAC3F10562B019 /* SPConsentManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D84D917232543120C0F6F4EEA4E1BA0 /* SPConsentManager.swift */; }; A2AC6D328700CDF14D3F1DA051FFA885 /* SPUSNatConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 033B5B585762808D4A67F6F6E91AFC96 /* SPUSNatConsent.swift */; }; - A2D0BA302D17A169DB389818A47FDF41 /* FileHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39AB7954D02DC29058E83B73A6DD1E61 /* FileHandler.swift */; }; - A31D2C4CBF309F4E56EF9C5B0CE3335A /* IQKeyboardManager+Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E08F59C00ADC343B643B1AE5B682C34 /* IQKeyboardManager+Deprecated.swift */; }; - A32449989D184A085F1CA3CB36E11C59 /* QuickSpecBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 80A9DB66AE8726E0CB5FC058EDC77670 /* QuickSpecBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A35A840A0AD9830EB5374EC1C477E3EB /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F6021C9C3B57896D77C989E22147F4F /* FBLPromise+All.m */; }; - A484B23CBA7C6BDB27811648BDD79C2B /* RequestResponseExportOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27037CC61C19580FDD56C28682478E85 /* RequestResponseExportOption.swift */; }; - A48EEF468A61108A2FB89B27134C9776 /* Nimble-tvOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F94E40F9C47186B9C90B58C1FDA12EC /* Nimble-tvOS-dummy.m */; }; + A2D0BA302D17A169DB389818A47FDF41 /* FileHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AE3AEE749B01825ACE3F44C1111B1BD /* FileHandler.swift */; }; + A32449989D184A085F1CA3CB36E11C59 /* QuickSpecBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D8EA074341EE61DC353AE3358913322 /* QuickSpecBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A346A108A8796C0AE1B657FC0012477F /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC531B7441C332B2FF950C6C46A2709 /* pb_encode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A3FAE6634B0014CB07904F6A3B7AC8F7 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 969040CA3C0768B3AAAB1099AA402018 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4284F427BE6D982E502367BBDC3C8BA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + A484B23CBA7C6BDB27811648BDD79C2B /* RequestResponseExportOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AC7AA50269FD2479DEA2A29C9EA1B21 /* RequestResponseExportOption.swift */; }; + A48EEF468A61108A2FB89B27134C9776 /* Nimble-tvOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 384DAB83724B1BE1C35D238F3DDE4E05 /* Nimble-tvOS-dummy.m */; }; A4C15123EE773F4B61A1318B792E2D28 /* SPCCPACategoryDetailsViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = 95CE5BA6845C27259E5E75FF90D770CF /* SPCCPACategoryDetailsViewController.xib */; }; - A4C568E5E19F86D2B2FA6939F27CC71B /* ErrorUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5A307F97B8D4D230351B1E3803B356C /* ErrorUtility.swift */; }; - A4EE4245EAF18CFFD1A68A68E8B64AB4 /* XCTestObservationCenter+Register.m in Sources */ = {isa = PBXBuildFile; fileRef = 1131771154A5D4CFBC4918DB50DAFEB2 /* XCTestObservationCenter+Register.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - A5211CF301C90EA01848A2B70F61B2F0 /* PromisesObjC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = ADC01D3509458F80B420EA447786BB2C /* PromisesObjC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A541EFC06EFBB0863D00B6D6048E7217 /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 754BEF92020F4A1FC09E103BB777106A /* QuickConfiguration.m */; }; - A5E82B417F48470BD0E900BC0D2DBCCA /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 29AE751FC0F120611D3A1462E52CDDCC /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A6394E866691F6EC7DFEEB28FD5399D4 /* Flow.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EA5173EB199F9C06632F1D554BFEA535 /* Flow.storyboard */; }; + A4C568E5E19F86D2B2FA6939F27CC71B /* ErrorUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84F0A664168C0FA18A594E170364CAC6 /* ErrorUtility.swift */; }; + A4EE4245EAF18CFFD1A68A68E8B64AB4 /* XCTestObservationCenter+Register.m in Sources */ = {isa = PBXBuildFile; fileRef = A1F9C1BFA93282D03C9A99C3C8A27564 /* XCTestObservationCenter+Register.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + A541EFC06EFBB0863D00B6D6048E7217 /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 0430733BA910250764FA4BE20EF237D1 /* QuickConfiguration.m */; }; + A5759156F02DA024558A51854183B0FE /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DD92BB626CE1C3605390619AD21F737D /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; A64B5A5A6B604035EB613973B8D40407 /* SPNativeScreenViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE88860572FF0DD26A128831EAF40663 /* SPNativeScreenViewController.swift */; }; - A6B51015077988033872B093C6367E12 /* URL+FileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72C7F44C43C5690DC0B883678B1A6DCB /* URL+FileName.swift */; }; - A726B3DDCB7D7D42D350DE13AFF2C00D /* IQKeyboardManager+Appearance_Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A76BD3D2B474131A34604EF2865963E /* IQKeyboardManager+Appearance_Deprecated.swift */; }; - A72BC21CAF6BE6BC5C215EF6D312DF8B /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 6715E66DF7F9EDC350EE746E15E38141 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A76667278BCFB6C3B5C3A60007E2F6C4 /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18FC2954F1FB2A2E4820D10D9B873A50 /* HaveCount.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - A7B5BA19992F08C53A2A21361EE51254 /* Nimble-iOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 68AD33968E37713F30DBAD66C6AD3933 /* Nimble-iOS-dummy.m */; }; - A7B670CE5E2D39F42BD7291265378CEC /* GULNetworkInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 07F7FDB058328900287FB0E998FBFE99 /* GULNetworkInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A65E1EB8726AC656CE50D7A70A491647 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 41F347D05F599B186CDF18BFC78AFC05 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6B51015077988033872B093C6367E12 /* URL+FileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = C25A919CE660D5F6D792682A4F31D41E /* URL+FileName.swift */; }; + A76667278BCFB6C3B5C3A60007E2F6C4 /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56A5FF710324E88DF01167AA05E0A73B /* HaveCount.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + A7B5BA19992F08C53A2A21361EE51254 /* Nimble-iOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CA07F5CA74B6366B6A8E3530806101D /* Nimble-iOS-dummy.m */; }; A7DE06362502EECAF3D4FF87761D1328 /* Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6EE4EAFFA46B29CEDB96AF54E59AD52 /* Collection.swift */; }; A80888799E2233D03774822DAE45A6EA /* SharedCoreToNativeAdapters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9095E935D84E98CD0E8475F29BAA5986 /* SharedCoreToNativeAdapters.swift */; }; - A8145E045FDAF1B97B809396DB014941 /* IQKeyboardToolbar-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F93C65D23B8F7BDEB501077294DE0F0 /* IQKeyboardToolbar-dummy.m */; }; - A819C7C624CF5B0FFFD23076D269B6C7 /* nanopb-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DEDFF0DA9BDA7F9C27F2062C14B8D371 /* nanopb-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A820D57643F8EAEF04FF06CC521EE8EB /* PostNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46DECD16C4B5D1902DD9C67D4E8B0D99 /* PostNotification.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + A820D57643F8EAEF04FF06CC521EE8EB /* PostNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 384CE5EF9A89CCDCCB2A5FA0C944D704 /* PostNotification.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; A82FB34D6E4ECBA742863B6988A56257 /* SPStringifiedJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = E98FFA7D2B12F8B56DF12ED0872E6ED9 /* SPStringifiedJSON.swift */; }; - A84B2A821CAF78D5A4BC6C1962490331 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 8A82B370762440F79B82E09400A57C80 /* PrivacyInfo.xcprivacy */; }; - A8A15873A0EDC383F2FDB2FA2A1470B8 /* QCKConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C1F4501D14ACE8C725D24BAED9BA31E /* QCKConfiguration.swift */; }; + A8A15873A0EDC383F2FDB2FA2A1470B8 /* QCKConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3BFE607791EA4E77DEB5B25B86F53D6 /* QCKConfiguration.swift */; }; A900CECFC578C45673639FFC9BF76B6B /* SPJson.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFA2E0A79C45CF0AD19A3B7E3CAD26C4 /* SPJson.swift */; }; - A943E8A04328CDD96A1058B9976C5E26 /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE61A8CA9758CA1D4AA14AA0909D6F4A /* Callsite.swift */; }; - A96CFA1E3D24A64F5DDBFE8B93F6A1BA /* IQTextInputViewInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDFB09D332CF36721F7A83B65175E88F /* IQTextInputViewInfo.swift */; }; - A9DC8124B6876F8AEB6AA6C6CAD48F4A /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 698B6323D03AD253DEAE782E65E107E7 /* QuickSpec.m */; }; + A937AC7DC4B661064419006094667748 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DF7B281A35B5856FA4C77079544EB4E8 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A943E8A04328CDD96A1058B9976C5E26 /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A2339FBE3D2799180870D117A85A752 /* Callsite.swift */; }; + A9DC8124B6876F8AEB6AA6C6CAD48F4A /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 32D32B79D6DC04E1E545D20DE4AA6381 /* QuickSpec.m */; }; A9DFAB0AB09E9F8F9787EAC3CCEB2EB6 /* SPIDFAStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC0B7DB098A360C871AEEFC494EF2441 /* SPIDFAStatus.swift */; }; - A9E3707E9F1501AFD96A3D21EEE14ABC /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D48730791EE2DDBFAF504114702BBC1 /* SourceLocation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - AA2057477570DA1F2123029A61C30478 /* RequestModelBeautifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA8B0499887AFBE40464AD6F5DDA6C5F /* RequestModelBeautifier.swift */; }; - AA87E734472B9231E1A7DCD57BF74EC8 /* _ObjC_HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA8395F2E2F83FAF9D50EF21F95C710A /* _ObjC_HeartbeatController.swift */; }; - AA8C2A4E547A25C537748DF19560FFE0 /* Pods-Examples-SourcepointFirebaseDemo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EDCE60703B147513DEAC7E5E96A65154 /* Pods-Examples-SourcepointFirebaseDemo-dummy.m */; }; - AB1030EB0D840A21283E3437C4D76A06 /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEC7E2308BBA2F7476024112C8965575 /* BeAnInstanceOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - AB81A114C098F9DAC7432D78CBDC81C7 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = B51861A159CB213A49F54058AD763015 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AC2DE4E0FD759C9EC0DEEA80B5FF82E7 /* Pods-Tests-AuthExampleUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 27768312B574C1C195B5DA118542D5DA /* Pods-Tests-AuthExampleUITests-dummy.m */; }; - AC4EEAE658A98FFB1BACA56FAEAACBC9 /* Polling+Require.swift in Sources */ = {isa = PBXBuildFile; fileRef = E93B05AB7F2D74755F556BEFA27ABDB6 /* Polling+Require.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - AC55A95830B7A04DA3ECF1611E29B082 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = C407A54E017467BD3403FC613AFB7F1B /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ACC6DD35C72F92A1DC646907D0D99E65 /* IsAppEncrypted.h in Headers */ = {isa = PBXBuildFile; fileRef = 05BA369063AB9F88199C725055C5F112 /* IsAppEncrypted.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACF48F5D98ED3CF4F4C8DBB1CD6E197E /* DSL+Require.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1D1AC22D8A04C1B881C008DB0F7CC7 /* DSL+Require.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + A9E3707E9F1501AFD96A3D21EEE14ABC /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A3533F58C5A343C1793EF683E7124 /* SourceLocation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + A9F7ACC62484BB8C486E56D288FF3FDB /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 843F089C220B0DDFACC5EE067C0C2779 /* GULApplication.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA1A8BB53B27C6DF5CB2A809CCD9008E /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 352B17327E2344FDF3FDBD44F45944D2 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA2057477570DA1F2123029A61C30478 /* RequestModelBeautifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 763F35265F75C8FE0232872A1279CFDC /* RequestModelBeautifier.swift */; }; + AA8C2A4E547A25C537748DF19560FFE0 /* Pods-Examples-SourcepointFirebaseDemo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C5372E3E5742A34B8CB1A8B2D0C6C32 /* Pods-Examples-SourcepointFirebaseDemo-dummy.m */; }; + AB1030EB0D840A21283E3437C4D76A06 /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 662429CB6AC4E96BA6AE5E1183015142 /* BeAnInstanceOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + AB11679D9F4CBDAA6A6824D387DB75BF /* HeartbeatLoggingTestUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB7D5F2CF370AFE78ABDA48E5399A4D7 /* HeartbeatLoggingTestUtils.swift */; }; + AB9189665F8658EC5127390E1F87426E /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 915953000AAE931177BD2AD6A223439B /* FBLPromise+All.m */; }; + AC2DE4E0FD759C9EC0DEEA80B5FF82E7 /* Pods-Tests-AuthExampleUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05AA7123CC04038DD4EF794DF0FF1B0C /* Pods-Tests-AuthExampleUITests-dummy.m */; }; + AC4EEAE658A98FFB1BACA56FAEAACBC9 /* Polling+Require.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0FE600A1374B33A5B6477ADE7BEB50B /* Polling+Require.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + ACCE22218FA0F0D6CC859F40107A7314 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 84A959D14CEA8B891E4C930622E1576B /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACF48F5D98ED3CF4F4C8DBB1CD6E197E /* DSL+Require.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4B69F209B6F1F4495BF114F1541F956 /* DSL+Require.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; AD2B648A78DC5710B819145242E3481D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - AD587800C925221F9C6A4739A0AC9224 /* QCKConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C1F4501D14ACE8C725D24BAED9BA31E /* QCKConfiguration.swift */; }; + AD587800C925221F9C6A4739A0AC9224 /* QCKConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3BFE607791EA4E77DEB5B25B86F53D6 /* QCKConfiguration.swift */; }; AD6EC7962BED1B2C4DA31C7A4170E46D /* CCPAPMConsentSnapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E2C94A9C6126684EC34738AA8F7AB87 /* CCPAPMConsentSnapshot.swift */; }; - ADF87DC8F3B0B357BA1EFCEBF6520DAC /* RequestsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE38E7D54FBC5FA87D165B5A4FA59EC9 /* RequestsViewController.swift */; }; - AE5B5C917E549156352118A6C3B54636 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = D292C84B70317E9D64F83924C0B422A0 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF02029E1F98BC6EB7A15B53D91E8A24 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 76CC76A46ED220FD18DEEF5E13F03F04 /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AF19F168F7B3FFCA150103001169CA99 /* NSURLSessionConfiguration+Wormholy.m in Sources */ = {isa = PBXBuildFile; fileRef = 426F5B92361AD6E50C2720924378BBBD /* NSURLSessionConfiguration+Wormholy.m */; }; - AF588E3FAA2055CC34F0ACA244A41A54 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 20AD96D8D079F854B147064F9599EAC6 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF5AADCBACB9109C6BFD4F0BE616751E /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EDFC6CE0261D0B8565F3190CEE48BC0 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF6111DD8DC71EA750815866A77CBF0D /* AsyncExpression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0874D5D0DB5A4E30D92632B7FA3AB3CE /* AsyncExpression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - AF8F5B49CCD0E5D93520B079D55A4E52 /* IQKeyboardManager+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFAFBCA4CA46B7789F68E77AD06F489E /* IQKeyboardManager+Position.swift */; }; + ADF87DC8F3B0B357BA1EFCEBF6520DAC /* RequestsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7507B788F32FE9B02E6244934902E18 /* RequestsViewController.swift */; }; + AF19F168F7B3FFCA150103001169CA99 /* NSURLSessionConfiguration+Wormholy.m in Sources */ = {isa = PBXBuildFile; fileRef = 869993B3F1B283128A1829968E05F145 /* NSURLSessionConfiguration+Wormholy.m */; }; + AF6111DD8DC71EA750815866A77CBF0D /* AsyncExpression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 758F9DC4BC1BD9FA840D047B2D349CD5 /* AsyncExpression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + AF6BD2AF1F08854B262A17A1A8C55FF2 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 96E5FE8E889EA13EE21821B1544C29CF /* FIRInstallationsStore.m */; }; AFCDEA4ED2D64E8E0092467164E2FC9F /* CampaignConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB66F7B9C00367A78FF52612B556CDAC /* CampaignConsent.swift */; }; - AFE7DAC92ACDEDA7DA3DC9E1A54CB2F4 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 9854D1AA61EDBCC8C7F3C964FA9AC3FD /* FBLPromise.m */; }; B020FE74304D59D91808477AFFF9C61D /* SPURLExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CDDC03D1A80206740DFE90B0356D8FC /* SPURLExtensions.swift */; }; B06A0C142E4FCF8E0F8FB586F7A42B1F /* SPGDPRCategoryDetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AA271D4DC66755169C7CC3499EB4EF8 /* SPGDPRCategoryDetailsViewController.swift */; }; - B097CC2322B6F10D3D7691212853402A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - B0D8AE5D78FCE98F0092D3264EC73422 /* QuickSpecBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 1927DE642808C0399D8EC4D6EEBFFA2C /* QuickSpecBase.m */; }; - B15F355EFC46899A8C16073527E0CBEC /* FirebaseCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 72D4405C2F944B049C66D49781005AD6 /* FirebaseCore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B170898CB7CFDEF30B22FB58C3D6CE75 /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73B841F3C3994F9FB5964CFADC739D15 /* BeEmpty.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - B18BEC8BD699176D5D6CAA4AB0BCE05F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - B1E49099523C649C5570E76A87D4B202 /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = E60E9F9CA7724A87FB2F40B32C5FF349 /* FIRInstallationsAuthTokenResult.m */; }; - B1F3F6C9FD553BF5F32DEE38A2F8C2CD /* Pods-Examples-AuthExample-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3BEA64D4C9043A08F3A930EDD0E944 /* Pods-Examples-AuthExample-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B0D8AE5D78FCE98F0092D3264EC73422 /* QuickSpecBase.m in Sources */ = {isa = PBXBuildFile; fileRef = B3A41EB6CC90A415A6C846DAE29F994A /* QuickSpecBase.m */; }; + B170898CB7CFDEF30B22FB58C3D6CE75 /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9CCD89762C814CB71B70559F70DBD78 /* BeEmpty.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + B1F3F6C9FD553BF5F32DEE38A2F8C2CD /* Pods-Examples-AuthExample-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F50CDEE330B16E77A1C15B13074A67F /* Pods-Examples-AuthExample-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; B21CA5236E29697A0ADCA7745E50D695 /* SPMessageLanguage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77DA1D8C3D825C0C7E8EF07206E936D /* SPMessageLanguage.swift */; }; - B21CD1C471AFD6D9383CEF4B5322E739 /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67957B9E77D349FDBA49CD741DA313D2 /* Stringers.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - B26DC08428D6803F907A14FF08501DDB /* Polling+Require.swift in Sources */ = {isa = PBXBuildFile; fileRef = E93B05AB7F2D74755F556BEFA27ABDB6 /* Polling+Require.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - B377E43535F5B1A5AA9FABBC24D46042 /* HeartbeatLoggingTestUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = E32F4479E29DABAF7BF872B9AAAF4A6C /* HeartbeatLoggingTestUtils.swift */; }; - B3B24F63E48B3B8A852A87E8009E509F /* UIView+IQKeyboardExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79E7601A02651FAC7415EEBCB49C9F6B /* UIView+IQKeyboardExtensionObjc.swift */; }; - B3E625C32A22A235532190F234C5E15B /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B372D0279EAB990E3BD615FFDBB958 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B21CD1C471AFD6D9383CEF4B5322E739 /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = B00B568B3FD94D3462B7949D8CFBFBBB /* Stringers.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + B26DC08428D6803F907A14FF08501DDB /* Polling+Require.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0FE600A1374B33A5B6477ADE7BEB50B /* Polling+Require.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + B39ABB546ECE67AE2D142EB07DE69DE4 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 3368D779A4F10DA753FD551B5E1CD67B /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; B5025243FEA72E24DD1B17E2751C3DAB /* SharedNativeToCoreAdapters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 624334D7BEEF45679E6500B48CAF4E27 /* SharedNativeToCoreAdapters.swift */; }; B51EC0DF66B1560D3718CF3A8C1D81D9 /* SPCCPANativePrivacyManagerViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = FBD0C3FE4BCECF88927C3C5C450B34C6 /* SPCCPANativePrivacyManagerViewController.xib */; }; - B57E8104767ECB543A4D152D42F0FB14 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = E302764BB6FE971DF646B352FF0DE874 /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B5D15EFC024C732ECC2C69DA630192EB /* Equal+TupleArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18F6047FB83FFEC12D6F0FE6CE4703E5 /* Equal+TupleArray.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - B5D53BFE7C068360BACC399FBB75C8B9 /* String+C99ExtendedIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF374197388716B739DB5B8C30DAD6A0 /* String+C99ExtendedIdentifier.swift */; }; - B68CB6E24ABF7B54CEA8B907EE5C658A /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 8551B96649DC518FEB10BEB47FFC4585 /* FIRComponentType.m */; }; - B744EE30958AE2EC98E78CE6A030866C /* Requirement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 288EEEA8AEE2176ED91869E38426DC17 /* Requirement.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - B7A4CFC0A062E26F77CCBA595A8D630F /* IQKeyboardNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CE43E3E5A772279ABD0387A237DCDE0 /* IQKeyboardNotification.swift */; }; - B95A283D15B0FFD88289B3B5AAC59F8F /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46DC532A2458C8E24116BF023C0C228D /* World+DSL.swift */; }; + B5D15EFC024C732ECC2C69DA630192EB /* Equal+TupleArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63FE314A41192D45ADD1573B04810CC7 /* Equal+TupleArray.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + B5D53BFE7C068360BACC399FBB75C8B9 /* String+C99ExtendedIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FD3BBDAAF1F07D0A59E3F98DBC9264E /* String+C99ExtendedIdentifier.swift */; }; + B5FFEC6AB872E845802A2AF6578D6325 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 07C24E523543E182C93A229FB8B1C35D /* GULAppDelegateSwizzler.m */; }; + B73EC374D16CE3B135172DC568877994 /* Barcode.png in Resources */ = {isa = PBXBuildFile; fileRef = 87295588035B548CD735B7461612EFE9 /* Barcode.png */; }; + B744EE30958AE2EC98E78CE6A030866C /* Requirement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12D0FE7D15411CE61E5B2CDFF6BC6BE7 /* Requirement.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + B7D423400343A8191059E90B2AC77E9C /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 04AD62417A5D802049729AF441E69456 /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B95A283D15B0FFD88289B3B5AAC59F8F /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = F07C3D01FFA070062D9EC8A369BDB030 /* World+DSL.swift */; }; B97A46D6C135E70B8BEE5A0713C8E80A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - BA5D6E6897211807140AC96198CE2B2A /* IQKeyboardToolbarConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0F162DFF0A4C069334782DC294C71FF /* IQKeyboardToolbarConstants.swift */; }; - BACB9172D673201751B5D21764477BDF /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7006A5366815E0D1A1AC0BC96AF85400 /* AllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - BAE8908311819689AF21D9865DBDD233 /* AsyncExpression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0874D5D0DB5A4E30D92632B7FA3AB3CE /* AsyncExpression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - BB9401E5B5E4BF1A9482E724C65048EF /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 90C4D664CCFC0EC8EB09816FA8633A75 /* FBLPromise+Then.m */; }; - BBC969CD7C8E78F2AD836B2142B618BA /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D9F63656FB06F22F2595187B0848068 /* GULNSData+zlib.m */; }; - BC4CF6937F894CC9121B3BAF10AE8D14 /* CwlPreconditionTesting-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A361202B2E3C64A15E73F68BEB6EC838 /* CwlPreconditionTesting-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BC50047881FA26E71A99A2FA9E3E95DB /* WHNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DC76871304CCDFD3A1D21BF050D3177 /* WHNavigationController.swift */; }; + BA88D3FC8AC549ACBF12F9D9DF224E1B /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 212872A897CEA4FC061E88ABEE80E436 /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BACB9172D673201751B5D21764477BDF /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27B489FE8E5373A678868715F5E37A85 /* AllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + BAE8908311819689AF21D9865DBDD233 /* AsyncExpression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 758F9DC4BC1BD9FA840D047B2D349CD5 /* AsyncExpression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + BB78D8F0BB3F8FAF215D903442D0101E /* FirebaseCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A49BB40DEFE3F58AFB216F8D3D01550 /* FirebaseCore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BB9CA1090B7C8A7FEBFB58D85BCAD95C /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 4535635A06F1DFFEA38591BF903BAAB6 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC4CF6937F894CC9121B3BAF10AE8D14 /* CwlPreconditionTesting-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 094D4FA6F3FD48FAE143D5024AEB60FA /* CwlPreconditionTesting-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BC50047881FA26E71A99A2FA9E3E95DB /* WHNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F7D49A81794ADD8454763219C1ADCDF /* WHNavigationController.swift */; }; + BC9DD2893E994CA6924902DD3DD5A9E1 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 71483518E5968E4B02F21A14E2E29860 /* GULSceneDelegateSwizzler.m */; }; BCF0AD46C4CE0F41C7DC5B2FACC07563 /* SPCCPAConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 341C37DA1D524CCE2CA4C1E503E822E8 /* SPCCPAConsent.swift */; }; + BD141EEF7C40DE2AC94BF88B2EBE2052 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = A5B595311F91636241137A9386FD0489 /* FBLPromise+Timeout.m */; }; + BD6A4F5EFA1BCC7CCE0884541380D924 /* SPCCPAManagePreferenceViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D407B14424BEC0F39C5A5519E9569AAB /* SPCCPAManagePreferenceViewController.xib */; }; BD6B5D6DF56D7BF5B4402CCCE75E5DE8 /* SPWebMessageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0ED1B8267B071DB6AB0389823D4B50E9 /* SPWebMessageViewController.swift */; }; - BDAEB1BE10E28BC1C90F602B84651C2A /* UIView+IQKeyboardManagerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB6932AE55EA481CF1AAF28D724E19F9 /* UIView+IQKeyboardManagerExtension.swift */; }; BDECA90D445823334B2F63D90AAF2B73 /* SPCampaignType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 675870E9375216C86665B8B9D31444DE /* SPCampaignType.swift */; }; BE037C7CBC3562EB603B24BAF53B4932 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - BE557CBE20C696046ECF3F9D451430F7 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 6AF8199B31DC2D2E5AE8824F52F6D311 /* PrivacyInfo.xcprivacy */; }; - BE90281F3D712810D22EC11D42A35712 /* CwlCatchException.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE46FD2C9A2945C44977ED7FFF75B5ED /* CwlCatchException.swift */; }; + BE90281F3D712810D22EC11D42A35712 /* CwlCatchException.swift in Sources */ = {isa = PBXBuildFile; fileRef = B36BCE928386EB3470BF61C8DB7B3F31 /* CwlCatchException.swift */; }; BEC0038CE9707B2E08351E97D3E1FDE9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; BEF851E9BB02B53E5A2CAA4D670431A9 /* SourcepointClientCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBB9A9F0E5F0ED975F2A1A1AA5A8A5EC /* SourcepointClientCoordinator.swift */; }; - BF0CA91DAB85654FAD7D6E62C9B41C00 /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 250CCF39F870AE6F993E71E9CAC93BDD /* GULKeychainUtils.m */; }; - BF2072D3447F8405CC1236BD3AD91006 /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 341749C73A9DDC03BBFCB8BF4C77838B /* FBLPromise+Reduce.m */; }; - BF8F174DBB0D780050C634E9E98B5555 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 09760B2CDB70F77EDBE597061083AB98 /* PrivacyInfo.xcprivacy */; }; - C01219180842E9FBE66C36064087F8C6 /* JSONView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70C802EB30B4D174902F64BFEDF4B881 /* JSONView.swift */; }; + BF8C373091CD7A2FF0F3B7A35C2FE5FE /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 77E2374282B613BED22F005FE99E946D /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C01219180842E9FBE66C36064087F8C6 /* JSONView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D7D30A9A0EBC74CFB29C0DC69DB058 /* JSONView.swift */; }; C01513B45AA5C33D52653C3464D73408 /* SPConsentManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D84D917232543120C0F6F4EEA4E1BA0 /* SPConsentManager.swift */; }; - C06D95D3D44238B0203EFC8AA71432A6 /* IQKeyboardToolbarPlaceholderConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DE645F2294DF573039679935A89494B /* IQKeyboardToolbarPlaceholderConfiguration.swift */; }; - C0E25E0B9F46117560D056163C948F2E /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CAEFCC3380710EA276C557B6B0F987F /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C107322F328C400718CA422857913E08 /* IQKeyboardManager+Resign.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70098D87239066D9714D0F0671BF1C98 /* IQKeyboardManager+Resign.swift */; }; - C110D0EDB720B2BFB7321A966A6530C7 /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 998AE9A12896605E4272EBD27415F0DF /* FIRVersion.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C126417A4B639D734C8E16ADC41C2958 /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEC7E2308BBA2F7476024112C8965575 /* BeAnInstanceOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - C12D74EF2653C4F1C75F27CF926DBAF4 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = 80FD0F0830832A49BBFE269D8A0848E1 /* FIRInstallations.m */; }; + C126417A4B639D734C8E16ADC41C2958 /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 662429CB6AC4E96BA6AE5E1183015142 /* BeAnInstanceOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; C13B0902B4F938ABAD3918560616DA9A /* SPDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 170673B9177B3BF49D7BCD407632374B /* SPDelegate.swift */; }; - C13F938A333EAD9B173F0CFC798D67E6 /* SPGDPRPartnersViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4261DEFFFD9A94613A8785C9274D9CFB /* SPGDPRPartnersViewController.xib */; }; - C17AB96CC983DC35ED7D4E54D4F8FFE7 /* AsyncAllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FFDDD271BD34C9D86E1125AE8EADE30 /* AsyncAllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + C17AB96CC983DC35ED7D4E54D4F8FFE7 /* AsyncAllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = B224AA618A2BB3AE9F445349E349B6C4 /* AsyncAllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; C1D346209F32BB848F54B0A742E7E7BE /* SPCCPAConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 341C37DA1D524CCE2CA4C1E503E822E8 /* SPCCPAConsent.swift */; }; + C325255775541B4888E44FEAAEF52B58 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 60E64396CA6F5B577F400C5C6A72A474 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; C33AB192FDF690945F19AFC49D620B26 /* SPDate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0D11B44C645CCA4370139EC3EE9C182 /* SPDate.swift */; }; - C3749017CF307D6865B7F9E76B99AAE6 /* IQKeyboardManager+ToolbarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5C59B4ED524ABF6D2C2622A2C3CF9CE /* IQKeyboardManager+ToolbarManager.swift */; }; + C34763082FF41287480A4150469682A8 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 563D7A75116C319C272C760A68B001B9 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C38D086151B53D1F9D0BF11AE4693F28 /* SPCCPANativePrivacyManagerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = FBD0C3FE4BCECF88927C3C5C450B34C6 /* SPCCPANativePrivacyManagerViewController.xib */; }; C3AF73C3E63A4725C9D85737FFA63410 /* SimpleClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10E0A1B4632BE74D7347FA8479A1CE4F /* SimpleClient.swift */; }; - C3B7C08D3D9C741A77473BC296651256 /* CwlDarwinDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0040387F9E3E25AF324907F247E4BF80 /* CwlDarwinDefinitions.swift */; }; - C3C97D632903E709B28E2EA08181F897 /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AF548F201A5ECBD867F8B7FE2F0B358 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C436C152E302FC42EB5363E3E0DCCBD4 /* SPGDPRCategoryDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F8C910DBDF5A6D2D1FD47EEAE69D7867 /* SPGDPRCategoryDetailsViewController.xib */; }; - C44250F02DE56F7341E59C44BE035B0F /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF2760999E9505C542C43463DA33C683 /* BeginWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - C48B640E3924B883A845D3BEACA382C1 /* RequestCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B2A085592270AF5DD5E13A64ED858F7 /* RequestCell.swift */; }; - C48CB797AA73E412F65A64A19A7B741E /* UICollectionView+IndexPaths.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26EA509F93874431C5DA3886A8BF2C86 /* UICollectionView+IndexPaths.swift */; }; + C3B7C08D3D9C741A77473BC296651256 /* CwlDarwinDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDFF982F9613E3FB4A5C215E93103634 /* CwlDarwinDefinitions.swift */; }; + C43224922A2ABB3247DB1D7F1594192B /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CA355AA07CBD101CDEF5AE097726279 /* FIRInstallationsAuthTokenResult.m */; }; + C44250F02DE56F7341E59C44BE035B0F /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE69C6D35AA4A945530637E937BF3C2 /* BeginWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + C469C426A36C26BC983B080A44BD3A8D /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 54B38072CD0EF812CC7823E6F57CD5E6 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C48B640E3924B883A845D3BEACA382C1 /* RequestCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4B9EA609443DB5F58DD34CE79AE2AF4 /* RequestCell.swift */; }; C50F88DBA526326EFCF1E593A0DF5FF9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 886B70550F3C22CC20F9B77783E267E6 /* Foundation.framework */; }; - C52AD45B6FA277E55F97E41E5135CDD0 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E5CB5ECF48DAC0B2C0B6B7AD94DD9AE5 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C54B8C3761BF9C926CA29565E4013FFF /* IQTextInputViewNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = B30228F44B1ECB9333C5BB269B12FC50 /* IQTextInputViewNotification.swift */; }; + C54B03A4C2F61520058027D5F7BA6EBC /* FirebaseCoreInternal-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 165938F62D31D350A961EE4E77FFC1A2 /* FirebaseCoreInternal-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; C5920F93C9E2358EA5637D2AB32F4432 /* SourcePointClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 182C561114B03D57F4A67E016CB87CFB /* SourcePointClient.swift */; }; - C5CA6FC02FC7266614B1408395F62087 /* XCTestObservationCenter+Register.m in Sources */ = {isa = PBXBuildFile; fileRef = 1131771154A5D4CFBC4918DB50DAFEB2 /* XCTestObservationCenter+Register.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - C5F469225D301450F93C7F54DD2F62AF /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58C9FAAE4EC65C106EE35B0F9CB1D07F /* BeLessThanOrEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + C599BDF2E86F70C4C008B969153AA79C /* RequestCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = B3CA14E53E43E05EF19B6A7DF1A91D82 /* RequestCell.xib */; }; + C5BA0B27B0E4287B434279CC1CDEE396 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 655871DA789EEC41DF528D0343083373 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C5CA6FC02FC7266614B1408395F62087 /* XCTestObservationCenter+Register.m in Sources */ = {isa = PBXBuildFile; fileRef = A1F9C1BFA93282D03C9A99C3C8A27564 /* XCTestObservationCenter+Register.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + C5F469225D301450F93C7F54DD2F62AF /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7491C41A4C653109BFD69AA99EA36211 /* BeLessThanOrEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; C5FB4D65957D7939FC1157D2D72DDFA7 /* SPPMHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BEC03026DF74168D976AE6F80B66B17 /* SPPMHeader.swift */; }; - C61B99C3F20DC28772152E16AA7841A7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; C62950A61E36AD99041C3429E404136E /* SPString.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA6B5382DCD05DA49AE8667BAAD85D46 /* SPString.swift */; }; - C64D71CB04914F24680884B26ABD7EA6 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56E21CE4558584557CD31CE1F28B1AC1 /* Storage.swift */; }; - C6D7B28BB621AA0810B066E47072834E /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 9576D8FB03AEE9AC0CBDD7F29B35CAA8 /* FBLPromiseError.m */; }; - C70C082E28AF56C6C5441F9E020AFDA3 /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5E901D6799A4080D3DA5DE97F41AB72 /* BeLogical.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + C635FCEBFCF220EC71C296A283D6370D /* javascript in Resources */ = {isa = PBXBuildFile; fileRef = 04DB65DCECD90C91E3B57C2CBD3A859A /* javascript */; }; + C70C082E28AF56C6C5441F9E020AFDA3 /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15189BA69BDFC39E7A0E6CDC4DC6FB80 /* BeLogical.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + C76093BBFB1E34314E354D0261A26C9B /* IsAppEncrypted.m in Sources */ = {isa = PBXBuildFile; fileRef = B9277DA07B11FB505DEAC060BD00D239 /* IsAppEncrypted.m */; }; C7D87BF636A4D89B88BB5C2738FE6DE5 /* SPGlobalCmpConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30070E328081555BF2022644B4DD5AB2 /* SPGlobalCmpConsent.swift */; }; - C7D8E50AC47E760464EADD32051EBD57 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CBF89707947635E807790F88B0A8BD10 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7D98D187128D3E4A55E4E20EA99BBDE /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 676E1BBA57754C7536CA90B5739F2021 /* FIRInstallationsStoredItem.m */; }; - C82EB9C5D426665C0097F1597F49E2BA /* Pods-Examples-SourcepointFirebaseDemo-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F61D4ECE7209D921C3706D389D3DD21B /* Pods-Examples-SourcepointFirebaseDemo-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C865138C1ACD544E86E8D2FA686C66A4 /* IQActiveConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76384906EF776A77A37571DC6C520E41 /* IQActiveConfiguration.swift */; }; - C8CF088E1EAAE96B54B8758F2DC0398E /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 41D24BF5A5CF5980FC9E5A5AAB880EA9 /* FIRInstallationsStoredAuthToken.m */; }; - C8F72BA8913CF3227F6A9C1EF184E70E /* _ObjC_HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A5A90AC4FB990424A1D8841F30954D2 /* _ObjC_HeartbeatsPayload.swift */; }; - C91B37F1C8EAE26A79B9BF0CEA01D094 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 291EEE38749CE6E0C73E407A8D0EB77E /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C82EB9C5D426665C0097F1597F49E2BA /* Pods-Examples-SourcepointFirebaseDemo-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B47AB36861159884CBB56FCE30C6F4C /* Pods-Examples-SourcepointFirebaseDemo-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C8F504AA6E46B717433B99B508C44D18 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F48F49A8F8C45ADF738743E322775BB /* GULNetwork.m */; }; + C8F8732DEE67E672E1CAC972F16D028C /* RingBuffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E12C628F8A6E37A9B41D172C026E089C /* RingBuffer.swift */; }; + C948640EA7158C1FE432897F5D1E7BF4 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = 83442322BA283D78CE937831AD163F9D /* FIRInstallations.m */; }; + C96FA6B6EA9D472C92166274AB7E682D /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E20F080CF4726774171AFD81E7651852 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; C994361E28F2E0E573F96043E1D2C785 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - C9A19FCE3D0C4FE4D0803299C5AA44FA /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = F62081B5872B4B4CA6605D0C45EC6AA5 /* AssertionDispatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + C9A19FCE3D0C4FE4D0803299C5AA44FA /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = D34B8A15F6299C6B28232CFAC708FA4A /* AssertionDispatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; C9F3E52479E1D5A86A38B2B4AE33AD25 /* SPPropertyName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F83F0546C6C0F7184FE189E8F4A06CF /* SPPropertyName.swift */; }; - CA0118A46B671167571D4755917A367F /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D542779C488CF8ED5AD479BF0B8FB1A /* Equal.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - CA887B2E75BD7E3088A01C5AF944F187 /* IQKeyboardExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5074B22265EA17DA123B92F5460B22F8 /* IQKeyboardExtended.swift */; }; + CA0118A46B671167571D4755917A367F /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6910437F69F8060DB1E41F17E14DA86A /* Equal.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; CAB824AD7F0C797E6A3AD3D22F795D15 /* ConsentStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B4EE46F7F6CD84E907D32A3E394405B /* ConsentStatus.swift */; }; - CB0DBBB6E93B92C04B6C460932D8E9D1 /* IQTextView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7442995C363F851C85FE64B3A4B00C1B /* IQTextView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CB1C12468B6EA38F8DD32D460546F6C5 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = E18ABD7A97D4F0D64B0819C191C35E84 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBCB2378F8D2DBAA65F347B2F90F0A7E /* AsyncSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = E97532B3008EAD598A48D9E01B06B2B7 /* AsyncSpec.swift */; }; + CAF77C528B12C2B24724836A63A4ACA0 /* LongButtonViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 74CF2D6A2D0D5DB2BD259BCCF764887B /* LongButtonViewCell.xib */; }; + CBCB2378F8D2DBAA65F347B2F90F0A7E /* AsyncSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = B29FC7A662C599DB242209F2C703FE63 /* AsyncSpec.swift */; }; CCA6FFB7B76AB817D9A8AB499B5D0791 /* SPPrivacyManagerTab.swift in Sources */ = {isa = PBXBuildFile; fileRef = A602E08A711C2221EF6229727384A7CF /* SPPrivacyManagerTab.swift */; }; - CDC01082A9D3E809CB2C85306F346C2F /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = A29A933877C4A42745B22A0407B169CF /* FIRInstallationsLogger.m */; }; - CDE2D1E5D05C1DDEB3FC164FC2DD252E /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F6BB2423C69F99EEAC09C7C9E7B6E66 /* Expectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - CE0332F9D604BED32274F697952E15C0 /* IQKeyboardResignHandler+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA715F2887DD043810B1AFE30E508AC1 /* IQKeyboardResignHandler+Internal.swift */; }; - CE042ECB32DFB995C0F38CB37DF8574A /* IQKeyboardNotification-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F3051F39A3AC899C9B540C520ABD5B9 /* IQKeyboardNotification-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CE156D71DDA0E5B674B89DF2AACF336D /* IQTextView+Placeholderable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B2C452C547F5C72A91AD191072AB706 /* IQTextView+Placeholderable.swift */; }; - CEA1D39C2BF8555C07EEB9B70110EC2B /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A627BAB9445B7F348964DCEC0316670 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEF2FA907B59AFB2FAE828056FC8926A /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C7F93F7CFF13C43FCDDF68AC3D6522C /* BeGreaterThanOrEqualTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - D01C47D9DBF17DE850ED3D03432B40BA /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E0FDE098C322191908278E338777DB8 /* Errors.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + CDE2D1E5D05C1DDEB3FC164FC2DD252E /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F29115D95F0553BA382E8F62BAC00F6B /* Expectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + CE157987F630B3425D8D1B9AF7064D61 /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = FF6B07A257C9B6FD90A471FE0E8FD9A1 /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE397ED286D9F54220AAF9532DAAA642 /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 227D387BA824E9B3D189AD8F077911A7 /* GULSwizzler.m */; }; + CEAF922B08B5FD95700045ED945D278F /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 40A7BE2D7FEA298684523EF1AEA0E373 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CEF2FA907B59AFB2FAE828056FC8926A /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37FC59E9D44AF812BCB6A6B2B092B47D /* BeGreaterThanOrEqualTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + CF821BAE38B712468027181E18C23D16 /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = D2358BE2A6EDDB0E2E6625C0BF99DADF /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D01C47D9DBF17DE850ED3D03432B40BA /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9F2D2DF6CC228D90A087969F9BE7B1F /* Errors.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + D02923B99CD1A8A6CFC32AEC8559C5DF /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = C4A238FB0CF97AB93EE222784B7BFFAC /* FIRApp.h */; settings = {ATTRIBUTES = (Public, ); }; }; D060F838D0A78FCF4530EB3DA5834E71 /* SPCCPAVendorDetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1375173E8D5512B9BFD64EDD2FCA6C13 /* SPCCPAVendorDetailsViewController.swift */; }; - D0A520904D974512E658E557C141C9B5 /* GULNetworkInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = AC6C453CD050FB5817AA3897D415B52C /* GULNetworkInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D12CA2CD67FBCD781D611E8AA8C3BBB9 /* WHDate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F536C8567BCC74900C15620A5D873D25 /* WHDate.swift */; }; + D08FD2BD103ED4B34136772F60E6E9E6 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 244880065A3393F54BFDAF677C86BCBF /* PromisesObjC-dummy.m */; }; + D12CA2CD67FBCD781D611E8AA8C3BBB9 /* WHDate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5EB645812EBD9D147A583FF7C0B28BB6 /* WHDate.swift */; }; D17108607DFE8F25B3DB4BA668B2A4FB /* MessagesResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A0C68D976DEFB9773D1E67B3627B6D1 /* MessagesResponse.swift */; }; - D286791B1009C63E6335FE208486454E /* NMBStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = 29EAF25F21EE50C142118D7F65D0141E /* NMBStringify.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D3149E8AAEEAEB2F95DF65CE8668614B /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E3AF0B8A81D565A7E4CFA7B9C4B5154 /* FIRInstallationsAPIService.m */; }; - D3887F0E209650EB2E60AF19A824F9A1 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = B5DE92BBC442B76678390B2150C0ED58 /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D44C8932092EDD9B748C8C974D4F5F5F /* WHLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E73C9325537856D0BFC3E891FCC1C0 /* WHLabel.swift */; }; - D49C13B1B0A154A7FB9F41AF45658B48 /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 219CC0CD56FC97926EFEFCDCCC9999F7 /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D4A4EBE704208A15E07F5510B41DA27B /* TestState.swift in Sources */ = {isa = PBXBuildFile; fileRef = 054F7CF39326FC823FD090254AC82F87 /* TestState.swift */; }; - D52BDAA40482729E199984C72986006E /* QuickConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBE8437615205B25F5BEF35B3A81EDEE /* QuickConfiguration.swift */; }; - D6707BC053D52948BBD6804C7D3A173F /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = F62081B5872B4B4CA6605D0C45EC6AA5 /* AssertionDispatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - D6B4B3395CCDBB5CA8A0704D7FAA96BB /* CwlMachBadInstructionHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E34D926F7527B1A43827738B3FA8609C /* CwlMachBadInstructionHandler-dummy.m */; }; - D702EA3DBF720A90A19C03C734874343 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = FCE122F25E5F686A943505B92705B9FE /* PrivacyInfo.xcprivacy */; }; - D7D15EB96DD55E5C23C88197F4B395BE /* UIView+Responders.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FEA1A4EC31069946A09F155DF282C30 /* UIView+Responders.swift */; }; - D7F1FF58EEE53B3C9677746A36394507 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A6F4473374AD88703DDD7B603DCD0CF /* GULAppDelegateSwizzler.m */; }; - D8015E2545E47AEFBA55A095A237A316 /* IQKeyboardCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 118D08AA25F5FBD2C0A9F1604960FCA7 /* IQKeyboardCore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D97FEE526653B86DBDEEB6CC6B039BE2 /* Polling+AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43244700C4FEBF5415C1C05108E62092 /* Polling+AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - D9AE2EA1EC1BD7F58D014113B70A7EEF /* BeginWithPrefix.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB2C05762A801FB522FBCB138FF1441E /* BeginWithPrefix.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + D1C1C9BFC2DA6946879B0B3783475583 /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = E1DF5F3530E33B4156A15DA05CA96AB7 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D286791B1009C63E6335FE208486454E /* NMBStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = F246135F6FE2FB42E2CA72F43F3C861E /* NMBStringify.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D2AB878CE82DD8011CC9A18629077D0A /* FIRInstallationsBackoffController.h in Headers */ = {isa = PBXBuildFile; fileRef = A85F098A5EA0C8981B9079D72A717721 /* FIRInstallationsBackoffController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2B413BA86A7A106610D4785E6B6F75A /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = ED8C9B31D02EC3666D7EFD9158616F3C /* PrivacyInfo.xcprivacy */; }; + D4256301E96A1C42EA10A93A9721C3B1 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 674377EB7069465775ED50BAA4102EAF /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D44C8932092EDD9B748C8C974D4F5F5F /* WHLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0943B78F6B0D4161F5619A122F59B8B3 /* WHLabel.swift */; }; + D49C13B1B0A154A7FB9F41AF45658B48 /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = B2FE4B691CB15849C8C7B4A67D90FC16 /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D4A4EBE704208A15E07F5510B41DA27B /* TestState.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E6C776AB7AD85BFFD9E04FE1A6A838F /* TestState.swift */; }; + D52BDAA40482729E199984C72986006E /* QuickConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00EB5256D8D2065D33FBDFBB317F6160 /* QuickConfiguration.swift */; }; + D5ED18845CCD2A5983B669EB630389E1 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 7570991DD9ECFD7E8952782E6EE452C5 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D6707BC053D52948BBD6804C7D3A173F /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = D34B8A15F6299C6B28232CFAC708FA4A /* AssertionDispatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + D6B4B3395CCDBB5CA8A0704D7FAA96BB /* CwlMachBadInstructionHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B508B3D59EE122BA000258BE662F82C6 /* CwlMachBadInstructionHandler-dummy.m */; }; + D8285F3104C83ABA7ABC0B22D75B9246 /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A4A014DF823D4524181C26472988F59 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D924AB4E856B4754679B3139655BD240 /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 37546AE7AC44D9CF6B90FB1F1D2BD9CC /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D97FEE526653B86DBDEEB6CC6B039BE2 /* Polling+AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4B877E79592B4D6C995D2281D9F6286 /* Polling+AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + D9AE2EA1EC1BD7F58D014113B70A7EEF /* BeginWithPrefix.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6097CB13D34CFC992D614D6FD7536DF2 /* BeginWithPrefix.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; D9C0D3F01D7BEB5794E24FE9B4EE66E8 /* GDPRPrivacyManagerViewResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BC310208D21A2EB2923EBEE54FCADA2 /* GDPRPrivacyManagerViewResponse.swift */; }; D9C3B7B55F128407C9216F668CE9A6F3 /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FD841BE77E2D4BDDC8DF77D283B1FCB /* Constants.swift */; }; D9F6E12DB8BCA955F763E2C5C15E1BC7 /* StateNativeToCoreAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC6BF0CBB80DC543EA9A8290A1EB96A8 /* StateNativeToCoreAdapter.swift */; }; D9FE1258C04BDADA26D06E11B997B265 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - DA5EE857EA8D9F3A0A49AABF6989D452 /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1491DC45BF249A59AD8CC59BC57813D /* DSL+Wait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - DA5EEF80A3B4732A0899EE3DAFAB77EE /* AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32BA42082EECC00B012859960BF28406 /* AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - DA815E4D666EBD37FEAAB8BA2EB05D94 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03A4E26FDAB2812977B49469A6B6B561 /* Example.swift */; }; - DA839AF84881478750BADF7CBB6EB7C6 /* SPCCPANativePrivacyManagerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = FBD0C3FE4BCECF88927C3C5C450B34C6 /* SPCCPANativePrivacyManagerViewController.xib */; }; - DB93F5C139F09A4BAF98AC098F28CCB8 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E0FDE098C322191908278E338777DB8 /* Errors.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - DBAA1E2B47DAE815F244D25087F2C6DB /* Pods-TVOSExampleAppUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1BB9353EDDE03C354A5641DD350250 /* Pods-TVOSExampleAppUITests-dummy.m */; }; + DA5EE857EA8D9F3A0A49AABF6989D452 /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4185C282D94B2BA9A4C776CC49DE353 /* DSL+Wait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + DA5EEF80A3B4732A0899EE3DAFAB77EE /* AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 441FCD6C1FDA7C5F43235BFBDF880A17 /* AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + DA815E4D666EBD37FEAAB8BA2EB05D94 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22D2ACDC9E8AA687B43986D8C061F861 /* Example.swift */; }; + DB93F5C139F09A4BAF98AC098F28CCB8 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9F2D2DF6CC228D90A087969F9BE7B1F /* Errors.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + DBAA1E2B47DAE815F244D25087F2C6DB /* Pods-TVOSExampleAppUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 02B20C61B978171B1DCAF75051241949 /* Pods-TVOSExampleAppUITests-dummy.m */; }; DC0BF875653B19421E0B48AE076BD302 /* SPGlobalCmpConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30070E328081555BF2022644B4DD5AB2 /* SPGlobalCmpConsent.swift */; }; - DC40FBFF09CE3C36B8316F6DF0F266B8 /* QuickSpecBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 80A9DB66AE8726E0CB5FC058EDC77670 /* QuickSpecBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC41E8B731F98F5AF5AB6C1D860FF9F9 /* IQKeyboardToolbarManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A93FA39A9D83693D979D6C87751F4E5B /* IQKeyboardToolbarManager-dummy.m */; }; + DC40FBFF09CE3C36B8316F6DF0F266B8 /* QuickSpecBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D8EA074341EE61DC353AE3358913322 /* QuickSpecBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCE03D3605F5F0F0CA1206463D41C278 /* FirebaseCoreInternal-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 53C5E3DDD7DDA5B0CD1064A160144E2F /* FirebaseCoreInternal-dummy.m */; }; DD4EAA40D28B91614A468547FF258BF6 /* SPSDK.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64D94984CD5EFE5B89EF3B4A04CE304D /* SPSDK.swift */; }; DD57CA552F5139FDF9949CC4350C8369 /* SPGDPRConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87AEFA2EAE4004039B9687ACD673B4AC /* SPGDPRConsent.swift */; }; - DDC5CD0FA94051157EAD44DCA11D4D5B /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 957ECFCEB95A78EED2F84236B2271846 /* BeIdenticalTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - DDF54D32B74B436A2B7F5EAE63DE240D /* Pods-TVOSExampleApp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E88480B61ACCAA0F2621AB2B749F2E6 /* Pods-TVOSExampleApp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DE655B5ABD24CD91A6EC78A6CB5782A6 /* IQKeyboardToolbarManager+Toolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = E65AF204BB83B541A6F7685A67A74FE2 /* IQKeyboardToolbarManager+Toolbar.swift */; }; - DFB932C28ED84FF47827C25D4913AFCD /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A9AFE904771B568A4754C58702BBFAA9 /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFDB97F16D7C5B6DE5A269DE4F77F4DC /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = A4CC809ED8B5AE51F38848C0F72698E0 /* pb_encode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E055D1CA4589CEA1F388C0B364568BB6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - E0F85C04905215B579E6620E545FD3B7 /* ExpectationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF194C25B34AEA58DDC39968922E81AC /* ExpectationMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - E11D0FDB0859CBDCF5DF24406D0218F0 /* IQKeyboardAppearanceConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35C4A9F0DF15C70F4B42FA46D3195906 /* IQKeyboardAppearanceConfiguration.swift */; }; - E17430514C3537451662FD780BCD51E6 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = BE60272E11ADB724C93010B2B4936F82 /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E199F071297998A6CB093255F815D1A7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + DDC5CD0FA94051157EAD44DCA11D4D5B /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4D41D0FC581C64139A0BF48F1400C96 /* BeIdenticalTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + DDF54D32B74B436A2B7F5EAE63DE240D /* Pods-TVOSExampleApp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BA8F8F124746AD773A70EB0AB5A2BA27 /* Pods-TVOSExampleApp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DEA920ABBDDC3BAAA58749AA18ADA052 /* RequestTitleSectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 9A98A19B56EE2E7EA02EEF1E489037AB /* RequestTitleSectionView.xib */; }; + E0EC185B023C12B0B269C1444B0E12FD /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 285EC57A7C49695B7CFE2591DC98FA31 /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; }; + E0F85C04905215B579E6620E545FD3B7 /* ExpectationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = D27CD9530A31B105C03C4291D69013E5 /* ExpectationMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; E1ABDFC7B07C6DFFA28ED50DC7FBB8C0 /* SPGDPRManagePreferenceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F422DC5A22E73E41CE4F61FA75179E0 /* SPGDPRManagePreferenceViewController.swift */; }; + E1C67A123E7333291A9FD4DDA9885A1E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + E1CE6297B4A819D8A291E9F198275A3F /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 7341EB953156871757EA8DCD193FAA39 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; E23C859875272CC7D510A6DB0F6C9D48 /* GDPRPrivacyManagerViewResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BC310208D21A2EB2923EBEE54FCADA2 /* GDPRPrivacyManagerViewResponse.swift */; }; - E2A8240497CC2326C258BBF216B22F7B /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 2311834C46257E5B983935E8AF97B346 /* FIRInstallationsStore.m */; }; + E2C33FB0CA41A206D25AE7D2C09D2F86 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 544C1F5C16E391B7384639F660F07C21 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E3059F8463260137D95405150E35636C /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = CB6861380BA228BC2D5BBF750F75FD8A /* FIRComponentContainer.m */; }; + E308907D659ED376A8D3B774A75DA6D2 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = E9AF1DD8800EC7667D9FEE526017EBA6 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E31C55BF8C88795F29FB84A03E674850 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B97C2B39DE0FA07EFB90DDD0C5D07D5 /* FIRBundleUtil.m */; }; E32A1F3DD67E2E985E18B4FC270BDEE4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - E32CA110786342FC30BC85BCB1CFEC37 /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D48730791EE2DDBFAF504114702BBC1 /* SourceLocation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - E32F0E8C28D0C6B3CEEAA10594EAEE26 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 81B2DCD6F80D84C042CB7FA5F1C8FBCE /* FBLPromise+Retry.m */; }; - E33A06CF74E44D372DB5E4F602D61EF7 /* QuickTestSuite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8193AC37D693F05389BC7EE7817E74E2 /* QuickTestSuite.swift */; }; - E35057B482504E6059859DB6FBD1DD1A /* SPGDPRManagePreferenceViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C03190257F1960B9B76BE102566E21AD /* SPGDPRManagePreferenceViewController.xib */; }; - E3C7CA1F2C17045FC7DB8CAF7D73938F /* SubclassDetection.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA0F831F10B5385C15685F1BE6EEC902 /* SubclassDetection.swift */; }; - E3E799D8787E6C00CEC6E214B8C3A8E2 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = CE860B2EA5C79C372454DCB7851C091C /* FBLPromise+Always.m */; }; - E3F772B0C47359965F25AB174EC12A9C /* Pods-TVOSExampleAppUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A64CC7844FE6E230D1CFD0D3797B19C /* Pods-TVOSExampleAppUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E403A18A93AF3C60BA73AD384CC5D2E5 /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26934FCB04DA419CDDC98A0054B0722A /* AdapterProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - E4185AF2689E5D95FAD7F68880B8E91A /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CDEEE3D45A46E2F48CEEAC14CC08D22 /* GULLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E32CA110786342FC30BC85BCB1CFEC37 /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B1A3533F58C5A343C1793EF683E7124 /* SourceLocation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + E33A06CF74E44D372DB5E4F602D61EF7 /* QuickTestSuite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AF2E5AAA653C6DCE825A0FF0F7C425C /* QuickTestSuite.swift */; }; + E394CEAFF7EDC2BB459B44EA8A3499CF /* IsAppEncrypted.h in Headers */ = {isa = PBXBuildFile; fileRef = 07BB747336C89F95DC3278F260D10594 /* IsAppEncrypted.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3A1F53C92A45D8C07D289463DF5E39E /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = F9F7EF137340DA46E15DCAD51DA529E1 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; + E3C7CA1F2C17045FC7DB8CAF7D73938F /* SubclassDetection.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCB584E83AF057F9A589843EF7C3B147 /* SubclassDetection.swift */; }; + E3F772B0C47359965F25AB174EC12A9C /* Pods-TVOSExampleAppUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C4EEBEF62B306E80B295B20921DE6CB7 /* Pods-TVOSExampleAppUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E403A18A93AF3C60BA73AD384CC5D2E5 /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4E227A05C94C5CC3DBB8DC852F7CBC0 /* AdapterProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + E4478C55790FC14C49C683BA1529D250 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = AFFAB52F563C63E910F0583A3959FB4E /* GULNetworkConstants.m */; }; E46CE04C4C0AAD32AB28E78BCA723C69 /* SPMessageUIDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BC1FB1939BFE5F15D153AAC7FEF4A83 /* SPMessageUIDelegate.swift */; }; - E49C1415051F51B24AB3C2DECDEAFB90 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 7408933D9B881924358ABEB56C6EB596 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4B534625835623E69964570238546A5 /* utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83D9F90000E5510FE177292A21D0DB03 /* utils.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - E5367AD004CF53D8D393013DC108D795 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = C3BA0948AE51327AA64A49BFFC847D66 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E562D7FD7B80D54B0E3C908922000595 /* BeResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCE82D92BB4A30E93E343AE451E79C32 /* BeResult.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - E68DFBB1A67F0CC549B4A330F94CDA8A /* IsAppEncrypted.m in Sources */ = {isa = PBXBuildFile; fileRef = 98F6695DEAC1D13CB0C1ADEFC4FBCE58 /* IsAppEncrypted.m */; }; - E6AB5478CA8EFED9269CD57188F1CE43 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 76CDC09AC51552BBFCCE41349F1AB612 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E48A7A11102E83DCD47F00CC389734B8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + E4B534625835623E69964570238546A5 /* utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = D91DDA07BC3CC1B8EB09B3AFA0BB040E /* utils.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + E4BC2939C5951F9DCF6511C5F6F0F009 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = E4D1AA884C1CB9EA1A532E137F62DF01 /* FBLPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E4CF641112938576B503752C2A9FDA8E /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = EB27448A9BC9AA7F27CE7651E27BD1CD /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E562D7FD7B80D54B0E3C908922000595 /* BeResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6C1B59861446BA981A24EF59CE82F17 /* BeResult.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + E678917DF70C7F06A2C1A796953452B6 /* FIRTimestamp.m in Sources */ = {isa = PBXBuildFile; fileRef = 590EB8BEF9B1DC5BF894455AA3673415 /* FIRTimestamp.m */; }; + E6D7497F23E9A17D1E1BB207B286F70E /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 73B4CB67E390E11A2014EB32CA0E286E /* FIRInstallationsStoredAuthToken.m */; }; + E771A9B4AF9F1C9098CD254AC312DC5C /* Flow.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6A1BEA3AA6DB7865E93A6268ECDCC5C2 /* Flow.storyboard */; }; E7AD573F2B3D478834511BAC32CEDDDA /* SPUserDataCoreToNativeAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFC7850E9B7310BAB913C6048A714A7D /* SPUserDataCoreToNativeAdapter.swift */; }; - E7B793F0B00A9E3AF281B881D094C99D /* DSL+AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E7F1F0F821C28473F4A86C41B25AB7 /* DSL+AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + E7B793F0B00A9E3AF281B881D094C99D /* DSL+AsyncAwait.swift in Sources */ = {isa = PBXBuildFile; fileRef = C82A5DBE8CACD9017CE1276B35A9596F /* DSL+AsyncAwait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; E80DD8023C4F6656ED823FBB198122C6 /* SPUserData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B1C4DA30BEAE3606FF4DCEFDA3729DD /* SPUserData.swift */; }; - E81C073333A1292A00E7A6894658A671 /* AsyncExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5CF58C2980FC8C6E33960F8257583AD /* AsyncExampleHooks.swift */; }; - E8789C876A23C86DE2A179941962D675 /* FirebaseInstallations-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B248C61C89B02A8A25F332705053C87 /* FirebaseInstallations-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E8AA4A15431A050F3EA95A3F8D0910C8 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = E5F243977118F9FF7014EFBD618CBCBD /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E81C073333A1292A00E7A6894658A671 /* AsyncExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7190225A20C7D20C3ADAB000F6661E5 /* AsyncExampleHooks.swift */; }; + E87277320028926C0874EBF007519266 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = E73D415FC8E60BAA2062B80EDD4E7068 /* GULUserDefaults.m */; }; E8E1B157F95E09C5204556F6F647F5A2 /* SPConsentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A26FB32526EE53AA8C0991531AC45DE /* SPConsentable.swift */; }; - E8F2FBA2F806C6A0F58523070DB434E9 /* Pods-Examples-SourcePointMetaApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4424C873A8239E14D307C7649C328BDF /* Pods-Examples-SourcePointMetaApp-dummy.m */; }; - E94A827DEB23341A36B556433591350B /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B3054F657B97EEC597FB71FB7EEBA1C /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9D7293147F72BECD0FF3F00B5A43881 /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1491DC45BF249A59AD8CC59BC57813D /* DSL+Wait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - E9E6D93BC667EE52F9B57BD4BA469406 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED6272CCA83508A3A34BA111C6A513BB /* Filter.swift */; }; - EA3B6F8B581FF31012A949FAF3B420E3 /* AsyncMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D7754507C4F4A1D871BB0E2791C1968 /* AsyncMatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + E95CCC119CC7ABCAF99DCC629FC3BF8F /* StorageFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C4233608E03838BD18EB394195E9253 /* StorageFactory.swift */; }; + E9D7293147F72BECD0FF3F00B5A43881 /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4185C282D94B2BA9A4C776CC49DE353 /* DSL+Wait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + E9E6D93BC667EE52F9B57BD4BA469406 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0F180EBC9B28335EC3432CA43ECDE7E /* Filter.swift */; }; + EA3B6F8B581FF31012A949FAF3B420E3 /* AsyncMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64C6AFFB907364693ECA2156ACC287D1 /* AsyncMatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + EA89A78BE5986DA4E846CDEACD43B2C7 /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E973547B432A3EFF7F1FA52CCE419B7 /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EACA587D2644A9BE23CEEE2FDDDB4928 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = B781E824219B778305D41707941D0DC7 /* FBLPromise+Always.m */; }; + EB1E250F0B3BD0CF9605EA30C324C0D2 /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = D3BF6FB346A9AD9E836AE089E154841A /* FIRInstallationsErrorUtil.m */; }; EB341D713BB91C9CA505F682BCB0FB81 /* GDPRPMPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AF75DCA5052B0584C35163F08BE31E6 /* GDPRPMPayload.swift */; }; - EB536E8BB72E5FFECE04064FBE3EC33A /* TextTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63A5CD371E3230565E30896165B49380 /* TextTableViewCell.swift */; }; - EB7847888EE120CB5CE1E2F8CD7ADBF5 /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DFAD2755DFADA501DCDEE7481708E60D /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m */; }; - EB8A34A4A321A07DF1D942F4EF8CF427 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 935EEF5E16FC6B7B0B0977DB05AE930A /* GULNetworkURLSession.m */; }; - EBA8A552C8F299956670315F1388AB9A /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3427A27AC38028C5399CAE2BCF841D6E /* DSL.swift */; }; - EBB47ABB1DA7B625932157D03EC12293 /* FIRTimestampInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2745E6AA21573E8CFA72AE7E87509F44 /* FIRTimestampInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC1FDAC6152594C8BBA6CB7A8EB52C18 /* Pods-Tests-NativeMessageExampleUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 13887FF5AE96C61A75493F453E51A166 /* Pods-Tests-NativeMessageExampleUITests-dummy.m */; }; - EC9BD6292019EC3657246F38466824EA /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D4924F4ABCA937EF78C6D630F046064 /* EndWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - ED21DC9B43C82294468B03C0B01EE2FC /* UIView+IQKeyboardManagerExtensionObjc.swift in Sources */ = {isa = PBXBuildFile; fileRef = B29E4356D1D410280B2A1E1567FCD00D /* UIView+IQKeyboardManagerExtensionObjc.swift */; }; - EDCA05DF8E30361DA6B503C8CA767B6C /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = A6FFF671D060417A9CF24E8B6B67ADB7 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EDE70F270CA83263EACCAF7A7456A3DB /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE7F6B22DDE3192E0442A82C559D5836 /* BeCloseTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + EB536E8BB72E5FFECE04064FBE3EC33A /* TextTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC1CAFFD4AC820A8A8142758CD813CB2 /* TextTableViewCell.swift */; }; + EB7847888EE120CB5CE1E2F8CD7ADBF5 /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BCF3A705209693019C7BB757150DC006 /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m */; }; + EBA8A552C8F299956670315F1388AB9A /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A1B50CD3FCE4EAB18498D1A2E13F542 /* DSL.swift */; }; + EBF6056154FEAECD254C8BEE69502518 /* _ObjC_HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67B74403F1DB0E06D2843B6A0BFAE5FA /* _ObjC_HeartbeatController.swift */; }; + EC1FDAC6152594C8BBA6CB7A8EB52C18 /* Pods-Tests-NativeMessageExampleUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E318DA7978616F50FA62B9D3A7B922F /* Pods-Tests-NativeMessageExampleUITests-dummy.m */; }; + EC6C0A2DBACC3870BC0AD71AAED9083F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + EC9BD6292019EC3657246F38466824EA /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = E09E2A0CFA94259396CB6CEB353D28D2 /* EndWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + EDBAEC0F6680404EA32E8EB8F70C6D59 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = 9065459FE6E3C25FF9EE9B03805F2C3D /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDE70F270CA83263EACCAF7A7456A3DB /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81D479CEF364200B9222C8322B37D601 /* BeCloseTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; EE06F00A3EA722ACC981264008993E72 /* SPUIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = E618051BCBE2BDF5EB953B3E37A09230 /* SPUIColor.swift */; }; - EE152A71C2D54BE49D91A205F0150357 /* FIRFirebaseUserAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = D03736E44507497FC9B090CBB6B354E3 /* FIRFirebaseUserAgent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE6AFC459EBDF61ADC42F2F85C74C4C8 /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29978296061A1207DEE8CAB87764F0DA /* NimbleXCTestHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - EE72C0C8695A5C364BD6637453741C93 /* IQTextView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F96E4D2386F493BE82DED195E2CF689 /* IQTextView-dummy.m */; }; + EE6AFC459EBDF61ADC42F2F85C74C4C8 /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 918C0AE49CDE63B115192CE0A1B0E0E8 /* NimbleXCTestHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + EEB31750FE18BDAFF8F6CD80263040E0 /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C11A750AE50BB969297173FD07551F4 /* FIRInstallationsLogger.m */; }; EEB6D96FE496D16E6302411C11CC683C /* SPCampaignType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 675870E9375216C86665B8B9D31444DE /* SPCampaignType.swift */; }; - EEE2B16D2B1AC0A6F2EA7F8A7D3662DE /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = EE54C9146230FA28D06FA1D85664BB37 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EF12B41FAE35E183CFB86382B7C01330 /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AD5CBFF2CC535A21DC6948EDCDBE89C /* GULKeychainStorage.m */; }; - EF5234B6FD72B5E3F81B28E23CE8CDB9 /* JSONTreeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4265AA8465B4B7BE72ED42FB5ECE3E61 /* JSONTreeView.swift */; }; - EF5437B0AE9D8DF464F3D9C66DFABD9B /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = FF7F0ED12041FA1C08C401A7D0DD29A1 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFA2DF354996B1F561E3545D1F5030F0 /* IQKeyboardReturnManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BE80F7781B3D638A7E69BC47FCE44F37 /* IQKeyboardReturnManager-dummy.m */; }; + EEC7DDA9737F128C33590CD13CF68722 /* FIRFirebaseUserAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = FDD88A5FBC35538903767E80E2DAA84B /* FIRFirebaseUserAgent.m */; }; + EEF0A512405F2180BBE84A7D65F96B59 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BC0DE89605B7D52422F12AD2D02F4C1 /* Storage.swift */; }; + EF5234B6FD72B5E3F81B28E23CE8CDB9 /* JSONTreeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30605FC513754B9EB9A34AB92CCFC7B3 /* JSONTreeView.swift */; }; EFA40ACBC4AF71A16657ADF0D423E39B /* UIApplicationExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA758438A6F939B8785F036B8FB7EC9A /* UIApplicationExtensions.swift */; }; + F08C2D33F2D70E808D869371DC7D569A /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = D789CAFE5EDBAEFFF324BF1BAAD5DC73 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; F095C241C849376EEDB9DAF437B9CA26 /* SPConsentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A26FB32526EE53AA8C0991531AC45DE /* SPConsentable.swift */; }; F1348BDC7EFAB15359DB4ED76761AEDB /* SPIDFAStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC0B7DB098A360C871AEEFC494EF2441 /* SPIDFAStatus.swift */; }; - F167310245A75F9C01FFCBFF9323CA86 /* UIScrollView+IQKeyboardManagerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = E58DF34CA22A58EAA384996DA0161FAB /* UIScrollView+IQKeyboardManagerExtension.swift */; }; - F1AC49BE6949796D43824CCE5776834D /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 219CC0CD56FC97926EFEFCDCCC9999F7 /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F1AE5CAED80CF3B97F60E3E65B6B716D /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3DE70D4B74186544DE35040F08B1F68 /* BeAKindOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - F1B87B7D33D09F571175D367346EE2CB /* IQKeyboardToolbar-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD568D6A51A5409CB41FA9C1F9A6146 /* IQKeyboardToolbar-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F1C44E72D1C0EB8CADE53B670DCEFF36 /* CwlCatchBadInstruction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50FB40779EF49E222850B94FF5E486A9 /* CwlCatchBadInstruction.swift */; }; + F17343383C92311ED4847172D7E2CF76 /* jest.config.json in Resources */ = {isa = PBXBuildFile; fileRef = F56C090F1C9366C37AB253AAB9FE1A05 /* jest.config.json */; }; + F1AC49BE6949796D43824CCE5776834D /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = B2FE4B691CB15849C8C7B4A67D90FC16 /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F1AE5CAED80CF3B97F60E3E65B6B716D /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5E09F27370758C63BA4CE1B82FC3813 /* BeAKindOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + F1C44E72D1C0EB8CADE53B670DCEFF36 /* CwlCatchBadInstruction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58F593C0F96BE561B1E740AEFF450B5E /* CwlCatchBadInstruction.swift */; }; F2666725C37FC154746D0EC33450CA7E /* SPJson.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFA2E0A79C45CF0AD19A3B7E3CAD26C4 /* SPJson.swift */; }; F2845D8D7092EC5E0BD1B938CF883723 /* SPPropertyName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F83F0546C6C0F7184FE189E8F4A06CF /* SPPropertyName.swift */; }; F2A03F53F4ACA4E47FFCBD9AC7C7C688 /* SharedCoreToNativeAdapters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9095E935D84E98CD0E8475F29BAA5986 /* SharedCoreToNativeAdapters.swift */; }; + F2B94912673CE64E9DEF529BEA2B3CD9 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 953C0D60558E3AB2BD15579B50459D6B /* PrivacyInfo.xcprivacy */; }; + F33C7DEED429F2541BB473C17C0FCAD0 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B090B90FCBE6B0059AD53C263D1927D /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3528EFD40F1848D11C05C35551620FC /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 34F7047E7670F741A663672BE90267D8 /* GULLogger.m */; }; F3582F2ED5949D90E87A0FE8B8AFD0D5 /* SPUIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = E618051BCBE2BDF5EB953B3E37A09230 /* SPUIColor.swift */; }; - F38D19B62343684DAB54E88CDAA6A0A1 /* Pods-Examples-NativeMessageExample-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BABD3D93658A6438AE39E7CA356B0EE /* Pods-Examples-NativeMessageExample-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F3D4BE1E2231FF2EA09AF6369ED0BA0F /* UITableView+IndexPaths.swift in Sources */ = {isa = PBXBuildFile; fileRef = F99A847226F1CB64296C8D40579E77BF /* UITableView+IndexPaths.swift */; }; - F4496011CFAF8A504EBB79F8057AC156 /* FIRInstallationsBackoffController.h in Headers */ = {isa = PBXBuildFile; fileRef = C0FDE3CA87B3E93E97F2DB41CA742521 /* FIRInstallationsBackoffController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F48509E659D3D05D692188A9ABF1676D /* WormholyMethodSwizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A1D82294C81ACF02E022ECA02DFE5FF /* WormholyMethodSwizzling.m */; }; - F4C56B12461364F3CC3E56413FE38ACB /* ThrowAssertion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EFDF09D136087E961C24BA4E9EE1CD8 /* ThrowAssertion.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - F4E59326A708E72CCDC663E47BB47C3F /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = FD17AB599D447FDD7701ECCA77D1AD28 /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F539AFA99FAC59495B95C7FE281AD28D /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3F02076DF398AB04994F86592D2A03B /* SuiteHooks.swift */; }; - F56997F464706EB916970ED735C49637 /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = A8539471500A9065B1DF8CED74E86479 /* FBLPromise.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F38D19B62343684DAB54E88CDAA6A0A1 /* Pods-Examples-NativeMessageExample-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E1950C06292EF70F37F928D0221C45BC /* Pods-Examples-NativeMessageExample-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F3CCDF1E298944B14509E7346D063A2B /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = CA6535141BCB8E8D4DB2324E57E4F9EC /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F467880427488569ED05FDFFC420457F /* GULNetworkInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BCA4F64161C9021E4F22D08E1E88F63 /* GULNetworkInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F48509E659D3D05D692188A9ABF1676D /* WormholyMethodSwizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 70F3E7DC5F6F33B6D6319849096FBAC8 /* WormholyMethodSwizzling.m */; }; + F4C56B12461364F3CC3E56413FE38ACB /* ThrowAssertion.swift in Sources */ = {isa = PBXBuildFile; fileRef = C93613CAA3DC19D9E0E096377AB7C5ED /* ThrowAssertion.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + F4E59326A708E72CCDC663E47BB47C3F /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = EA912589A26C4C8224E4E47248628B5E /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F4F479753EBB8694857BDB777876F70A /* SPCustomViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 11DDF4F1DF218CBFC359A60C30CF9EEA /* SPCustomViewController.xib */; }; + F50CBFE82E2131D6E0AD7EA4E1E18084 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; + F539AFA99FAC59495B95C7FE281AD28D /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9279BC8901C9D4808E6F89B206E0EA14 /* SuiteHooks.swift */; }; F56EED210FD48153B9D8D68EC83ACEF2 /* SPDeviceManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3C4FC7367786DA4ADD5D4613303527E /* SPDeviceManager.swift */; }; - F5B060DC00F8542330C38DB0BD0B9B6E /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D63F62472A8C43656BA08C00F303457 /* nanopb-dummy.m */; }; - F5CFE32D530DFE60BE45017056FA11B9 /* Pods-Examples-ObjC-ExampleApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 70206F4AE991E4A6C241291B45B51CDA /* Pods-Examples-ObjC-ExampleApp-dummy.m */; }; - F6CFAE4BBBB445780CFA3A49008BEE87 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 405145A208D170668343E2B587091B94 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F7242A1E4AE35B5F70E9BE38F6AF7E80 /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D1F27E8DDEE1C92CB890B2A34DA28DF /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F733F52ED7140EF527BA29BB112778B2 /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 9710C155F41476AE899A9061EAEEA7E2 /* FIRInstallationsIIDTokenStore.m */; }; - F80AA9508F6CA5F5910A49122387A9CF /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = AABE37F8C23C6D9E87B16B75F451798C /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F8934ADF3F480278DE2646CC7EDB5D75 /* IQKeyboardManagerSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ADBB2CD10893D2F7B56CAC45C2BC96A /* IQKeyboardManagerSwift-dummy.m */; }; - F8A7EC75FC5EF36ABBACA25059D83AD5 /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 87D5ABE9F3D08E0E9D3B6E428A17FA0B /* NMBExceptionCapture.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; - F8C793A2B097EC825C22A2ED89C372DE /* NMBStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = 29EAF25F21EE50C142118D7F65D0141E /* NMBStringify.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F8EC3648560D8E3BD7E39D35245C9D34 /* AsyncWorld.swift in Sources */ = {isa = PBXBuildFile; fileRef = 629C5CA2DE65A4802EEBB04934FE67CE /* AsyncWorld.swift */; }; - F91F7471AE909894CFDBD6F38AEF7DDB /* TextTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = D594C81A655ECF45EF32CF2373208F47 /* TextTableViewCell.xib */; }; - F96BD1B09F2B3DD721D3FEEE769AEB02 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 6950705DDFFFB2F3B1FE714BEF549C3C /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F9E2812AAB407B73AB59A302AB7EB84E /* Pods-Tests-NativeMessageExampleUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BE46900BF8CBA13050460771A8DD7DD /* Pods-Tests-NativeMessageExampleUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F5CFE32D530DFE60BE45017056FA11B9 /* Pods-Examples-ObjC-ExampleApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C88264884649EF7B51A7980BCD1AE39 /* Pods-Examples-ObjC-ExampleApp-dummy.m */; }; + F697137B44D7212E967E6558DC2A64E2 /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 48F2C1D3E230A35FF802D289A488BFA5 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F8A7EC75FC5EF36ABBACA25059D83AD5 /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 86A7C611C4CD9683D25B8560131AFD15 /* NMBExceptionCapture.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + F8C793A2B097EC825C22A2ED89C372DE /* NMBStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = F246135F6FE2FB42E2CA72F43F3C861E /* NMBStringify.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F8EC3648560D8E3BD7E39D35245C9D34 /* AsyncWorld.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55B41B068310EFBB9FE1665C5A225DA2 /* AsyncWorld.swift */; }; + F9DCC165BB2641C517B31F1D6D82D7B7 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 812C8DCA6BDD0EEF5AA1B957FE7F9639 /* FIRConfiguration.m */; }; + F9E2812AAB407B73AB59A302AB7EB84E /* Pods-Tests-NativeMessageExampleUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 12F67E88CF7BC55AF98D085113C07958 /* Pods-Tests-NativeMessageExampleUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; FA7118820F100AC565A14E507E7B4406 /* ConnectivityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F469EC0035C69528C810216676EAA16 /* ConnectivityManager.swift */; }; - FA82BD1CF8B95F4070FBFFCEF8E60F03 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = D9587A31540199F76B2B124FE2554006 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA8D94CDB19EE94CD8DAD462BDEDB721 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = C9A9B7E43BDAD2F718FFD17A863D0A84 /* XCTestSuite+QuickTestSuiteBuilder.m */; }; - FAE7CC1CB3AABF2AC26C509EDFA5B97F /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36F2B7CBA2ADF7578C1336DE88F9EDCA /* MatcherProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; + FA8D94CDB19EE94CD8DAD462BDEDB721 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = AF70F6C06F30ADCDB7F323D2D97C770A /* XCTestSuite+QuickTestSuiteBuilder.m */; }; + FAE7CC1CB3AABF2AC26C509EDFA5B97F /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8606FF0B324258DD7332EC917FB25EC8 /* MatcherProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; }; FB35BB51AB7FB38CF70B84F6F094C955 /* CampaignConsent.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB66F7B9C00367A78FF52612B556CDAC /* CampaignConsent.swift */; }; - FB3E1374F361FF70B3540653536BCD46 /* SPJSReceiver.js in Resources */ = {isa = PBXBuildFile; fileRef = D58978C5A6A1FD143B441530BC082B6F /* SPJSReceiver.js */; }; - FC0504C217ED8774842F0B4F3B02FBA0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = FCAF9049188EC86589F780B62B42DDE9 /* PrivacyInfo.xcprivacy */; }; + FB5B53BA45CDC86919490DD2238EA23C /* Heartbeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFAAC5718A6E521F52D0B41C1066DA89 /* Heartbeat.swift */; }; + FB8CAB8F0A3C84C4EB426B8C768158CF /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 831B1F8A85AA79580C430DB7C8479498 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC04537BC61D6EDE3B10CDD85E4FC570 /* SPCCPAPartnersViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F69850BE0942AAF7569973E18927CB8F /* SPCCPAPartnersViewController.xib */; }; FC11E0F5E60FF359B60BB989E83F580A /* NSObjectExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = B449CC35881DF31AE43C3912C1B54623 /* NSObjectExtensions.swift */; }; FC9F902E7DA46348CA6E39311C8BD585 /* SPDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 170673B9177B3BF49D7BCD407632374B /* SPDelegate.swift */; }; - FD3657B5574A385B80E5BAB33D812F82 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CAD3B3265A52A20F40CA87019535A969 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCB8C656EC65008C036C2F79B6EB8520 /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C335C633B66ABF1FB3447451876F0D3C /* FIRInstallationsStoredItem.m */; }; + FCF24605BDA07DC9A4F7D9E7049DB526 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = C586AC8C685D926BFA5DC2B3C023581D /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; FD6157D85A9A7AB220A711E00E4C108D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */; }; - FDAE62A1B65E201A53099EC8B5E626FB /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 008E3704D3829052945409F16538B160 /* FBLPromise+Recover.m */; }; - FDEF461D17CE7383420279D95B62A3EB /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = D0CF9E05F7A901F3CF7A759DA305AB77 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD81AFEF29D89DFC3E0A39025071AECC /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = B2892E1B41F4DD6FA9FCB33EA64F0CC4 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Public, ); }; }; FE383780F9AC990F78B3916E9FF706BE /* LongButtonViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 842A76598292AC07650477A7975DFA3C /* LongButtonViewCell.swift */; }; - FE8D885E42EE579E556E74176622C8D0 /* ActionableTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BAC9703CCCA66DA53EEA0A439C70ABA9 /* ActionableTableViewCell.xib */; }; - FEE664A26F31F98A005C19D56F8813FE /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = 166CE685B045446FB8D256E1CCB7BB31 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FFF26CFE6F60E62B5E9A3DB35B80CD7A /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = E9434B13D13532D911BB386151B42943 /* FIROptions.m */; }; - FFF4E1366903343DFE47FC534F9B5BD1 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = B5139508753F2B17003FEED9C0AF3641 /* PrivacyInfo.xcprivacy */; }; + FEEBFD4A6F52B328F11C459B8F4D9B0B /* CwlCatchException.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ED47E86C7D30719C58666B0B3445BA7 /* CwlCatchException.m */; }; + FEF536F5ECB848FB5F11F35078BC8D1F /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8911D20B2CAA8F3A5BD8EFC39DABFF36 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FFBAB10D17FA513ECB41BEFBA117A129 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = D4ADF22BEE5D8D30A026F009718DEED1 /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Public, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 00B4DC3A6714595588257A63DE9E1CF6 /* PBXContainerItemProxy */ = { + 007E6A87402CCCC56D1E23B7F5ABAA43 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; - remoteInfo = CwlMachBadInstructionHandler; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; }; - 0119E87051C67CEB2F1B19BBD2FBA79B /* PBXContainerItemProxy */ = { + 01BFB45BA0BE19605402BAA1B80EB983 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - 0220DF57C33057051376936CCAA42B33 /* PBXContainerItemProxy */ = { + 04C7151ED74F6490C70BA3827D464E0E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; - remoteInfo = "Quick-iOS"; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; }; - 025A0C93317103FE52F5D92C9820336C /* PBXContainerItemProxy */ = { + 05130544C5F9BD064A33161A686F4F18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - 026D88F41B3B306D9B5F6D7DD72C74FB /* PBXContainerItemProxy */ = { + 09748AF18815F9B8608DD3F947610602 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 12890DE3ABBC2CA295E108358D85EE69; - remoteInfo = IQTextView; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 0367898ECB58FF05ED6C602215EEFAF5 /* PBXContainerItemProxy */ = { + 0AAFC094178FDBD6C3A5F5923CE1EC29 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7C5613175BBC4BF67E36DB4FBEBC01D0; - remoteInfo = "IQKeyboardToolbarManager-IQKeyboardToolbarManager"; + remoteGlobalIDString = 2949783F7EDB27AD4666B5427B63DC79; + remoteInfo = "FirebaseCoreInternal-FirebaseCoreInternal_Privacy"; }; - 04704E5ED8B7A67DF7468320D37C8A87 /* PBXContainerItemProxy */ = { + 0C9AF7FC282F183C52138D63A226214F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 28BE3303E3F4ECC2BDF79B1D886D2E74; + remoteInfo = "Quick-tvOS"; }; - 05A9514F2182A5BC4ADFCA9DCEFFE3EF /* PBXContainerItemProxy */ = { + 0D4153CF84E7CB96558D6504D61164B9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 93CEC7FFB57A497DE49471C5D9517C13; - remoteInfo = "Wormholy-Wormholy"; + remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; + remoteInfo = "Quick-iOS"; }; - 06F4990EDDCB3BE98DF4C29889233EFA /* PBXContainerItemProxy */ = { + 0DBF77282FE95A23BDA76F6DFA711C61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; - remoteInfo = CwlPreconditionTesting; + remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; + remoteInfo = SwiftLint; }; - 08E99292431752E0706F55811B1013A3 /* PBXContainerItemProxy */ = { + 10C50C2A50737E8C2AD160736190B32C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; - remoteInfo = CwlCatchExceptionSupport; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 0DF0911F666CB060D09A4256C32DCCAF /* PBXContainerItemProxy */ = { + 123958AB32016BFC536EAE29A76F24BF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; + remoteInfo = FirebaseCoreInternal; }; - 0E809A9680AD4276A1BC32AC3BDF96C4 /* PBXContainerItemProxy */ = { + 1245E52BD8692550629711669F7318D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; - remoteInfo = "Nimble-iOS"; + remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; + remoteInfo = CwlCatchExceptionSupport; }; - 0EE636C2FA4D05A98EACBC984CEC807C /* PBXContainerItemProxy */ = { + 1619FDBD16FF68158D1F3A0B8FCAFE12 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5D0718052BFEE502C9D9BEC44BDCFA76; - remoteInfo = "ConsentViewController-tvOS-ConsentViewController"; + remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; + remoteInfo = CwlMachBadInstructionHandler; }; - 0FA0751D6F34E25C3426E3F37D4D3898 /* PBXContainerItemProxy */ = { + 17569719D15993FC97BBBE4BE83DC1C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - 10FAB31BD8BEF24DC13573D2C64421A4 /* PBXContainerItemProxy */ = { + 1B323B20290F01D3502CCA3EBA354B4A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; }; - 11C9C25E0473553D7CFE0450F4D214A7 /* PBXContainerItemProxy */ = { + 1D08E71AF1EF081694ADF5AB8221F708 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; - remoteInfo = CwlCatchExceptionSupport; + remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; + remoteInfo = "Quick-iOS"; }; - 1324369D380C47FFB65D4F4BB693D76E /* PBXContainerItemProxy */ = { + 1D869CFA79821ADE0A894083ACF02954 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - 151397321A1E1D2A743600101E76A4A5 /* PBXContainerItemProxy */ = { + 21D5DFF34BC9420D29B95704DB9FACCF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; - remoteInfo = SwiftLint; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; }; - 16A2BAB3962A485FF3CFF8158062D735 /* PBXContainerItemProxy */ = { + 2300E4557FDF2309094C827CFA390E3C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; - remoteInfo = Wormholy; + remoteGlobalIDString = 5D0718052BFEE502C9D9BEC44BDCFA76; + remoteInfo = "ConsentViewController-tvOS-ConsentViewController"; }; - 16DB892364C220928AF8104A3ADD937D /* PBXContainerItemProxy */ = { + 235291B5D649184B980DB7A013F7402B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; - remoteInfo = FirebaseCoreInternal; + remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; + remoteInfo = Wormholy; }; - 17B4F131F8F82FD8B18852BBBC568276 /* PBXContainerItemProxy */ = { + 239A0E993F39C0D28AFF181F640FE8C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; - remoteInfo = SwiftLint; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; }; - 1850A22DDD7FE824B243B41E5E39B755 /* PBXContainerItemProxy */ = { + 26FE227A23A6EBD0C6923AC571097243 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; - remoteInfo = CwlCatchException; + remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; + remoteInfo = Wormholy; }; - 1999F1AC0FE9027C893B411CF6093AD5 /* PBXContainerItemProxy */ = { + 27ED2A06D775107C4D3D63AAF8324032 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; - remoteInfo = "Nimble-iOS"; + remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; + remoteInfo = "Quick-iOS"; }; - 1AC8DA3C015CB1B5B4838349305C3FB0 /* PBXContainerItemProxy */ = { + 2C194C285CF9C44CA81BB06E5546C38E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0010F36F9D103AAE441EA8E1058A19BC; - remoteInfo = "SPMobileCore-tvOS"; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - 1AD18141ADF81D95EB46C85C0A2A92EC /* PBXContainerItemProxy */ = { + 2E8CCCD9771CCA2D47A0F75B8DFE9B86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 1C52FF37C02151568BEB3D762969249B /* PBXContainerItemProxy */ = { + 305B38AC1BFA26E13D999EADA266B623 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 020993F16DA5986DACE118349EBCE9E5; - remoteInfo = IQKeyboardToolbarManager; + remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; + remoteInfo = CwlMachBadInstructionHandler; }; - 20734BD6C49559CF00C22388E6B079FF /* PBXContainerItemProxy */ = { + 35D2D425C4FF8F8F634531A51CDE7FA2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 20789E379F00A7BF491778930A79AFA6 /* PBXContainerItemProxy */ = { + 35D533DBFD39B0EE9B42B56E42C01168 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3EB14444A17F9D4F1F697F7C1FF32245; - remoteInfo = "FirebaseInstallations-FirebaseInstallations_Privacy"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 24A7498E4A084043772CD2BE734E1D92 /* PBXContainerItemProxy */ = { + 3606DE3EEBB3944232E5B744AFA5BE97 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; - remoteInfo = CwlCatchException; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; }; - 24CDD02B9DA1D0CFE90FB2C4C63CEAD9 /* PBXContainerItemProxy */ = { + 378D17DA209650955A68D7E3E92B57CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = 2450D89327C2F3947256DE8768B4B9B9; + remoteInfo = JSONView; }; - 25220B2488B02EE04D97088C750E5366 /* PBXContainerItemProxy */ = { + 382B5260D6BCFDCAFDB4C3C773797AC7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; remoteInfo = CwlMachBadInstructionHandler; }; - 256B08D99AFD9ADCE4C77EC5FA05FBFA /* PBXContainerItemProxy */ = { + 3A45E1FBF7C55847FD740327549062D7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; - remoteInfo = Wormholy; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 25C747BE8A176755ECE30E6ED64B042B /* PBXContainerItemProxy */ = { + 3A869A5A6A75B9C341436D0392C5E771 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; + remoteInfo = FirebaseCoreInternal; }; - 28EC4B09E9E2EB7A9C9814A38077225D /* PBXContainerItemProxy */ = { + 3BF16115EB452907502A54A3B880BD4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; remoteInfo = CwlCatchExceptionSupport; }; - 292446881DEBB9DCD4AEBDAF46378DA2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 020993F16DA5986DACE118349EBCE9E5; - remoteInfo = IQKeyboardToolbarManager; - }; - 2AB5CA8C14D0352998B51B4118DBC93C /* PBXContainerItemProxy */ = { + 3DB213E3E440CAB92589D2BEB64460A4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; - remoteInfo = "Quick-iOS"; + remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; + remoteInfo = CwlMachBadInstructionHandler; }; - 2B5E892ACBA3165FEABFF558033B68D7 /* PBXContainerItemProxy */ = { + 40435CAA34938397C32104D3787D72B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 88810798DA63A2F6611B0970EA276DEC; - remoteInfo = "IQKeyboardReturnManager-IQKeyboardReturnManager"; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 2BC92B7E618DCB3D59D15D8EFF836760 /* PBXContainerItemProxy */ = { + 4095540006CA9BF19B76AF49AB044A7D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; - remoteInfo = CwlCatchExceptionSupport; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; }; - 2BE65A7908A0B6180A8AB38FA9617BB6 /* PBXContainerItemProxy */ = { + 410FD30CD342DEFD784A07B69772EEDA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; - remoteInfo = "Quick-iOS"; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - 2EA3E2715FA20A39C8C4C6B998BEF890 /* PBXContainerItemProxy */ = { + 44C81D970B93DABED589F35FB9ABCC69 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; remoteInfo = FirebaseCoreInternal; }; - 2F06C6F635C43E3BA483D64B13690E3F /* PBXContainerItemProxy */ = { + 47D1F7B59B0CD8F91741A14F61DE89C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = A897D2D55F6D87795224F846F8ED3A36; + remoteInfo = "Nimble-tvOS"; }; - 3016450C3E34CD5FC448043985879A6A /* PBXContainerItemProxy */ = { + 49E9682C14E5A352DC101C89E9531C3C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4FE17428FD0E607723A44F17231B7A1; - remoteInfo = IQKeyboardToolbar; + remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; + remoteInfo = "Nimble-iOS"; }; - 32555D83907864D327622D2FE8007A3E /* PBXContainerItemProxy */ = { + 4B17C77738547889CF968B105D6847AF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; - remoteInfo = CwlMachBadInstructionHandler; + remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; + remoteInfo = FirebaseCoreInternal; }; - 354471FAC42E5E1A5B4C6141E7E02B37 /* PBXContainerItemProxy */ = { + 507759594CF1D4789CE24DEAD9343F74 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4502C7427440BEB17A50C0BF6E638A85; - remoteInfo = "IQTextInputViewNotification-IQTextInputViewNotification"; + remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; + remoteInfo = "Quick-iOS"; }; - 3655FD46BA6AD37F8E66FED0F6472063 /* PBXContainerItemProxy */ = { + 58337031DA75305C6E98E63B7CA713D9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; }; - 384B9DA761ACF885747AFA8B522B3DB4 /* PBXContainerItemProxy */ = { + 59CA34A0863AC3F25DA205670C72776C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; - remoteInfo = CwlMachBadInstructionHandler; + remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; + remoteInfo = CwlCatchExceptionSupport; }; - 3857853DE2B27221542735EE51A8544A /* PBXContainerItemProxy */ = { + 5ADD3D55E0DCF4BEBB00A6DE67785D5B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; + remoteInfo = SwiftLint; }; - 39AB65FA9D1213F769B4A37EC2DF285C /* PBXContainerItemProxy */ = { + 5AEEBA82C00DACD3E3A4F43841531869 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2450D89327C2F3947256DE8768B4B9B9; - remoteInfo = JSONView; + remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; + remoteInfo = CwlCatchExceptionSupport; }; - 3BAD20ECC8B5877DE171BFAD6A053A4E /* PBXContainerItemProxy */ = { + 5B2CFABDDCE842522BAAE6E7BE4691DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; - remoteInfo = CwlPosixPreconditionTesting; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; }; - 3EF6386C03BC285F92D970959534872E /* PBXContainerItemProxy */ = { + 5D84C8B90E1DE8215C141A7E4C650B44 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; remoteInfo = "SPMobileCore-iOS"; }; - 4148B3DC7F84A7D245CADBD8252F8298 /* PBXContainerItemProxy */ = { + 5DE291C4BA055D11589839F0EB814CFE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; }; - 41BA2E3A22120A872EF92AD1AF6AC000 /* PBXContainerItemProxy */ = { + 5DE686AC4E2024068AF038779605D2CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; - remoteInfo = SwiftLint; + remoteGlobalIDString = 94DAD332BFFC672BBE92726504A716F8; + remoteInfo = "ConsentViewController-tvOS"; }; - 4204CFA1FE861EFADF04EEF8881C74A6 /* PBXContainerItemProxy */ = { + 60DB33E604F4C91DD4B0528EE7727592 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - 4286DA4C58B967146C51A84B2BEEC397 /* PBXContainerItemProxy */ = { + 60EB1C4660C772FD2422DC1CC1895A83 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; + remoteInfo = "Quick-iOS"; }; - 46BE2C65B9C2025D100C022BED685CE2 /* PBXContainerItemProxy */ = { + 6195A533611D813EE75A3C3EFE0E03DF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A897D2D55F6D87795224F846F8ED3A36; - remoteInfo = "Nimble-tvOS"; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; }; - 47460FA62A18E0AC297C0927787DC9C9 /* PBXContainerItemProxy */ = { + 67555FAEC83DB63CD732D6D01626AD00 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; - remoteInfo = CwlMachBadInstructionHandler; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - 4B5BFE7C60236F4C21D6822C696CFB57 /* PBXContainerItemProxy */ = { + 6A5D6AA00D4797CC5DB06334F7241E3A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; - remoteInfo = CwlCatchExceptionSupport; + remoteGlobalIDString = 3EB14444A17F9D4F1F697F7C1FF32245; + remoteInfo = "FirebaseInstallations-FirebaseInstallations_Privacy"; }; - 4CDCBBE7D6C72CF7EDC0CA1B01156E56 /* PBXContainerItemProxy */ = { + 6C2DFE7EACD8B25557D0BEC7046109E4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; - remoteInfo = CwlCatchExceptionSupport; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; }; - 50A8E938347BF128AEB00E9A27D8D7B3 /* PBXContainerItemProxy */ = { + 6DEC35EFF04012B4D880AC1CB82C7E0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; + remoteInfo = "Nimble-iOS"; }; - 525C6E37FC0D21CD2C7E8FFAFF158083 /* PBXContainerItemProxy */ = { + 6DED0B3175E567E4C815C960E4CB763D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; remoteInfo = "SPMobileCore-iOS"; }; - 52F638F1295648F17820014C77803ABB /* PBXContainerItemProxy */ = { + 6F18C7F62E9C6AB4D1ECDB4301DDCD78 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; - remoteInfo = CwlPreconditionTesting; + remoteGlobalIDString = 55522A91938FF505CFEBEAD2DD85AE2D; + remoteInfo = "nanopb-nanopb_Privacy"; }; - 53BE2F0F3CCF47DCE6E06F5FA3D0E1EA /* PBXContainerItemProxy */ = { + 721C944C1CD90436982ECF05A298EEAF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; - remoteInfo = CwlCatchExceptionSupport; + remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; + remoteInfo = "Nimble-iOS"; }; - 59CCB9E693BB2505E26AC6ADAF09A6DB /* PBXContainerItemProxy */ = { + 730B4DD1C4D4E562DB1571AAD30154EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; - remoteInfo = IQKeyboardCore; + remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; + remoteInfo = "Quick-iOS"; }; - 5B10C2A8DD5F0F2DA94D92AFCC4FA3AE /* PBXContainerItemProxy */ = { + 73126D00C8E6ADBFE89B04B16921EB47 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; - 5C6E82CCB705BC58971034CFF1B8FDE4 /* PBXContainerItemProxy */ = { + 7357B6A4314FB14CA6993D9AE117CA42 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0010F36F9D103AAE441EA8E1058A19BC; - remoteInfo = "SPMobileCore-tvOS"; + remoteGlobalIDString = 93CEC7FFB57A497DE49471C5D9517C13; + remoteInfo = "Wormholy-Wormholy"; }; - 5C9A4EFCCCE749427AC6E2C91C7E8DEC /* PBXContainerItemProxy */ = { + 747886AB42ABD54CB313344191C7DE79 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; - remoteInfo = CwlCatchException; + remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; + remoteInfo = CwlCatchExceptionSupport; }; - 5EFE1BFB885B7168B00CA5A572BE3959 /* PBXContainerItemProxy */ = { + 77BA4C1B21A9D2D8190679C14E13014F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; - remoteInfo = "Nimble-iOS"; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; }; - 624D91C6260CD9651380487E54ED619F /* PBXContainerItemProxy */ = { + 77F936B34CE56939A51DA98AB8630397 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B490E7485944099E16C9CBD79119D1D4; - remoteInfo = IQKeyboardManagerSwift; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; - 646963F2DBA5B96C434C8CD7B24A1640 /* PBXContainerItemProxy */ = { + 78E761A2989B857D3DB596C6E1BE72AB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; + remoteInfo = CwlPreconditionTesting; }; - 6697F15A7A9CA6746E47DC803F8DF689 /* PBXContainerItemProxy */ = { + 7A818A8BFD47167579A2A7DD07803093 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; - remoteInfo = CwlPosixPreconditionTesting; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - 6790E02FC3FC344A8EBB8B66132713DE /* PBXContainerItemProxy */ = { + 7ADF269A8F7FB18851AF55D83E03B62D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4FE17428FD0E607723A44F17231B7A1; - remoteInfo = IQKeyboardToolbar; + remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; + remoteInfo = Wormholy; }; - 6A0F25B1AD4263FEC082DAAEAD369943 /* PBXContainerItemProxy */ = { + 7BFFF6508431388CC9A5645678BBCB21 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; }; - 6AD4055A450FFA7C0F2F4CB788F179E6 /* PBXContainerItemProxy */ = { + 7CEC9542590CB0232BC7FAB1104B5351 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; remoteInfo = "SPMobileCore-iOS"; }; - 6CEF25C4587A5162EF65C3E6DCC23541 /* PBXContainerItemProxy */ = { + 7E55531353C8C6F700BB1E5551BBD9C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; - remoteInfo = Wormholy; + remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; + remoteInfo = SwiftLint; }; - 6D088541F9783628EFE31C7CDC4E3441 /* PBXContainerItemProxy */ = { + 7E97E78AC09E12552E2C1C64CEAF9186 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EEE261386011CDF271BE289F73FF5959; - remoteInfo = "IQKeyboardCore-IQKeyboardCore"; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - 707E99840BA323B12A33818DB068B9EB /* PBXContainerItemProxy */ = { + 7FB8A17E3AAD9749AF0A50CEDF9EB6FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; remoteInfo = "ConsentViewController-iOS"; }; - 7081AF037204ADAF56BF7BB5EC850D4F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; - remoteInfo = "Nimble-iOS"; - }; - 720C6623FC6291C2B0B35CB40E6D64A2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 733ACDB862097AD06C660176DDEA8A44 /* PBXContainerItemProxy */ = { + 7FE8A57722B9E0001C781AB4682DB2BD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; remoteInfo = "ConsentViewController-iOS"; }; - 742920A449B5CE6B1AA135777E1C61A3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; - remoteInfo = CwlCatchException; - }; - 74BD9B859C1431673A91CBA9751080C1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 770BE3374263C9EE0E3080C517F0589F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5FF1A58DEEC5DB749FCD6C120B97CC82; - remoteInfo = "GoogleUtilities-GoogleUtilities_Privacy"; - }; - 77451331D464318CB13AD370527555BE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 77B280E6B1664E4AA79FEE84CD9CB53E /* PBXContainerItemProxy */ = { + 8318877BD061F92FDB6765937D545086 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; - remoteInfo = "Nimble-iOS"; + remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; + remoteInfo = CwlPreconditionTesting; }; - 7A76B68FCF0DF209241D59A1781494C3 /* PBXContainerItemProxy */ = { + 848C3F63B6ACF097B06FA4A2E9DC4AA9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A26E6FD851C20D652B2755C1464A9990; - remoteInfo = IQKeyboardNotification; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - 7BC9C0CD21C2C65A3620FD4F39307250 /* PBXContainerItemProxy */ = { + 85311B39D7F039CE8D39B94C7088FC3B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; + remoteGlobalIDString = 0010F36F9D103AAE441EA8E1058A19BC; + remoteInfo = "SPMobileCore-tvOS"; }; - 7D9C2EA1E0342EFF8B972FAAEF84830F /* PBXContainerItemProxy */ = { + 856A1E2CB8EEDC9957C093B499A0AAD8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 7ECDB462CC50846ADD2F2FA4CDA95ACC /* PBXContainerItemProxy */ = { + 872D502CFCC2EFC881800692BEDDE046 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; - remoteInfo = SwiftLint; + remoteGlobalIDString = 0010F36F9D103AAE441EA8E1058A19BC; + remoteInfo = "SPMobileCore-tvOS"; }; - 7FC05F3F158C9DCC8F9BA1F0286154EA /* PBXContainerItemProxy */ = { + 88376206A20AEC89EF020D49BD88CD5A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F9B2C41D8F3FCEB2256091CF2667D600; - remoteInfo = "ConsentViewController-iOS-ConsentViewController"; + remoteGlobalIDString = 1001C16510D946B47CFF8B19DBC0B787; + remoteInfo = "FirebaseCore-FirebaseCore_Privacy"; }; - 801175A2ED0423C850F0DCEDB9A3306E /* PBXContainerItemProxy */ = { + 897EACF2050DF3BA4614E4F4A7B81F06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; remoteInfo = "ConsentViewController-iOS"; }; - 83744F768F6F395B89A6E85F050B2BB1 /* PBXContainerItemProxy */ = { + 8B19E21DF1DDC7FA7AE91B39F5F69C28 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; remoteInfo = CwlPreconditionTesting; }; - 8391B4915894DAAB8E7ABD584E911878 /* PBXContainerItemProxy */ = { + 8D03D160BDEE04536E99120FFAD07DE1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; - remoteInfo = CwlPreconditionTesting; + remoteGlobalIDString = 94DAD332BFFC672BBE92726504A716F8; + remoteInfo = "ConsentViewController-tvOS"; }; - 84B125CA7BA6D4978D6B3AF2DF387669 /* PBXContainerItemProxy */ = { + 8ED2F8B1580C22E1AEFFA8F165B7A478 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; + remoteInfo = CwlCatchExceptionSupport; }; - 8508BDC0E41FC1A2CF3F983079225396 /* PBXContainerItemProxy */ = { + 961B2F0B67DE3E4DFF4C7C595F9F97BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0981F89DB5DA3FFCFFEBDE1F56287054; - remoteInfo = IQKeyboardReturnManager; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - 860A9B477E38B5BF941E9645732C0753 /* PBXContainerItemProxy */ = { + 9620038B62684D4B7E4A075A3F200AA2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; - remoteInfo = CwlCatchException; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - 8903CF0BDB425F8FF2C1E6659922EA4B /* PBXContainerItemProxy */ = { + 965F6AAA4A4853617CA2C221B2812F01 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; - remoteInfo = CwlCatchException; + remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; + remoteInfo = Wormholy; }; - 8C1319ED61E95F9E9B639631AB2D9500 /* PBXContainerItemProxy */ = { + 966339EB0E53DBFE4127071BE1D51F73 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; + remoteInfo = CwlPreconditionTesting; }; - 8D124951CF81FD75BEC49D5C024DAF5D /* PBXContainerItemProxy */ = { + 9772DEF83B90F8C62DDC5573F16E4992 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; - remoteInfo = "Quick-iOS"; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; }; - 8DCC7DF4FDA0EECF480C21934FE7203C /* PBXContainerItemProxy */ = { + 992CB0882243C32EE36F94E843B83F7F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 982A68D37F5DCBC1FC1FDC0BB2F0EB8E; - remoteInfo = "IQKeyboardManagerSwift-IQKeyboardManagerSwift"; + remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; + remoteInfo = SwiftLint; }; - 93EE33E644CD4DCB50D06ED0F32CDC00 /* PBXContainerItemProxy */ = { + 9AA4B9E7211028DD1657BE0B33E87D29 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - 948A35EA8A8BDB7E1B5821B28CFF81CA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; - remoteInfo = CwlPosixPreconditionTesting; - }; - 95C817AF29EAB0D639DF8A6EBE7533E4 /* PBXContainerItemProxy */ = { + 9B3DEB2DE16925F2F513BF1A11934357 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; remoteInfo = "SPMobileCore-iOS"; }; - 966427EE9DD062D14EE8296DE0B571D5 /* PBXContainerItemProxy */ = { + 9BAD9D61EECF57B1471E185E9E8D92C7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - 9BD1F41BD49D28F8EF8CB231E50AC9D0 /* PBXContainerItemProxy */ = { + 9CE21AC630A5986127F9161F6E4DFB2A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 28BE3303E3F4ECC2BDF79B1D886D2E74; - remoteInfo = "Quick-tvOS"; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; }; - 9C0A2D292670C9BDF8EFFBAB0235B144 /* PBXContainerItemProxy */ = { + A2701990215896BE8562786496CE4160 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - 9C2E24C6B93BA69E5378E33134F15FF4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; - }; - 9D522ADD1B7AEEC25ADFD1532B8510D3 /* PBXContainerItemProxy */ = { + A2A010D51AC9A1338B24BE9BC64DD096 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - 9D831050C3F0954F7D626EA88A1D2FC4 /* PBXContainerItemProxy */ = { + A2BF2D70520F9CEC98B0267CA1035B10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; remoteInfo = CwlMachBadInstructionHandler; }; - 9EF159B1F1FBF554B75D427B2CE3CBE4 /* PBXContainerItemProxy */ = { + A3BA4E7884A5EB36B2B21428CB6CC18D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; }; - A0CF2C3BA3DE7EE292E3BC119F9E53EB /* PBXContainerItemProxy */ = { + A3C27B939CCFEE079EDEDAD66FE09B05 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 283C1F2EA88CD4413165801A6748A48E; - remoteInfo = IQTextInputViewNotification; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; }; - A11A3A6F580C2A051D5AF85750A39877 /* PBXContainerItemProxy */ = { + AC5BC632FB0B9A54FF92CFD58F6BE7C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; - remoteInfo = CwlCatchException; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - A186CEFA6B63586AB867C7E2CEFD280A /* PBXContainerItemProxy */ = { + B0235C1FD5409A7CED5F4A374D9802AD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; - remoteInfo = CwlMachBadInstructionHandler; + remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; + remoteInfo = "Quick-iOS"; }; - A2052E7244E03F37D031FDC869D22437 /* PBXContainerItemProxy */ = { + B5357DE0148E32E965237CE64D043AAC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; }; - A53943D9A778B88157288A9DD85B9C39 /* PBXContainerItemProxy */ = { + B7D5734A55000A92352A24F12DCB6F17 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; + remoteInfo = "SPMobileCore-iOS"; }; - A66ADA97829817BAB40953CE434BC02F /* PBXContainerItemProxy */ = { + BA16AD84592C9CACE7217C9E585A3603 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; - remoteInfo = CwlPreconditionTesting; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; - A7F8F36239C540B80A46DB887E3B753C /* PBXContainerItemProxy */ = { + BAD887B002BD6FD591EDECDB3C8763F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; - remoteInfo = "Quick-iOS"; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; }; - A8EF7497D8CD728D36E2B3AD6BC6A3D7 /* PBXContainerItemProxy */ = { + BBE07FFE16A78CB116DF2B87B67F2D13 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; + remoteInfo = CwlPreconditionTesting; }; - AE9BC9F8B59929D49E5A5C29E8179ABE /* PBXContainerItemProxy */ = { + BD6BB74BDFAAAFCBCDAD9C4876A10A27 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; - remoteInfo = CwlCatchException; + remoteGlobalIDString = F9B2C41D8F3FCEB2256091CF2667D600; + remoteInfo = "ConsentViewController-iOS-ConsentViewController"; }; - B0ABFE468FD54C51D77150245E3701E3 /* PBXContainerItemProxy */ = { + BDB159DE884D0B28C459286D7F081748 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; remoteInfo = "Nimble-iOS"; }; - B435C609D4DD9E1A969FBBCE0D3600B3 /* PBXContainerItemProxy */ = { + BF59DB8BCD637EC7591CCCC13FECF36A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; + remoteInfo = CwlMachBadInstructionHandler; }; - B467AE3A19829EC14359A251AF18AF64 /* PBXContainerItemProxy */ = { + C0BE41E8C8541E6F4615A82D9EF329EE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - B52146CF9A9C90B03FEDEE4900F5B597 /* PBXContainerItemProxy */ = { + C11795AEEC49A3D661B05EC8161B39DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; - remoteInfo = Wormholy; - }; - B533DBF06034A0AFDD42CC8E76973033 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = 1BFBEDBF7E03729D43C96530EE190825; + remoteInfo = "PromisesObjC-FBLPromises_Privacy"; }; - B7E7CC81BEB886C867DCA4669C29730A /* PBXContainerItemProxy */ = { + C15418B25F6486CC6002CD61C8502AED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; remoteInfo = FirebaseInstallations; }; - B89C9B03AFFE36E69590C5B538656597 /* PBXContainerItemProxy */ = { + C2C4B596E87CA9B166E8ED1510FBCC93 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; + remoteInfo = "Nimble-iOS"; }; - B992746E7B787DCF3A3360A8759F91BE /* PBXContainerItemProxy */ = { + C54C071DDA044DA72A6D30F8EED57083 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 55522A91938FF505CFEBEAD2DD85AE2D; - remoteInfo = "nanopb-nanopb_Privacy"; + remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; + remoteInfo = CwlPreconditionTesting; }; - BA52EAD9B3333D6A057A8CEBCE7C1BCF /* PBXContainerItemProxy */ = { + C67E516FEC05BC1E0A6EF93776CAB722 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; - remoteInfo = SwiftLint; + remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; + remoteInfo = Wormholy; }; - BCD76662CC0AA357552F7C748F0057E0 /* PBXContainerItemProxy */ = { + C72BF8FE598EEBA7EA250AB6EBE9F8AB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; - remoteInfo = CwlPosixPreconditionTesting; + remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; + remoteInfo = CwlCatchException; }; - BD5912F6603A73CE7022FA12390F4096 /* PBXContainerItemProxy */ = { + CA5BAE163466C36B5FE4F8DF42F32C86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 308B5C440C446909122081D367A27A8F; - remoteInfo = CwlCatchException; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; }; - BE227B09BD72F08A9493B840589F52DC /* PBXContainerItemProxy */ = { + CA7D33868E3E38C5FFDA20F842AE873F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; - remoteInfo = CwlMachBadInstructionHandler; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - BF1F10B98849207EFA42A3D79359B46D /* PBXContainerItemProxy */ = { + CEBF42CA44FE6D1B2F641403DC8C8B3F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; - remoteInfo = "Quick-iOS"; + remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; + remoteInfo = CwlCatchExceptionSupport; }; - C0C2D0B8FFA6CB98EA96B87A6EBF7ADB /* PBXContainerItemProxy */ = { + CFDBAF33988ED540243453A5F30A0536 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BFBEDBF7E03729D43C96530EE190825; - remoteInfo = "PromisesObjC-FBLPromises_Privacy"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - C19C73BE61DB2F13A5C20069F180CF42 /* PBXContainerItemProxy */ = { + D2F6DFD882AD38DA54C81DFC84701EEA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; + remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; + remoteInfo = CwlPreconditionTesting; }; - C2CA7B3DB095F2EB3994928872729DDC /* PBXContainerItemProxy */ = { + D3094D464F2808008E6819625F4D5B70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; - remoteInfo = "Nimble-iOS"; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - C4F099590FB3C860EA250717AD117CF3 /* PBXContainerItemProxy */ = { + D49BCD2ACFEBE59F9680812071EAF08A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; - remoteInfo = CwlCatchExceptionSupport; + remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; + remoteInfo = "Nimble-iOS"; }; - C534401E16F13D0035ABC76DBDB85CA8 /* PBXContainerItemProxy */ = { + D4A570203B640152D4426F3D56FD6F18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; remoteInfo = CwlPreconditionTesting; }; - C5FDE0C3DF2D8ECEBDA7BF7C9EBDCC20 /* PBXContainerItemProxy */ = { + DA98994E87A07764C4A5AE7A49F026AD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - C7E3975C96A9D9FF24DFEA2F113B4E11 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; - }; - C82BCEAF6B993DB2EA7587E7CFAAD257 /* PBXContainerItemProxy */ = { + E21D006B0D5A3C105FB3B933FBB2A49F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B8FF445A5162845FAB9EC00FC92B694; - remoteInfo = "IQKeyboardNotification-IQKeyboardNotification"; + remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; + remoteInfo = SwiftLint; }; - C838431BB933BB2D249A9A5EB0157B4B /* PBXContainerItemProxy */ = { + E255D8F394DE50111B946C328930BAE0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; - remoteInfo = CwlPosixPreconditionTesting; + remoteGlobalIDString = 5FF1A58DEEC5DB749FCD6C120B97CC82; + remoteInfo = "GoogleUtilities-GoogleUtilities_Privacy"; }; - C8453CFC81D810C739A7F48D4E2F6EC8 /* PBXContainerItemProxy */ = { + E29BB3500AA12707B55B69DDB895027B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - CB37DE5A9ABA8979B7007E32C88795B2 /* PBXContainerItemProxy */ = { + E2CF98A8AE51B3573ABE8BE0DA9FB327 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; - remoteInfo = IQKeyboardCore; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - CC27C710DF59B5CFD9AC192062E5188B /* PBXContainerItemProxy */ = { + E4CF39F7633727CED448C2C3DDF55CDA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0010F36F9D103AAE441EA8E1058A19BC; - remoteInfo = "SPMobileCore-tvOS"; + remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; + remoteInfo = CwlMachBadInstructionHandler; }; - CC65A0A023780572AE815FC3CA5EF442 /* PBXContainerItemProxy */ = { + E5AAB47FD60D72FAADFE77126D5B09A0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; - remoteInfo = "Quick-iOS"; + remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; + remoteInfo = CwlMachBadInstructionHandler; }; - CD09572B177D8E265C14F55F3DA223C1 /* PBXContainerItemProxy */ = { + E7B648857EDEC97941232BD25FFDCB60 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A6602BCAA6F4F932A586C41D0B7E019C; - remoteInfo = "IQTextView-IQTextView"; + remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; + remoteInfo = CwlPosixPreconditionTesting; }; - CD9D3B7549559402D706CA07D936A2A7 /* PBXContainerItemProxy */ = { + E85F2F0337671E6D6D55A0B49164EF7F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0981F89DB5DA3FFCFFEBDE1F56287054; - remoteInfo = IQKeyboardReturnManager; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; }; - CE913B5C5E549B687967E1B93B33ED00 /* PBXContainerItemProxy */ = { + E9B64FC666E8C9F0381F34A5C4B3C66A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3BBD87E27EAD36B90D168213ED6DC32C; - remoteInfo = CwlMachBadInstructionHandler; + remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; + remoteInfo = "ConsentViewController-iOS"; }; - CF83A55C41CF2C4A7A2A9706E7386091 /* PBXContainerItemProxy */ = { + EE7DC7908B3F2F5B393192D7F4A3E2AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 12890DE3ABBC2CA295E108358D85EE69; - remoteInfo = IQTextView; + remoteGlobalIDString = 0010F36F9D103AAE441EA8E1058A19BC; + remoteInfo = "SPMobileCore-tvOS"; }; - D05CA6549F08C21D8D8A8284E430ADE7 /* PBXContainerItemProxy */ = { + F79930BB4791D1418E98A1D46FD854E1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; remoteInfo = "SPMobileCore-iOS"; }; - D0789DC0329358B73A75BBD906D2DB4B /* PBXContainerItemProxy */ = { + F9A5060664BC91FE75B929B70DF7AB36 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - D56DA2984C2B4AFE122A0EFE1F9E6360 /* PBXContainerItemProxy */ = { + F9D6E320ECE7C2DF59DF28948ED9D31F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; - remoteInfo = CwlPreconditionTesting; + remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; + remoteInfo = CwlCatchExceptionSupport; }; - D60BBAFAACC2E57A719D3A141B2B48E0 /* PBXContainerItemProxy */ = { + FBB5F12E195162B54E065EB180F584D7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - D68BCE895FC17B7A29DF2CA8C20D14BF /* PBXContainerItemProxy */ = { + FF17A1D80C4F7407858A61CBCAD9D715 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; - remoteInfo = CwlPosixPreconditionTesting; + remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; + remoteInfo = "Nimble-iOS"; }; - D7E5055E23ADA2BC1DC47F6D1576B851 /* PBXContainerItemProxy */ = { + FFEEF6E3E44856479DE0856ED4F98ED8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1001C16510D946B47CFF8B19DBC0B787; - remoteInfo = "FirebaseCore-FirebaseCore_Privacy"; - }; - D7FA6F223EDB2F0F25D34B2794681F54 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 283C1F2EA88CD4413165801A6748A48E; - remoteInfo = IQTextInputViewNotification; - }; - D82D5E55C7B2BE153F1262B778BFD486 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; - }; - D85DCC1A22C229E541F3C81ECE959A26 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; - }; - D88B81E7B2D49D2DDF8573C1E3552971 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3AAFED87F58BAA2AC3177A35C2CF5B23; - remoteInfo = "Nimble-iOS"; - }; - D908ABCC606DF4323D3CE5710A099E5E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; - remoteInfo = FirebaseCoreInternal; - }; - DA71F16A2A56C850FEF28F86DCDA018A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B247F77A0CD5E19C8187A9BA1EB58C09; - remoteInfo = "IQKeyboardToolbar-IQKeyboardToolbar"; - }; - DCFE29988E2D059C9456CB14EA454F87 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 94DAD332BFFC672BBE92726504A716F8; - remoteInfo = "ConsentViewController-tvOS"; - }; - DD2FF1C0379A3535799C5F864139DDB6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; - remoteInfo = Wormholy; - }; - DD3C569FF38F621C851DB89F0E7073BF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 52B60EC2A583F24ACBB69C113F5488B9; - remoteInfo = SwiftLint; - }; - DE267E34EE0FB26D013A5A959E688F17 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 283C1F2EA88CD4413165801A6748A48E; - remoteInfo = IQTextInputViewNotification; - }; - DE680BB172537D7CCF3F3E18DD1FFCA6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; - remoteInfo = IQKeyboardCore; - }; - DF3D0FD8B5F6257EA4AA112AEC2F26C9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4FE17428FD0E607723A44F17231B7A1; - remoteInfo = IQKeyboardToolbar; - }; - E1445D4B3611816F8DC924C97B7169B3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; - remoteInfo = CwlPosixPreconditionTesting; - }; - E16C80EFE192250EF585CF511C59C267 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 94DAD332BFFC672BBE92726504A716F8; - remoteInfo = "ConsentViewController-tvOS"; - }; - E62605E5271F28C55F3BE13E7DAC423D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; - remoteInfo = CwlPosixPreconditionTesting; - }; - E73D1FF84BF66F3D5335D2E903BF7ED7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; - }; - E746ADADD5A62A3DD4873214B8BEEC39 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F9A1BF709B7BA4C24A83664EB1E1C7D4; - remoteInfo = IQKeyboardCore; - }; - E8CD705EB1A60482D6484F4B646D2299 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; - }; - E9BCF1221D4426B785E91619CC7E822F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 048075AF24CF4328D47A956D088610FE; - remoteInfo = "SPMobileCore-iOS"; - }; - EB8B4AFB98C8AA40E8C6718B4BD12A88 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EB8B23AD889CF5BE4A85CD0D8EF2DF99; - remoteInfo = CwlPosixPreconditionTesting; - }; - F0B27D8BDBB73D4DE6F22742EE5E8A21 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; - remoteInfo = CwlPreconditionTesting; - }; - F30CF4401824E88781A9169E93D25EDE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2949783F7EDB27AD4666B5427B63DC79; - remoteInfo = "FirebaseCoreInternal-FirebaseCoreInternal_Privacy"; - }; - F463BEFA52E9A14DB0C1075F873B48BA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CA3D99499260B4C146BBB22670C1D8AD; - remoteInfo = CwlCatchExceptionSupport; - }; - F5768730385A4A56D4008F3BFB1431ED /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; - remoteInfo = FirebaseCoreInternal; - }; - F7419DF1202D741ECBDF1FA5682E00B3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A26E6FD851C20D652B2755C1464A9990; - remoteInfo = IQKeyboardNotification; - }; - F8F40A945F71081EDAA4E11939FB3A66 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 84E1147DCA59477E2E390B109585DCAF; - remoteInfo = "ConsentViewController-iOS"; - }; - FD8536EF62446E7D5E6F447941BD4239 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3E73ED39761329414C06DD4486C5058E; - remoteInfo = Wormholy; - }; - FE9D585024E690528E6862C30F5DA314 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 89B29D1C701EFC639B36BC482FE72F13; - remoteInfo = "Quick-iOS"; - }; - FF0F0EB85E9B9C6370BB07C1F142F582 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E4D853F6FBAB5A9BDBE843E4EFB22EB7; - remoteInfo = CwlPreconditionTesting; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 0040387F9E3E25AF324907F247E4BF80 /* CwlDarwinDefinitions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlDarwinDefinitions.swift; path = Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift; sourceTree = ""; }; - 00760845D8B0C5DA675FA4CC4DE50940 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 002DA9997692065274872476380833D2 /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; 00858046BC72A04D7263B66F2D425873 /* ConsentViewController-tvOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConsentViewController-tvOS-prefix.pch"; path = "../ConsentViewController-tvOS/ConsentViewController-tvOS-prefix.pch"; sourceTree = ""; }; - 008E3704D3829052945409F16538B160 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; + 0099ABEFFA46E52853778824E09A231E /* HeartbeatsBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsBundle.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsBundle.swift; sourceTree = ""; }; 00BA232A188CE8CB8BE0617C8DD20B4C /* SPGCMData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGCMData.swift; sourceTree = ""; }; - 00F2D35E2F16C07A688E80092C83C827 /* Pods-Tests-SPGDPRExampleAppUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-SPGDPRExampleAppUITests-Info.plist"; sourceTree = ""; }; - 018C7D6DA1414FA7FD58A494AA74FAF0 /* mach_excServer.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mach_excServer.c; path = Sources/CwlMachBadInstructionHandler/mach_excServer.c; sourceTree = ""; }; - 01A004F916AE721171E411659CD37E18 /* QuickTestObservation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestObservation.swift; path = Sources/Quick/QuickTestObservation.swift; sourceTree = ""; }; - 01B7A0F12119250D0C87E0712F834199 /* IQTextInputViewNotification-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextInputViewNotification-umbrella.h"; sourceTree = ""; }; - 0215672A26243634BDD3066654D7E3D6 /* Pods-Examples-SourcePointMetaApp */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Examples-SourcePointMetaApp"; path = Pods_Examples_SourcePointMetaApp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0227A01D4F0BD28AF391B3A9DB204D03 /* Polling.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Polling.swift; path = Sources/Nimble/Polling.swift; sourceTree = ""; }; + 00EB5256D8D2065D33FBDFBB317F6160 /* QuickConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickConfiguration.swift; path = Sources/Quick/Configuration/QuickConfiguration.swift; sourceTree = ""; }; + 00F2DFA440703FD4A962457105C4F549 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; + 0227394C89EF232D13803AC414CC8E0D /* Match.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Match.swift; path = Sources/Nimble/Matchers/Match.swift; sourceTree = ""; }; 022AE72E29CD671904856E3584C975F9 /* SPMessageViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPMessageViewController.swift; path = ConsentViewController/Classes/SPMessageViewController.swift; sourceTree = ""; }; - 029CCFBD6A8A98AAEB3CBBB0A107E20F /* Pods-Tests-AuthExampleUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-AuthExampleUITests-Info.plist"; sourceTree = ""; }; - 02A196CEB3DFD80618F39736B5983336 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig"; sourceTree = ""; }; + 02B20C61B978171B1DCAF75051241949 /* Pods-TVOSExampleAppUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TVOSExampleAppUITests-dummy.m"; sourceTree = ""; }; + 02E84178DE3F0322D6F01D55C48EA66E /* Pods-Tests-ConsentViewController_ExampleTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-ConsentViewController_ExampleTests-resources.sh"; sourceTree = ""; }; 033B5B585762808D4A67F6F6E91AFC96 /* SPUSNatConsent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPUSNatConsent.swift; sourceTree = ""; }; - 03A4E26FDAB2812977B49469A6B6B561 /* Example.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Example.swift; path = Sources/Quick/Examples/Example.swift; sourceTree = ""; }; + 03AC08D6BD3BFE3ADF9A6C5E640BAA21 /* Pods-Examples-AuthExample-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-AuthExample-dummy.m"; sourceTree = ""; }; + 03EF3D5078569C167DFEA8F2078A351C /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; + 04117DE208A4F4F3EB24426B69A86672 /* AssertionRecorder+Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssertionRecorder+Async.swift"; path = "Sources/Nimble/Adapters/AssertionRecorder+Async.swift"; sourceTree = ""; }; + 0430733BA910250764FA4BE20EF237D1 /* QuickConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickConfiguration.m; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.m; sourceTree = ""; }; + 04AD62417A5D802049729AF441E69456 /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; 04DB65DCECD90C91E3B57C2CBD3A859A /* javascript */ = {isa = PBXFileReference; includeInIndex = 1; name = javascript; path = ConsentViewController/Assets/javascript; sourceTree = ""; }; - 050F9B9E655D48CD28778AA2297DA7BB /* NMBStringify.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBStringify.m; path = Sources/NimbleObjectiveC/NMBStringify.m; sourceTree = ""; }; - 054F7CF39326FC823FD090254AC82F87 /* TestState.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestState.swift; path = Sources/Quick/TestState.swift; sourceTree = ""; }; - 05BA369063AB9F88199C725055C5F112 /* IsAppEncrypted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IsAppEncrypted.h; path = third_party/IsAppEncrypted/Public/IsAppEncrypted.h; sourceTree = ""; }; - 0618BA28BDC28DE55C59EC817BEE6BC6 /* Pods-Examples-NativeMessageExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-NativeMessageExample.debug.xcconfig"; sourceTree = ""; }; - 06AFB2FB1357339F642D525DD139645C /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - 06CDCF1DEF066100C9A8DA515BF0F69F /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Public/GoogleUtilities/GULUserDefaults.h; sourceTree = ""; }; - 06E5B413FEA5A600D76636DA132F8FB9 /* IQTextInputViewNotification */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQTextInputViewNotification; path = IQTextInputViewNotification.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0571EE693E935A8B8482D41E4E1D5EEC /* SPMobileCore.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = SPMobileCore.xcframework; sourceTree = ""; }; + 0590F48D3BFC0131C79E88753F9B5423 /* CwlCatchException-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CwlCatchException-Info.plist"; sourceTree = ""; }; + 05AA7123CC04038DD4EF794DF0FF1B0C /* Pods-Tests-AuthExampleUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-AuthExampleUITests-dummy.m"; sourceTree = ""; }; + 05DDD82571D76F1B6040FDB80E243218 /* QuickObjCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickObjCRuntime.h; path = Sources/QuickObjCRuntime/include/QuickObjCRuntime.h; sourceTree = ""; }; + 06219E171DAD51821C073703A23B86D4 /* ExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleHooks.swift; path = Sources/Quick/Hooks/ExampleHooks.swift; sourceTree = ""; }; + 0696723B7967E1ECB7F653DE7029F161 /* CwlMachBadInstructionHandler.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CwlMachBadInstructionHandler.modulemap; sourceTree = ""; }; 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = nanopb; path = nanopb.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 07A8CFAAC606B196E05540BE99D4F78B /* CwlCatchException-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlCatchException-prefix.pch"; sourceTree = ""; }; - 07E0AD456E2983D293E4F77517365BB4 /* FirebaseCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCore-Info.plist"; sourceTree = ""; }; - 07F7FDB058328900287FB0E998FBFE99 /* GULNetworkInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInfo.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULNetworkInfo.h; sourceTree = ""; }; - 080544185156D8EFB4F8B2735F21B295 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; - 0874D5D0DB5A4E30D92632B7FA3AB3CE /* AsyncExpression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncExpression.swift; path = Sources/Nimble/AsyncExpression.swift; sourceTree = ""; }; - 08EFFFAFE6B8C843DE416183FF42EB61 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.modulemap"; sourceTree = ""; }; - 08F357DF6D86BCE1B955CCA6588B08ED /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; - 090867511CD2BA024093F61173297740 /* Wormholy.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Wormholy.debug.xcconfig; sourceTree = ""; }; - 090FB5D206322F3D4116DCB9537BA768 /* Pods-Tests-AuthExampleUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-AuthExampleUITests-acknowledgements.markdown"; sourceTree = ""; }; - 0938054FF37292F241D2F03657DCA974 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m"; sourceTree = ""; }; - 09760B2CDB70F77EDBE597061083AB98 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQTextView/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 0A615B8FEA4BB77F6D10C31025414773 /* SPMobileCore-tvOS-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; name = "SPMobileCore-tvOS-xcframeworks.sh"; path = "../SPMobileCore-tvOS/SPMobileCore-tvOS-xcframeworks.sh"; sourceTree = ""; }; - 0B248C61C89B02A8A25F332705053C87 /* FirebaseInstallations-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseInstallations-umbrella.h"; sourceTree = ""; }; + 0721A837A031E5D1C58E447D944E2315 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-Info.plist"; sourceTree = ""; }; + 0760C1257D7E105676745153FD89889D /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.modulemap"; sourceTree = ""; }; + 07BB747336C89F95DC3278F260D10594 /* IsAppEncrypted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IsAppEncrypted.h; path = third_party/IsAppEncrypted/Public/IsAppEncrypted.h; sourceTree = ""; }; + 07C24E523543E182C93A229FB8B1C35D /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; + 09259172CEC3D446EF8B37620C530C65 /* Pods-Tests-AuthExampleUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-AuthExampleUITests.modulemap"; sourceTree = ""; }; + 0943B78F6B0D4161F5619A122F59B8B3 /* WHLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHLabel.swift; path = Sources/Subclasses/WHLabel.swift; sourceTree = ""; }; + 094D4FA6F3FD48FAE143D5024AEB60FA /* CwlPreconditionTesting-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlPreconditionTesting-umbrella.h"; sourceTree = ""; }; + 09D0C03232AAFAA1E1DB61DEE7C9755D /* Pods-TVOSExampleApp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-TVOSExampleApp.modulemap"; sourceTree = ""; }; + 0A045FC67B7EB96DFF872D6DE6A7ABAD /* WHString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHString.swift; path = Sources/Subclasses/WHString.swift; sourceTree = ""; }; + 0A2339FBE3D2799180870D117A85A752 /* Callsite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Callsite.swift; path = Sources/Quick/Callsite.swift; sourceTree = ""; }; + 0A380CBD6CD24A6B43504FFCAE32570F /* Quick.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Quick.h; path = Sources/QuickObjectiveC/Quick.h; sourceTree = ""; }; + 0A84ED188AE9D9360213A34BABA41E5F /* Quick-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Quick-iOS-dummy.m"; sourceTree = ""; }; + 0B97C2B39DE0FA07EFB90DDD0C5D07D5 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; 0BBCE35A0421461965EDB0E1835692D8 /* SPCCPAPartnersViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPCCPAPartnersViewController.swift; sourceTree = ""; }; - 0BD568D6A51A5409CB41FA9C1F9A6146 /* IQKeyboardToolbar-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbar-umbrella.h"; sourceTree = ""; }; - 0C468EBD52C660B829A9EF5CA0D838CD /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; - 0C65EE1CE46F0EF23C89F969024E6B02 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h"; sourceTree = ""; }; - 0C82904C58AECE94225849CD3382BF5E /* mach_excServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mach_excServer.h; path = Sources/CwlMachBadInstructionHandler/mach_excServer.h; sourceTree = ""; }; - 0C925C17E276718B3B82E1F218B59371 /* AssertionRecorder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionRecorder.swift; path = Sources/Nimble/Adapters/AssertionRecorder.swift; sourceTree = ""; }; - 0CDEFA47A2822954ABE2E1E4C57CBA20 /* Pods-Examples-SourcePointMetaApp-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-SourcePointMetaApp-acknowledgements.plist"; sourceTree = ""; }; + 0C88264884649EF7B51A7980BCD1AE39 /* Pods-Examples-ObjC-ExampleApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-ObjC-ExampleApp-dummy.m"; sourceTree = ""; }; + 0CA355AA07CBD101CDEF5AE097726279 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; + 0CA7A74493FD45351E647EDCB435AD30 /* Pods-Examples-ObjC-ExampleApp-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-ObjC-ExampleApp-resources.sh"; sourceTree = ""; }; + 0CBA7F63620C7799E7A2100BEDC5443D /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.debug.xcconfig"; sourceTree = ""; }; 0D01AADE4EF28E9EA6E9B56822417319 /* PMCategoryManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PMCategoryManager.swift; sourceTree = ""; }; - 0D1F27E8DDEE1C92CB890B2A34DA28DF /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; - 0D542779C488CF8ED5AD479BF0B8FB1A /* Equal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Equal.swift; path = Sources/Nimble/Matchers/Equal.swift; sourceTree = ""; }; 0D68F2DD4656E2DC0F28ED037671461F /* Nimble-tvOS */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Nimble-tvOS"; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0D7754507C4F4A1D871BB0E2791C1968 /* AsyncMatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncMatcher.swift; path = Sources/Nimble/Matchers/AsyncMatcher.swift; sourceTree = ""; }; - 0DFD4541FF9DAA31A2FC2A7F6D03ED22 /* IQTextView */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQTextView; path = IQTextView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0E0FF0EB4ABF09B6C32D854A470072E8 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkConstants.h; sourceTree = ""; }; - 0E798ACA8739273EF6705B2F619E7748 /* Nimble-tvOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "Nimble-tvOS.modulemap"; path = "../Nimble-tvOS/Nimble-tvOS.modulemap"; sourceTree = ""; }; - 0ECA7FAF11E033462E93DA53335F86BB /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = ""; }; + 0E3DFC70AEFDD34F748C23C321943C6A /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; 0ED1B8267B071DB6AB0389823D4B50E9 /* SPWebMessageViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPWebMessageViewController.swift; sourceTree = ""; }; - 0EDDE07DCB417401246AED370804DA0C /* Nimble-iOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Nimble-iOS.debug.xcconfig"; sourceTree = ""; }; - 0EDFC6CE0261D0B8565F3190CEE48BC0 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; - 0F30A2BF8247E3B49846E08BF91D6D6F /* Pods-Examples-SourcePointMetaApp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-SourcePointMetaApp-umbrella.h"; sourceTree = ""; }; - 0FDD93343FCF19CFFE387161EBDBA43B /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; - 103B95F4ED3B3A1D7926D743F2923250 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.modulemap"; sourceTree = ""; }; + 0FC5269CEE6B854EBFC220F83DCC1FC6 /* Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.plist"; sourceTree = ""; }; + 0FD2728927C68BA941A57B1684A1FCF8 /* nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "nanopb-Info.plist"; sourceTree = ""; }; 1049229D7F62564EA52B9AC96A0C3031 /* Bundle+Framework.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bundle+Framework.swift"; path = "ConsentViewController/Classes/Bundle+Framework.swift"; sourceTree = ""; }; - 105CE05DE7CD3B0A74D93C6AD4B5EA00 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+IQKeyboardManagerExtensionObjc.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtensionObjc.swift"; sourceTree = ""; }; 10E0A1B4632BE74D7347FA8479A1CE4F /* SimpleClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SimpleClient.swift; sourceTree = ""; }; - 10F2EEC527F6E7935FFABF0983620715 /* RequestCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = RequestCell.xib; path = Sources/UI/Cells/RequestCell.xib; sourceTree = ""; }; - 110BD425B6CAD6801539E2C6AB6E0662 /* IQKeyboardReturnManager-IQKeyboardReturnManager */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardReturnManager-IQKeyboardReturnManager"; path = IQKeyboardReturnManager.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 11296EDFC129EA0521F51D9161E5136D /* CwlCatchExceptionSupport-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlCatchExceptionSupport-umbrella.h"; sourceTree = ""; }; - 1131771154A5D4CFBC4918DB50DAFEB2 /* XCTestObservationCenter+Register.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestObservationCenter+Register.m"; path = "Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m"; sourceTree = ""; }; - 118D08AA25F5FBD2C0A9F1604960FCA7 /* IQKeyboardCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardCore-umbrella.h"; sourceTree = ""; }; - 119BF7600B4B48D0FAF2C547AC752308 /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; - 11AB65E223FBA66F8387F04ADD5C44C7 /* Pods-Tests-AuthExampleUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-AuthExampleUITests-acknowledgements.plist"; sourceTree = ""; }; - 11B372D0279EAB990E3BD615FFDBB958 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; - 11B7F14A38E0CD1E7F2BDF3415BA40F3 /* ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; sourceTree = ""; }; 11DDF4F1DF218CBFC359A60C30CF9EEA /* SPCustomViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPCustomViewController.xib; sourceTree = ""; }; - 11F290A7274F920B01D24B662A5E5E88 /* IQKeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManager.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager.swift; sourceTree = ""; }; - 1209EA6EBCF62A05EE4AF10A38C73B9C /* Pods-Tests-SPGDPRExampleAppUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-SPGDPRExampleAppUITests.release.xcconfig"; sourceTree = ""; }; - 120BD4C670EF00F4D5A40AA4B863A7AE /* IQKeyboardNotification-IQKeyboardNotification */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardNotification-IQKeyboardNotification"; path = IQKeyboardNotification.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 135682E6BB9D8F99E34FEC9D5D0E744A /* UIView+Resign.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Resign.swift"; path = "IQKeyboardManagerSwift/Resign/UIKItExtensions/UIView+Resign.swift"; sourceTree = ""; }; - 135F15712F2E26302AF7A1B3321C1933 /* RingBuffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RingBuffer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/RingBuffer.swift; sourceTree = ""; }; + 12446BBFC9CD0B4516B5D20B15FF7F95 /* Nimble-iOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Nimble-iOS-Info.plist"; sourceTree = ""; }; + 12BFC6DE2EEB5BBBF11443BBBE947EC8 /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; + 12D0FE7D15411CE61E5B2CDFF6BC6BE7 /* Requirement.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Requirement.swift; path = Sources/Nimble/Requirement.swift; sourceTree = ""; }; + 12E16585AABAF4CF443A2D047A873BB3 /* Quick-tvOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "Quick-tvOS-Info.plist"; path = "../Quick-tvOS/Quick-tvOS-Info.plist"; sourceTree = ""; }; + 12F67E88CF7BC55AF98D085113C07958 /* Pods-Tests-NativeMessageExampleUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-NativeMessageExampleUITests-umbrella.h"; sourceTree = ""; }; 1375173E8D5512B9BFD64EDD2FCA6C13 /* SPCCPAVendorDetailsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPCCPAVendorDetailsViewController.swift; sourceTree = ""; }; - 13887FF5AE96C61A75493F453E51A166 /* Pods-Tests-NativeMessageExampleUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-NativeMessageExampleUITests-dummy.m"; sourceTree = ""; }; + 13916C9CB5D0CD65F90BA3F13D5E1D33 /* BeVoid.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeVoid.swift; path = Sources/Nimble/Matchers/BeVoid.swift; sourceTree = ""; }; + 13AFCD582CD7DD92033D3B98E64825E2 /* Pods-Examples-SourcepointFirebaseDemo-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-SourcepointFirebaseDemo-Info.plist"; sourceTree = ""; }; 13C8C8B254851998F9289F71229B28A2 /* FirebaseInstallations */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseInstallations; path = FirebaseInstallations.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 14250D74426E3F8CEAA313072076355C /* IQTitleBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTitleBarButtonItem.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQTitleBarButtonItem.swift; sourceTree = ""; }; + 13DA35017E67979A26DBEB45487D51EE /* ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; sourceTree = ""; }; + 142C0A4A62EFBA47B4794D0362C2D63B /* TestSelectorNameProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestSelectorNameProvider.swift; path = Sources/Quick/TestSelectorNameProvider.swift; sourceTree = ""; }; + 1430F45E4554B6CABED4867A77E25DEB /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = Sources/Nimble/Matchers/Map.swift; sourceTree = ""; }; 148D0F9E8C7373FEAF40D800FC5F1BAA /* FirebaseCoreInternal */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseCoreInternal; path = FirebaseCoreInternal.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 14A31B695BE605B7BC300ABA7A0BBD99 /* PMVendorManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PMVendorManager.swift; sourceTree = ""; }; - 14A475CA99F08B3863C3A7BD25B54750 /* Pods-Tests-SourcePointMetaAppUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-SourcePointMetaAppUITests.modulemap"; sourceTree = ""; }; - 14EE15EE2D21740716E29AC2EE0A6076 /* Closures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Closures.swift; path = Sources/Quick/Hooks/Closures.swift; sourceTree = ""; }; - 1502E63A37330EBB5C1A73A5190D09F5 /* IQTextView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextView.release.xcconfig; sourceTree = ""; }; - 156AAA0B72E382123D7BA1BCBEE845C3 /* Pods-Examples-SourcePointMetaApp-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-SourcePointMetaApp-acknowledgements.markdown"; sourceTree = ""; }; - 15848DEC7727A809830E7F6FC1B6CE0F /* IQKeyboardReturnManager */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardReturnManager; path = IQKeyboardReturnManager.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 15984851E2434A1A83C71AEAED338F2E /* SPMobileCore-iOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "SPMobileCore-iOS.release.xcconfig"; sourceTree = ""; }; - 166CE685B045446FB8D256E1CCB7BB31 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; - 16A6B86A230015B27E8C491D716DA32C /* Pods-Examples-ObjC-ExampleApp-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-ObjC-ExampleApp-acknowledgements.plist"; sourceTree = ""; }; - 16E26D53D76686D672481814AA43BE6D /* IQKeyboardNotification.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardNotification.release.xcconfig; sourceTree = ""; }; + 15189BA69BDFC39E7A0E6CDC4DC6FB80 /* BeLogical.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLogical.swift; path = Sources/Nimble/Matchers/BeLogical.swift; sourceTree = ""; }; + 15322C34CB689D51A783BA2B2B0CFC6E /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLogger.h; sourceTree = ""; }; + 153CA418C4CCC84EB19B933C745D4B17 /* Section.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Section.swift; path = Sources/Models/Section.swift; sourceTree = ""; }; + 165938F62D31D350A961EE4E77FFC1A2 /* FirebaseCoreInternal-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-umbrella.h"; sourceTree = ""; }; + 16AB754F0D2103BCF9E6EC83FAFAE414 /* Equal+Tuple.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Equal+Tuple.swift"; path = "Sources/Nimble/Matchers/Equal+Tuple.swift"; sourceTree = ""; }; + 16C677CD1015D10A96B8FA6AD1AB6416 /* CwlMachBadInstructionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlMachBadInstructionHandler.h; path = Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h; sourceTree = ""; }; + 16E5C2D6E5ECFE61FD352A0D653DEB73 /* Pods-Tests-AuthExampleUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-AuthExampleUITests-Info.plist"; sourceTree = ""; }; 170673B9177B3BF49D7BCD407632374B /* SPDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPDelegate.swift; path = ConsentViewController/Classes/SPDelegate.swift; sourceTree = ""; }; - 1789C906329962E5457BC43ADCAB742A /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsErrors.h; sourceTree = ""; }; 182C561114B03D57F4A67E016CB87CFB /* SourcePointClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SourcePointClient.swift; sourceTree = ""; }; + 18325BDC645A79CAF2819AB2F78A76BE /* _ObjC_HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatsPayload.swift; sourceTree = ""; }; 1840EBC85C38B3D34E599412FD06EE5F /* ConsentViewController-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ConsentViewController-iOS-dummy.m"; sourceTree = ""; }; - 18C8FD65ACC0A1178BF37AB4EC3186DB /* BeVoid.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeVoid.swift; path = Sources/Nimble/Matchers/BeVoid.swift; sourceTree = ""; }; - 18F6047FB83FFEC12D6F0FE6CE4703E5 /* Equal+TupleArray.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Equal+TupleArray.swift"; path = "Sources/Nimble/Matchers/Equal+TupleArray.swift"; sourceTree = ""; }; - 18F9E19CA9D917CB5655F5450578C723 /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; - 18FC2954F1FB2A2E4820D10D9B873A50 /* HaveCount.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HaveCount.swift; path = Sources/Nimble/Matchers/HaveCount.swift; sourceTree = ""; }; - 1915207E5A90DCA82E26FBBCA2E23E5F /* Pods-Examples-ObjC-ExampleApp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-ObjC-ExampleApp.modulemap"; sourceTree = ""; }; - 1927DE642808C0399D8EC4D6EEBFFA2C /* QuickSpecBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpecBase.m; path = Sources/QuickObjCRuntime/QuickSpecBase.m; sourceTree = ""; }; + 184DF050A094BAECB715C55152421B65 /* Pods-TVOSExampleApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TVOSExampleApp.debug.xcconfig"; sourceTree = ""; }; + 1893E19DE84F2A0B6BC917DDB6462183 /* Pods-Tests-SPGDPRExampleAppUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-SPGDPRExampleAppUITests.release.xcconfig"; sourceTree = ""; }; + 18C6007DB93E43DEB892827FF8ED2389 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; 197865AE4C919C97C7E5CE23CE9253D9 /* Pods-Examples-ObjC-ExampleApp */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Examples-ObjC-ExampleApp"; path = Pods_Examples_ObjC_ExampleApp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 19A3208713532FEB443BA6C90BF523BC /* Pods-Examples-SourcepointFirebaseDemo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-SourcepointFirebaseDemo.debug.xcconfig"; sourceTree = ""; }; - 19E8DF962E12F5CD09F0C1D4AE5F54AB /* IQKeyboardToolbar.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbar.debug.xcconfig; sourceTree = ""; }; - 1A0C1E8502B39156213F23E163801B61 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardManagerSwift/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 19A515124D7AE6ED7F9E9FAB52BB9B77 /* AsyncWorld+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AsyncWorld+DSL.swift"; path = "Sources/Quick/DSL/AsyncWorld+DSL.swift"; sourceTree = ""; }; + 19EED79A76C2275317D833D80EC38860 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; 1A0C68D976DEFB9773D1E67B3627B6D1 /* MessagesResponse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = MessagesResponse.swift; sourceTree = ""; }; - 1A1D82294C81ACF02E022ECA02DFE5FF /* WormholyMethodSwizzling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = WormholyMethodSwizzling.m; path = Sources/Objc/WormholyMethodSwizzling.m; sourceTree = ""; }; - 1A61EF9F8DAB20D0B29D364D6042FB92 /* Pods-Tests-ConsentViewController_ExampleTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-ConsentViewController_ExampleTests-resources.sh"; sourceTree = ""; }; - 1A76BD3D2B474131A34604EF2865963E /* IQKeyboardManager+Appearance_Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Appearance_Deprecated.swift"; path = "IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance_Deprecated.swift"; sourceTree = ""; }; - 1AEFF9CB21CFE2C6E9CABE1E8FC2049E /* Config.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Config.swift; path = "Sources/Support Files/Config.swift"; sourceTree = ""; }; - 1AF44F0431C5517FC97624B819A93234 /* ActionableTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ActionableTableViewCell.swift; path = Sources/UI/Cells/ActionableTableViewCell.swift; sourceTree = ""; }; - 1AF548F201A5ECBD867F8B7FE2F0B358 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; - 1B143EBC1966C88F868E06AAC74D1677 /* ElementsEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementsEqual.swift; path = Sources/Nimble/Matchers/ElementsEqual.swift; sourceTree = ""; }; - 1B2A085592270AF5DD5E13A64ED858F7 /* RequestCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestCell.swift; path = Sources/UI/Cells/RequestCell.swift; sourceTree = ""; }; - 1B73E46A10649788206CF69187F13906 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULSceneDelegateSwizzler.h; sourceTree = ""; }; - 1B9F50AC0729A3A5253FB09DBB050D14 /* IQKeyboardCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardCore.release.xcconfig; sourceTree = ""; }; - 1BE46900BF8CBA13050460771A8DD7DD /* Pods-Tests-NativeMessageExampleUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-NativeMessageExampleUITests-umbrella.h"; sourceTree = ""; }; - 1CF9482DF9831CCB3E533ACFE2AACC24 /* RequestTitleSectionView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = RequestTitleSectionView.xib; path = Sources/UI/Sections/RequestTitleSectionView.xib; sourceTree = ""; }; - 1D1EF07B4074C5D3B21D293539E811B4 /* CwlCatchException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlCatchException.h; path = Sources/CwlCatchExceptionSupport/include/CwlCatchException.h; sourceTree = ""; }; - 1E88480B61ACCAA0F2621AB2B749F2E6 /* Pods-TVOSExampleApp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TVOSExampleApp-umbrella.h"; sourceTree = ""; }; - 1EB1E29251A4E8016DF94D588688631D /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; - 1EB98EC760A9900E08B973CADE03FE11 /* RequestModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModel.swift; path = Sources/Models/RequestModel.swift; sourceTree = ""; }; - 1F17A815B4C39DFD2BE71E8C85B46A1C /* Wormholy-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Wormholy-Info.plist"; sourceTree = ""; }; - 1FEFC5DF623E0B735C831F197EB46676 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig"; sourceTree = ""; }; - 200889D4597F4832345C529B808EFFB3 /* Pods-TVOSExampleApp-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TVOSExampleApp-resources.sh"; sourceTree = ""; }; + 1A3EBF27C9D405872A61C7ED5BC39FFD /* Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.markdown"; sourceTree = ""; }; + 1A8BBB653B9F1324355A62F2B2E3B41B /* ActionableTableViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = ActionableTableViewCell.xib; path = Sources/UI/Cells/ActionableTableViewCell.xib; sourceTree = ""; }; + 1AA3A212C79BC0C75312BF518E37D9E1 /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; + 1B108F5A67F202BB0C878709D7FAEDF7 /* AssertionRecorder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionRecorder.swift; path = Sources/Nimble/Adapters/AssertionRecorder.swift; sourceTree = ""; }; + 1B2D93B546613CD1183082319D60D0B1 /* Pods-Examples-NativeMessageExample-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-NativeMessageExample-dummy.m"; sourceTree = ""; }; + 1DD196321D611BB05438088E085E051B /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; + 1E020A0CF5F17E3A232DECF3ABC8D0B9 /* CwlCatchException.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlCatchException.debug.xcconfig; sourceTree = ""; }; + 1E7EF4FBBE64D7A0C659CC1AA72FDAC3 /* GULNetworkInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkInfo.m; path = GoogleUtilities/Environment/NetworkInfo/GULNetworkInfo.m; sourceTree = ""; }; + 1ECE275F580D55BF3195B81188B4C978 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/Public/GoogleUtilities/GULNSData+zlib.h"; sourceTree = ""; }; + 1F3CE490844E9112C095B66E7A737CF4 /* Quick-tvOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Quick-tvOS-prefix.pch"; path = "../Quick-tvOS/Quick-tvOS-prefix.pch"; sourceTree = ""; }; + 1F7D49A81794ADD8454763219C1ADCDF /* WHNavigationController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHNavigationController.swift; path = Sources/Subclasses/WHNavigationController.swift; sourceTree = ""; }; + 1FE0614C9432CD7B4E9AC97E73182D27 /* NMBExceptionCapture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBExceptionCapture.h; path = Sources/NimbleObjectiveC/include/NMBExceptionCapture.h; sourceTree = ""; }; 20A4710BBD2EE3CFC496E3AF134BD4FD /* ConsentViewController-tvOS-ConsentViewController */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "ConsentViewController-tvOS-ConsentViewController"; path = ConsentViewController.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 20AD96D8D079F854B147064F9599EAC6 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/GULReachabilityMessageCode.h; sourceTree = ""; }; - 20BCCE3D8FFE4752339823149D7C43EF /* StopTest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StopTest.swift; path = Sources/Quick/StopTest.swift; sourceTree = ""; }; - 213D4ECBFA7309B07DF2DEED0D23AC9E /* Pods-TVOSExampleApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TVOSExampleApp.release.xcconfig"; sourceTree = ""; }; - 2176275B8B0729C9BE40F21BC680FF52 /* Pods-Examples-NativeMessageExample-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-NativeMessageExample-acknowledgements.plist"; sourceTree = ""; }; - 217B5479C6892998368ABCC3F23A430D /* Pods-Examples-ObjC-ExampleApp-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-ObjC-ExampleApp-acknowledgements.markdown"; sourceTree = ""; }; - 2187FE9772F1A9A746A83A16204EDB91 /* IQBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItem.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItem.swift; sourceTree = ""; }; - 219CC0CD56FC97926EFEFCDCCC9999F7 /* QuickConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickConfiguration.h; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.h; sourceTree = ""; }; + 212872A897CEA4FC061E88ABEE80E436 /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; + 2160BA55970AC59C8D21B7738DDC1015 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; + 2161E148A94DD5E001D3DE84FC48C59B /* FirebaseCoreInternal-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-prefix.pch"; sourceTree = ""; }; 220D1365CED5CB83C4C0CE1E3DABD3B0 /* CwlCatchExceptionSupport */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CwlCatchExceptionSupport; path = CwlCatchExceptionSupport.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 2266B6960BA5D00602AED11707DDCE85 /* Quick-tvOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "Quick-tvOS.modulemap"; path = "../Quick-tvOS/Quick-tvOS.modulemap"; sourceTree = ""; }; - 2311834C46257E5B983935E8AF97B346 /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; - 236DE9F22C6527027547CC5C4DD8596D /* NSURLSessionConfiguration+Wormholy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLSessionConfiguration+Wormholy.h"; path = "Sources/Objc/NSURLSessionConfiguration+Wormholy.h"; sourceTree = ""; }; - 237601B38F13A3670A4070C1CAC6862D /* UIView+ParentObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+ParentObjc.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+ParentObjc.swift"; sourceTree = ""; }; - 23FBDAA5FD0B0723D595A12D65251D68 /* ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist"; sourceTree = ""; }; - 24C58E8D9EEFDCDCAA11A3C5873FCF26 /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; - 250CCF39F870AE6F993E71E9CAC93BDD /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; + 227D387BA824E9B3D189AD8F077911A7 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; + 22D2ACDC9E8AA687B43986D8C061F861 /* Example.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Example.swift; path = Sources/Quick/Examples/Example.swift; sourceTree = ""; }; + 22E7A0FEE44B392FEDDAA42328B91CE9 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; + 244880065A3393F54BFDAF677C86BCBF /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; + 245141383B0DEF2750705E09A499BFA5 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULMutableDictionary.h; sourceTree = ""; }; + 24787721563C702E5268B6ECBDB11450 /* WHBaseViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHBaseViewController.swift; path = Sources/Subclasses/WHBaseViewController.swift; sourceTree = ""; }; + 24C57F1C49323CAC06C03B45CE4BF7C2 /* HooksPhase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HooksPhase.swift; path = Sources/Quick/Hooks/HooksPhase.swift; sourceTree = ""; }; 2530BC414137FF7A53A0368B476547B9 /* Wormholy */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Wormholy; path = Wormholy.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 259EFEA7087E5468175533431A8057F5 /* Behavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Behavior.swift; path = Sources/Quick/Behavior.swift; sourceTree = ""; }; - 25AE189B10793A7146D998D676725888 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.plist"; sourceTree = ""; }; - 25D4F6A49E547E09FEE315D6A39438D8 /* IQKeyboardToolbarManager.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbarManager.release.xcconfig; sourceTree = ""; }; - 26484551773621D3B85EA2980BF9C36E /* TestSelectorNameProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestSelectorNameProvider.swift; path = Sources/Quick/TestSelectorNameProvider.swift; sourceTree = ""; }; - 26934FCB04DA419CDDC98A0054B0722A /* AdapterProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdapterProtocols.swift; path = Sources/Nimble/Adapters/AdapterProtocols.swift; sourceTree = ""; }; - 26EA509F93874431C5DA3886A8BF2C86 /* UICollectionView+IndexPaths.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UICollectionView+IndexPaths.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UICollectionView+IndexPaths.swift"; sourceTree = ""; }; + 25B64CDAC38DC0B4E6A010B69CB638F8 /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = ""; }; + 267B71FD4B948D67BDBDE034F887089D /* SPMobileCore-iOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "SPMobileCore-iOS.release.xcconfig"; sourceTree = ""; }; + 26BA4AB9D49A524FE82F9CB9222777E5 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRVersion.h; sourceTree = ""; }; 2701FF4C96D98F0B29DFA47632CB59B0 /* Pods-Tests-NativeMessageExampleUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Tests-NativeMessageExampleUITests"; path = Pods_Tests_NativeMessageExampleUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 27037CC61C19580FDD56C28682478E85 /* RequestResponseExportOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestResponseExportOption.swift; path = Sources/Utils/RequestResponseExportOption.swift; sourceTree = ""; }; - 271B9303BE698648CA3470649FD280CD /* Nimble-tvOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Nimble-tvOS-umbrella.h"; path = "../Nimble-tvOS/Nimble-tvOS-umbrella.h"; sourceTree = ""; }; - 2745E6AA21573E8CFA72AE7E87509F44 /* FIRTimestampInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestampInternal.h; path = FirebaseCore/Sources/FIRTimestampInternal.h; sourceTree = ""; }; - 27768312B574C1C195B5DA118542D5DA /* Pods-Tests-AuthExampleUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-AuthExampleUITests-dummy.m"; sourceTree = ""; }; + 2735D11320E4C0B28753849CA0C4FADF /* ExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleGroup.swift; path = Sources/Quick/ExampleGroup.swift; sourceTree = ""; }; 27958D4E3AA3B961EBD163BD2E74D50E /* SPJSReceiver.spec.js */ = {isa = PBXFileReference; includeInIndex = 1; path = SPJSReceiver.spec.js; sourceTree = ""; }; 279F88EBA67943FE8DBA4704C9BA2C15 /* ConsentViewController-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "ConsentViewController-tvOS.debug.xcconfig"; path = "../ConsentViewController-tvOS/ConsentViewController-tvOS.debug.xcconfig"; sourceTree = ""; }; - 27B51A7BAC47E4A5BFF438AAB27E4C81 /* IQKeyboardReturnManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardReturnManager.modulemap; sourceTree = ""; }; - 27F52904F8E2C67669D2B25113119F8C /* Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig"; sourceTree = ""; }; - 284792F06F89CA62D3E6123581FBA927 /* IQKeyboardAppearanceManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardAppearanceManager+Internal.swift"; path = "IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager+Internal.swift"; sourceTree = ""; }; - 285FA291E715D679D7FE0BA7CA91DB12 /* SwiftLint.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftLint.release.xcconfig; sourceTree = ""; }; - 288EEEA8AEE2176ED91869E38426DC17 /* Requirement.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Requirement.swift; path = Sources/Nimble/Requirement.swift; sourceTree = ""; }; + 27B489FE8E5373A678868715F5E37A85 /* AllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllPass.swift; path = Sources/Nimble/Matchers/AllPass.swift; sourceTree = ""; }; + 285EC57A7C49695B7CFE2591DC98FA31 /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; 28CFB897FC81ACF232126C93B8E36769 /* SPGDPRVendorDetailsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGDPRVendorDetailsViewController.swift; sourceTree = ""; }; 28D5EA4BB4CA750310C6328A9F1F15D9 /* Pods-Examples-SourcepointFirebaseDemo */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Examples-SourcepointFirebaseDemo"; path = Pods_Examples_SourcepointFirebaseDemo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 291EEE38749CE6E0C73E407A8D0EB77E /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 29978296061A1207DEE8CAB87764F0DA /* NimbleXCTestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleXCTestHandler.swift; path = Sources/Nimble/Adapters/NimbleXCTestHandler.swift; sourceTree = ""; }; - 29AE751FC0F120611D3A1462E52CDDCC /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; - 29EAF25F21EE50C142118D7F65D0141E /* NMBStringify.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBStringify.h; path = Sources/NimbleObjectiveC/include/NMBStringify.h; sourceTree = ""; }; - 2A13B1DF6C6AAAEE4F352F720D1D2599 /* Pods-Examples-NativeMessageExample-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-NativeMessageExample-resources.sh"; sourceTree = ""; }; + 2A1B50CD3FCE4EAB18498D1A2E13F542 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Quick/DSL/DSL.swift; sourceTree = ""; }; 2A26FB32526EE53AA8C0991531AC45DE /* SPConsentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPConsentable.swift; sourceTree = ""; }; - 2A64CC7844FE6E230D1CFD0D3797B19C /* Pods-TVOSExampleAppUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TVOSExampleAppUITests-umbrella.h"; sourceTree = ""; }; - 2AA1E8B56C1C4BB8239C7A2E5838E478 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; - 2AB648CCEE84EE032BC3748305CA25FA /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRApp.h; sourceTree = ""; }; - 2ADBB2CD10893D2F7B56CAC45C2BC96A /* IQKeyboardManagerSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardManagerSwift-dummy.m"; sourceTree = ""; }; - 2B12C2B2013EFCA0F1FEB1D5379405A8 /* FailureMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FailureMessage.swift; path = Sources/Nimble/FailureMessage.swift; sourceTree = ""; }; - 2B2C452C547F5C72A91AD191072AB706 /* IQTextView+Placeholderable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQTextView+Placeholderable.swift"; path = "IQTextView/Classes/IQTextView+Placeholderable.swift"; sourceTree = ""; }; - 2B3054F657B97EEC597FB71FB7EEBA1C /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 2B6C95C84D480808889C697012B352A4 /* IQTextView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextView-prefix.pch"; sourceTree = ""; }; - 2BA16E167D6EF79C689CE7ECBC63430C /* IQKeyboardManagerSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.debug.xcconfig; sourceTree = ""; }; - 2BC6953410731876B3416D9A7D347B27 /* IQKeyboardCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardCore-prefix.pch"; sourceTree = ""; }; - 2BE18B625D19EDDBF19C786FA9C4CD23 /* SPMobileCore-iOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "SPMobileCore-iOS.debug.xcconfig"; sourceTree = ""; }; - 2C7F93F7CFF13C43FCDDF68AC3D6522C /* BeGreaterThanOrEqualTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThanOrEqualTo.swift; path = Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift; sourceTree = ""; }; - 2CBDA5A98EA670762ABFC2E1D265F305 /* CwlPosixPreconditionTesting.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlPosixPreconditionTesting.debug.xcconfig; sourceTree = ""; }; - 2CE43E3E5A772279ABD0387A237DCDE0 /* IQKeyboardNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardNotification.swift; path = IQKeyboardNotification/Classes/IQKeyboardNotification.swift; sourceTree = ""; }; - 2CFE12B6F3C7C740E68CAE4F9245E695 /* Quick-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Quick-iOS.modulemap"; sourceTree = ""; }; + 2A49BB40DEFE3F58AFB216F8D3D01550 /* FirebaseCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCore-umbrella.h"; sourceTree = ""; }; + 2B1D2F924103347BE5C2A45C1BA29C54 /* Pods-Tests-ObjC-ExampleAppUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-ObjC-ExampleAppUITests-dummy.m"; sourceTree = ""; }; + 2B3F379896A4755F9A8E6E0C9DBE6C3C /* FIRFirebaseUserAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirebaseUserAgent.h; path = FirebaseCore/Sources/FIRFirebaseUserAgent.h; sourceTree = ""; }; + 2C2E83B4ABF1D645511C7D7DF84AFB38 /* Pods-Examples-ConsentViewController_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-ConsentViewController_Example-acknowledgements.markdown"; sourceTree = ""; }; + 2C662745F8E777E43C429CC47E2FE160 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 2CA2BC033ADDD4D628300EB9B6F1C552 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = ""; }; + 2CB3E6591499018B1DC9B2C332A559D3 /* JSONView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "JSONView-Info.plist"; sourceTree = ""; }; + 2D0F76D5E6B071D974B130FD0DD47351 /* GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleUtilities-Info.plist"; sourceTree = ""; }; + 2D5DCEDDB5C007CA5312467CF1B51625 /* Nimble-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-iOS-umbrella.h"; sourceTree = ""; }; 2D6BAA29C8563F4A6E565468007F72C4 /* SPCampaignEnv.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPCampaignEnv.swift; path = ConsentViewController/Classes/SPCampaignEnv.swift; sourceTree = ""; }; - 2DEBB1FFE8E70FD83CC1E5697E8A7D50 /* Pods-Tests-NativeMessageExampleUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-NativeMessageExampleUITests.modulemap"; sourceTree = ""; }; 2E2C94A9C6126684EC34738AA8F7AB87 /* CCPAPMConsentSnapshot.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CCPAPMConsentSnapshot.swift; sourceTree = ""; }; + 2E318DA7978616F50FA62B9D3A7B922F /* Pods-Tests-NativeMessageExampleUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-NativeMessageExampleUITests-dummy.m"; sourceTree = ""; }; 2EA93FE946DA25CC8E5B843521B26098 /* SPGDPRNativePrivacyManagerViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGDPRNativePrivacyManagerViewController.swift; sourceTree = ""; }; - 2EAF80D436E8A7F00E434A770B74AD91 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; - 2EBA88DFA4CE4EECE2EB0957F3BC9427 /* WHTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHTextView.swift; path = Sources/Subclasses/WHTextView.swift; sourceTree = ""; }; - 2ECFAAFC62A2DFE367B301D75F04E4EE /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; - 2EFFD7A3CE87229F9775E2437AB22494 /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; + 2EC2D69CA9A71B2934141340A6AE96F0 /* GoogleAppMeasurementIdentitySupport.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = GoogleAppMeasurementIdentitySupport.xcframework; path = Frameworks/GoogleAppMeasurementIdentitySupport.xcframework; sourceTree = ""; }; + 2ED47E86C7D30719C58666B0B3445BA7 /* CwlCatchException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlCatchException.m; path = Sources/CwlCatchExceptionSupport/CwlCatchException.m; sourceTree = ""; }; + 2F151974035946F49D22D50CC2C1FA1F /* Pods-Examples-ConsentViewController_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-ConsentViewController_Example-Info.plist"; sourceTree = ""; }; + 2F15E126851CF08C21163E34FBF00EA5 /* CustomActivity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomActivity.swift; path = Sources/Subclasses/CustomActivity.swift; sourceTree = ""; }; + 2F40E3A2B34BF4A3903A120FE772F269 /* Pods-Tests-AuthExampleUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-AuthExampleUITests-acknowledgements.plist"; sourceTree = ""; }; 30070E328081555BF2022644B4DD5AB2 /* SPGlobalCmpConsent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGlobalCmpConsent.swift; sourceTree = ""; }; - 309C0270C20A21A240AC4C4C13ACF54D /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h"; sourceTree = ""; }; - 30F24B2C15D59F40D98C16A0F0F912AE /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - 30FA3D98286D1A49ADE17B7E8C9C5E77 /* InputStream+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "InputStream+Utils.swift"; path = "Sources/Utils/InputStream+Utils.swift"; sourceTree = ""; }; - 31153087896082D206A4FB09F2A31C65 /* Nimble-iOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Nimble-iOS-Info.plist"; sourceTree = ""; }; - 3125E0AEF4C07B3C967DB0A1D09ED6E0 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; - 312BF46E4E318C049EFD24288B49F860 /* IQTextInputViewNotification.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextInputViewNotification.release.xcconfig; sourceTree = ""; }; - 32266AE7F761B56C2F69BA2BE77054A0 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 32273C3579DDC80A0E04B464513AEC00 /* IQKeyboardToolbarManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Internal.swift"; path = "IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Internal.swift"; sourceTree = ""; }; + 30605FC513754B9EB9A34AB92CCFC7B3 /* JSONTreeView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSONTreeView.swift; path = Sources/JSONView/JSONTreeView.swift; sourceTree = ""; }; + 3131C3F4A28AC13180C4E311131193C7 /* Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig"; sourceTree = ""; }; + 3227DFD6305744C97AF950D7466F5F85 /* Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.plist"; sourceTree = ""; }; 3227F3FC45681D7CEE5D1355A532398A /* nanopb-nanopb_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "nanopb-nanopb_Privacy"; path = nanopb_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 324EA3CFFCCB06B5329A0DB87CC19A13 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; - 32BA42082EECC00B012859960BF28406 /* AsyncAwait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncAwait.swift; path = Sources/Nimble/Utils/AsyncAwait.swift; sourceTree = ""; }; - 32F6B838E42284ACF0782FC442FFA5D9 /* CwlPreconditionTesting.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlPreconditionTesting.release.xcconfig; sourceTree = ""; }; + 322DEE5FB71A9E96A341B511BF0403BB /* ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; sourceTree = ""; }; + 32649384E0CC1778A67679C905B06984 /* BeWithin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeWithin.swift; path = Sources/Nimble/Matchers/BeWithin.swift; sourceTree = ""; }; + 32D32B79D6DC04E1E545D20DE4AA6381 /* QuickSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpec.m; path = Sources/QuickObjectiveC/QuickSpec.m; sourceTree = ""; }; 331073598098173D1699703CF07AF019 /* ConsentViewController-iOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "ConsentViewController-iOS.release.xcconfig"; sourceTree = ""; }; 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PromisesObjC; path = FBLPromises.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 33B80CC8EE0ECAB695524973E039F545 /* CwlCatchBadInstructionPosix.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchBadInstructionPosix.swift; path = Sources/CwlPosixPreconditionTesting/CwlCatchBadInstructionPosix.swift; sourceTree = ""; }; - 33C6E68936062BDC159B49D3849FB9A0 /* CwlBadInstructionException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlBadInstructionException.swift; path = Sources/CwlPreconditionTesting/CwlBadInstructionException.swift; sourceTree = ""; }; - 341749C73A9DDC03BBFCB8BF4C77838B /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; + 3368D779A4F10DA753FD551B5E1CD67B /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainStorage.h; sourceTree = ""; }; + 33854AECA097DE4EB2C754E023B31DB3 /* Pods-Tests-ConsentViewController_ExampleTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-ConsentViewController_ExampleTests.modulemap"; sourceTree = ""; }; + 33B5CA37AA2F3603DDA4A2F7F1A2C41C /* ContainElementSatisfying.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContainElementSatisfying.swift; path = Sources/Nimble/Matchers/ContainElementSatisfying.swift; sourceTree = ""; }; 341C37DA1D524CCE2CA4C1E503E822E8 /* SPCCPAConsent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPCCPAConsent.swift; sourceTree = ""; }; - 3427A27AC38028C5399CAE2BCF841D6E /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Quick/DSL/DSL.swift; sourceTree = ""; }; - 34965BE65DC9DDC12BA274BB3D89E801 /* Pods-Tests-AuthExampleUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-AuthExampleUITests.modulemap"; sourceTree = ""; }; - 34D989935F30D00E606AE11B4B623E01 /* FirebaseCoreInternal-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-prefix.pch"; sourceTree = ""; }; - 34F831AA769E614261D410BF227A2838 /* JSONView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JSONView-prefix.pch"; sourceTree = ""; }; - 35117BB8160F1268BCD6A94B94FDEBCE /* IQKeyboardCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardCore.modulemap; sourceTree = ""; }; + 3432DADF2BA3478255509D961040CCA2 /* ToSucceed.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToSucceed.swift; path = Sources/Nimble/Matchers/ToSucceed.swift; sourceTree = ""; }; + 34C34399E24890F70D21E7D034B47D66 /* CwlMachBadInstructionHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlMachBadInstructionHandler.m; path = Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m; sourceTree = ""; }; + 34F7047E7670F741A663672BE90267D8 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; + 352B17327E2344FDF3FDBD44F45944D2 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; 35A574F4B3BD123791C31E94F754B3BA /* SPGDPRPartnersViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGDPRPartnersViewController.swift; sourceTree = ""; }; - 35C4A9F0DF15C70F4B42FA46D3195906 /* IQKeyboardAppearanceConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardAppearanceConfiguration.swift; path = IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceConfiguration.swift; sourceTree = ""; }; - 369624BF24186412CC06088709AEE3CF /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; - 36DEF60663BF3F1C3171A0D8C5246EC2 /* ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist"; sourceTree = ""; }; - 36E1993376CB5E7006909115A0334DE0 /* Pods-Tests-ConsentViewController_ExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-ConsentViewController_ExampleTests.debug.xcconfig"; sourceTree = ""; }; - 36F2B7CBA2ADF7578C1336DE88F9EDCA /* MatcherProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherProtocols.swift; path = Sources/Nimble/Matchers/MatcherProtocols.swift; sourceTree = ""; }; - 374E98AEF6664423828FD8464896DD0C /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; - 377CC3E93DF4518F2B7A6637C33D243F /* FIRCurrentDateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCurrentDateProvider.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.h; sourceTree = ""; }; - 379542535146E00C9B0A63990E7B5E0C /* Pods-Tests-NativeMessageExampleUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-NativeMessageExampleUITests-resources.sh"; sourceTree = ""; }; - 37BFCC7EAC8AA0681464CFDE2CF66640 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; + 3611514331DF9FE26618CFDAD657B115 /* Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.plist"; sourceTree = ""; }; + 3613BC1D9C76B49AA73C8A373C766DF7 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = ""; }; + 3677F11C8AE9FB7BFBA1CF30068D1B53 /* Polling.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Polling.swift; path = Sources/Nimble/Polling.swift; sourceTree = ""; }; + 367F0B37BA4F6AC11F3828F7FF5FCB69 /* Quick-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Quick-tvOS.release.xcconfig"; path = "../Quick-tvOS/Quick-tvOS.release.xcconfig"; sourceTree = ""; }; + 36F94BEF938C2DB39C9787CD7861BCE5 /* Nimble-tvOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Nimble-tvOS-prefix.pch"; path = "../Nimble-tvOS/Nimble-tvOS-prefix.pch"; sourceTree = ""; }; + 37546AE7AC44D9CF6B90FB1F1D2BD9CC /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; + 37FC59E9D44AF812BCB6A6B2B092B47D /* BeGreaterThanOrEqualTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThanOrEqualTo.swift; path = Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift; sourceTree = ""; }; 380358C9A223FE55A10AC25127FF1410 /* ConsentViewController-iOS */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "ConsentViewController-iOS"; path = ConsentViewController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 3826A2DF56DF42D8FE85E480068DB1CA /* Pods-Tests-SourcePointMetaAppUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-SourcePointMetaAppUITests-acknowledgements.markdown"; sourceTree = ""; }; - 393EA51584D351873633CE98B99B94F5 /* IQTextInputViewNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQTextInputViewNotification-Info.plist"; sourceTree = ""; }; - 39521561A3A1D050295F964A5391C69E /* QuickObjCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickObjCRuntime.h; path = Sources/QuickObjCRuntime/include/QuickObjCRuntime.h; sourceTree = ""; }; - 39AB7954D02DC29058E83B73A6DD1E61 /* FileHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FileHandler.swift; path = Sources/Utils/FileHandler.swift; sourceTree = ""; }; - 3A27B524BCCE68381BE0D1E3D5FEA7A6 /* Matcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Matcher.swift; path = Sources/Nimble/Matchers/Matcher.swift; sourceTree = ""; }; - 3AB123675C504DBA426F7267B79D3ACD /* Pods-Tests-SourcePointMetaAppUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-SourcePointMetaAppUITests.release.xcconfig"; sourceTree = ""; }; + 384CE5EF9A89CCDCCB2A5FA0C944D704 /* PostNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PostNotification.swift; path = Sources/Nimble/Matchers/PostNotification.swift; sourceTree = ""; }; + 384DAB83724B1BE1C35D238F3DDE4E05 /* Nimble-tvOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Nimble-tvOS-dummy.m"; path = "../Nimble-tvOS/Nimble-tvOS-dummy.m"; sourceTree = ""; }; + 38595C9ED20726799552B03E4954EAD1 /* Nimble-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-iOS-prefix.pch"; sourceTree = ""; }; + 38D58A401311D517AA1CC6ABBE502164 /* JSONView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JSONView-prefix.pch"; sourceTree = ""; }; + 38F9D36922805BFE98C8F15887DDA75F /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; + 391FC387FE91FBA3B5CA405EA4A7DE54 /* CwlCatchBadInstructionPosix.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchBadInstructionPosix.swift; path = Sources/CwlPosixPreconditionTesting/CwlCatchBadInstructionPosix.swift; sourceTree = ""; }; + 394AF961A6DEF53D7C9DD696528D846F /* Pods-Examples-ConsentViewController_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-ConsentViewController_Example.modulemap"; sourceTree = ""; }; + 3A6656A9D08DB2DAFE2F1319CCCECF1C /* CwlCatchExceptionSupport-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlCatchExceptionSupport-umbrella.h"; sourceTree = ""; }; + 3ABE01118809F2CA207C48F5E7281F0E /* Pods-Tests-SPGDPRExampleAppUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-SPGDPRExampleAppUITests-Info.plist"; sourceTree = ""; }; 3AC41A4E33416989A7D8796B73BA4A07 /* SP_Icon.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = SP_Icon.png; sourceTree = ""; }; - 3B11A9FF20684FE5D4B69A774C992D8C /* Pods-TVOSExampleApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TVOSExampleApp-dummy.m"; sourceTree = ""; }; - 3B85D4D2A37FA5B427857CDF7DE0C356 /* FirebaseInstallations-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseInstallations-Info.plist"; sourceTree = ""; }; - 3C04865CFD01F89FBBABA7275A2A7AFA /* FirebaseAnalytics-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "FirebaseAnalytics-xcframeworks.sh"; sourceTree = ""; }; - 3C720A34C11B645F17B554825FB8C54C /* IQKeyboardManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Debug.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/Debug/IQKeyboardManager+Debug.swift"; sourceTree = ""; }; - 3D1B346805890BCF6AC4E96655693FCC /* JSONView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JSONView.modulemap; sourceTree = ""; }; - 3D1BB9353EDDE03C354A5641DD350250 /* Pods-TVOSExampleAppUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TVOSExampleAppUITests-dummy.m"; sourceTree = ""; }; - 3D63F62472A8C43656BA08C00F303457 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; + 3B47AB36861159884CBB56FCE30C6F4C /* Pods-Examples-SourcepointFirebaseDemo-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-SourcepointFirebaseDemo-umbrella.h"; sourceTree = ""; }; + 3B484537A42667D240FE51C500AFD04B /* Pods-Examples-SourcepointFirebaseDemo-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-SourcepointFirebaseDemo-acknowledgements.plist"; sourceTree = ""; }; + 3B4ED918BC43013749D338B8FA108430 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkURLSession.h; sourceTree = ""; }; + 3B68109EAF2294448189C91ADD66FA41 /* CwlCatchExceptionSupport-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlCatchExceptionSupport-prefix.pch"; sourceTree = ""; }; + 3C8DBA703AA45E2CC3DB44A2D0C3CF84 /* Pods-Tests-AuthExampleUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-AuthExampleUITests.debug.xcconfig"; sourceTree = ""; }; + 3CA75820FBF48DE87826D69A57262161 /* WHBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHBundle.swift; path = Sources/Subclasses/WHBundle.swift; sourceTree = ""; }; 3D84D917232543120C0F6F4EEA4E1BA0 /* SPConsentManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPConsentManager.swift; path = ConsentViewController/Classes/SPConsentManager.swift; sourceTree = ""; }; - 3D861833DDD7FD6648C4077FAB6A45AD /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - 3DC4E9EF6EB31ED585E5F26358A9AB74 /* WHBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHBundle.swift; path = Sources/Subclasses/WHBundle.swift; sourceTree = ""; }; - 3E2B729B4FD4E54F4503424700745941 /* FIRTimestamp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTimestamp.m; path = FirebaseCore/Sources/FIRTimestamp.m; sourceTree = ""; }; + 3E23243F3244D77153C241B89D588965 /* QCKDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QCKDSL.h; path = Sources/QuickObjectiveC/DSL/QCKDSL.h; sourceTree = ""; }; 3E61BABB7274D17637E09D5A58A03EFB /* ErrorMetricsRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ErrorMetricsRequest.swift; sourceTree = ""; }; 3E88639B1919779EA4D947458F865C3F /* Pods-Tests-AuthExampleUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Tests-AuthExampleUITests"; path = Pods_Tests_AuthExampleUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 3EC6888F5775C185C1CDDABBBDBBA30D /* PollAwait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PollAwait.swift; path = Sources/Nimble/Utils/PollAwait.swift; sourceTree = ""; }; 3F238BB22C5201CE689CAF2F766AED95 /* PromisesObjC-FBLPromises_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "PromisesObjC-FBLPromises_Privacy"; path = FBLPromises_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 3F9C078C5139CC0543A765E2FF230C90 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; - 405145A208D170668343E2B587091B94 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Public/GoogleUtilities/GULReachabilityChecker.h; sourceTree = ""; }; - 408D31239F9070332AFEAD914F96DFFF /* Pods-Examples-AuthExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-AuthExample.debug.xcconfig"; sourceTree = ""; }; - 40902E1C1B82C32A82C26838C74E00BD /* Pods-Tests-ObjC-ExampleAppUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-ObjC-ExampleAppUITests.release.xcconfig"; sourceTree = ""; }; + 3F50CDEE330B16E77A1C15B13074A67F /* Pods-Examples-AuthExample-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-AuthExample-umbrella.h"; sourceTree = ""; }; + 3FC642299C8549A1C8CE4D110E7882CE /* Pods-TVOSExampleAppUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TVOSExampleAppUITests.debug.xcconfig"; sourceTree = ""; }; + 40A5A2BE696836FCB9F987E11753924A /* Pods-Examples-ObjC-ExampleApp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-ObjC-ExampleApp.modulemap"; sourceTree = ""; }; + 40A7BE2D7FEA298684523EF1AEA0E373 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; + 40E481EFE0FFCF987FEAEBE638D68984 /* Pods-Tests-AuthExampleUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-AuthExampleUITests.release.xcconfig"; sourceTree = ""; }; + 415C4BB5DAE6607D35A2E9687629F147 /* GoogleAppMeasurement.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.release.xcconfig; sourceTree = ""; }; 41AF835CF9F5E221DEABDA6B8F4653CF /* SPPreferencesConsent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPPreferencesConsent.swift; sourceTree = ""; }; - 41BAC8F250BD7588F95DD766836F4A64 /* FirebaseInstallations.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.debug.xcconfig; sourceTree = ""; }; - 41D24BF5A5CF5980FC9E5A5AAB880EA9 /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; - 4204D4D8DE29AC6CFE2054942CA4F4F7 /* GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleUtilities-Info.plist"; sourceTree = ""; }; - 42309A7D3A62F66FC79D91D12F041257 /* JSONCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSONCell.swift; path = Sources/JSONView/JSONCell.swift; sourceTree = ""; }; + 41F347D05F599B186CDF18BFC78AFC05 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; + 42474F1E93115B16AA6C7E9E73C6BEFD /* FirebaseAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.debug.xcconfig; sourceTree = ""; }; 4261DEFFFD9A94613A8785C9274D9CFB /* SPGDPRPartnersViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPGDPRPartnersViewController.xib; sourceTree = ""; }; - 4265AA8465B4B7BE72ED42FB5ECE3E61 /* JSONTreeView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSONTreeView.swift; path = Sources/JSONView/JSONTreeView.swift; sourceTree = ""; }; - 426F5B92361AD6E50C2720924378BBBD /* NSURLSessionConfiguration+Wormholy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLSessionConfiguration+Wormholy.m"; path = "Sources/Objc/NSURLSessionConfiguration+Wormholy.m"; sourceTree = ""; }; 42B542E34AECF235CB07BFF55CE23673 /* QueryParamEncodableProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = QueryParamEncodableProtocol.swift; sourceTree = ""; }; - 42DDA6EA4552D7101BA8815109178F18 /* Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig"; sourceTree = ""; }; - 43244700C4FEBF5415C1C05108E62092 /* Polling+AsyncAwait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Polling+AsyncAwait.swift"; path = "Sources/Nimble/Polling+AsyncAwait.swift"; sourceTree = ""; }; - 4343EC7089D74DDC80E6AFD2047A3942 /* Pods-Tests-NativeMessageExampleUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-NativeMessageExampleUITests-acknowledgements.markdown"; sourceTree = ""; }; + 42DA89C9B6E1A0EF2D37DC044D3E20CD /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetwork.h; sourceTree = ""; }; 437B791FEDC5C4B595D6D29500E11197 /* JSONView */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = JSONView; path = JSONView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 43EAE0D413F9625D75E608495B1CD93E /* BodyDetailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BodyDetailViewController.swift; path = Sources/UI/BodyDetailViewController.swift; sourceTree = ""; }; - 4424C873A8239E14D307C7649C328BDF /* Pods-Examples-SourcePointMetaApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-SourcePointMetaApp-dummy.m"; sourceTree = ""; }; - 44D7A9D4428EC8819191D61354C9DDD3 /* UIView+IQKeyboardExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardExtension.swift"; path = "IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtension.swift"; sourceTree = ""; }; + 4393CF8AA70020C0E7F43105EC1DEEBF /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = ""; }; + 441FCD6C1FDA7C5F43235BFBDF880A17 /* AsyncAwait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncAwait.swift; path = Sources/Nimble/Utils/AsyncAwait.swift; sourceTree = ""; }; + 4458D1091D559C633515A51150C0DEE0 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; + 448E9E77ED29977D713BCD92DE87AB2D /* CwlCatchException.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CwlCatchException.modulemap; sourceTree = ""; }; 44E291D18340EAC3F761346198515323 /* GoogleUtilities-GoogleUtilities_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "GoogleUtilities-GoogleUtilities_Privacy"; path = GoogleUtilities_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 44E39F8D18D1E7093CA122B1010CE382 /* FirebaseCoreInternal-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreInternal-dummy.m"; sourceTree = ""; }; - 45B6A9569AD616EB3333C41F956D0139 /* Nimble-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Nimble-iOS.modulemap"; sourceTree = ""; }; - 45CCAA33B4BD0BAAF99B43138097D414 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.markdown"; sourceTree = ""; }; - 46367C53AA7BD8F5B1CD21B4DD263A0F /* Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.markdown"; sourceTree = ""; }; - 46DC532A2458C8E24116BF023C0C228D /* World+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "World+DSL.swift"; path = "Sources/Quick/DSL/World+DSL.swift"; sourceTree = ""; }; - 46DECD16C4B5D1902DD9C67D4E8B0D99 /* PostNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PostNotification.swift; path = Sources/Nimble/Matchers/PostNotification.swift; sourceTree = ""; }; - 472271800CA69830B18B7832F8BF110D /* CwlPosixPreconditionTesting-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CwlPosixPreconditionTesting-Info.plist"; sourceTree = ""; }; - 4751DD6B17333E933F4633D6E698BA65 /* WHView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHView.swift; path = Sources/Subclasses/WHView.swift; sourceTree = ""; }; - 475D9F18CAAD368552304C5852F05426 /* AsyncTimerSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncTimerSequence.swift; path = Sources/Nimble/Utils/AsyncTimerSequence.swift; sourceTree = ""; }; - 477405BF4D1FBDEDBF1A82AD3DE52801 /* Nimble-iOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Nimble-iOS.release.xcconfig"; sourceTree = ""; }; - 4786F1528AEAFE22B0990AE56086BF38 /* Pods-TVOSExampleAppUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TVOSExampleAppUITests-acknowledgements.markdown"; sourceTree = ""; }; + 4526DBFFDE56165E758EA42C2C6B6F0A /* JSONCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSONCell.swift; path = Sources/JSONView/JSONCell.swift; sourceTree = ""; }; + 4535635A06F1DFFEA38591BF903BAAB6 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 4571B1E59B818C137F7B607D94E42743 /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; + 457AA5FBD8CFE8D85E466205678726EE /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; + 45D4ADE4A0A2CCDEDCC8D230EF26BC12 /* Pods-Examples-ObjC-ExampleApp-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-ObjC-ExampleApp-Info.plist"; sourceTree = ""; }; + 462B2AEFDB6F73AADFBB9D28D5A983CE /* NimbleSwiftTestingHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleSwiftTestingHandler.swift; path = Sources/Nimble/Adapters/NimbleSwiftTestingHandler.swift; sourceTree = ""; }; + 463C661070B6082D24D57F8E9811D312 /* CurrentSpec.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurrentSpec.swift; path = Sources/Quick/CurrentSpec.swift; sourceTree = ""; }; + 4696D09BF427952653E303D3DCD6E794 /* Contain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Contain.swift; path = Sources/Nimble/Matchers/Contain.swift; sourceTree = ""; }; + 4761B59C9FEB30EF00FE116CF2924497 /* Pods-TVOSExampleApp-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TVOSExampleApp-acknowledgements.plist"; sourceTree = ""; }; + 4780B3F7DD14B0085A2095F9BFCE0154 /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; + 479FD5D9017743383ADC818A4A1F6B9A /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; 47C581450CDB4A6111CB97EEE0711A8C /* FirebaseInstallations-FirebaseInstallations_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "FirebaseInstallations-FirebaseInstallations_Privacy"; path = FirebaseInstallations_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 48083DE72EF8FFB2C009AEF98D922690 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = FirebaseInstallations/Source/Library/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 480A6F751D5CC62587A6E70F578A7252 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainUtils.h; sourceTree = ""; }; - 4839977FE2F318D830B3611AAC7E0B07 /* ExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleGroup.swift; path = Sources/Quick/ExampleGroup.swift; sourceTree = ""; }; - 4847673071B546336221625AD9A94683 /* IQKeyboardReturnManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardReturnManager.swift; path = IQKeyboardReturnManager/Classes/IQKeyboardReturnManager.swift; sourceTree = ""; }; - 48A552628325A8E063430D78445EB2F1 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - 49550D844E07013FA3B4314D5FFDDFD2 /* Pods-Tests-SourcePointMetaAppUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-SourcePointMetaAppUITests-umbrella.h"; sourceTree = ""; }; - 4A6F4473374AD88703DDD7B603DCD0CF /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; - 4ADDA488291A6D529F8E8EB01E2DABB9 /* Pods-Tests-ObjC-ExampleAppUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-ObjC-ExampleAppUITests.modulemap"; sourceTree = ""; }; - 4AFBE8FB5A27028CAA743C0E5513B480 /* SPMobileCore-iOS-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "SPMobileCore-iOS-xcframeworks.sh"; sourceTree = ""; }; - 4B2ED71044E7761E480E636165D8EFC6 /* IQKeyboardManager+Resign_Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Resign_Deprecated.swift"; path = "IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign_Deprecated.swift"; sourceTree = ""; }; - 4B2F037708CF295D855EFDAD564C8EB8 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; + 48F2C1D3E230A35FF802D289A488BFA5 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkLoggerProtocol.h; sourceTree = ""; }; + 498A3EDFE6F43066D1D7A0024AFC6CFE /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; + 4A320257F794218399DCB0A09D36339A /* CwlPreconditionTesting.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlPreconditionTesting.release.xcconfig; sourceTree = ""; }; 4B52B86C338468857F2E798179EBEC53 /* Pods-Tests-SPGDPRExampleAppUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Tests-SPGDPRExampleAppUITests"; path = Pods_Tests_SPGDPRExampleAppUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 4B97AD650825ED664F18595A643EDB28 /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = ""; }; 4BEAC88AF84CC484F55B8A6C048444D9 /* ConsentViewController-iOS-ConsentViewController */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "ConsentViewController-iOS-ConsentViewController"; path = ConsentViewController.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 4C1D1AC22D8A04C1B881C008DB0F7CC7 /* DSL+Require.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+Require.swift"; path = "Sources/Nimble/DSL+Require.swift"; sourceTree = ""; }; - 4C60DC2B63ACF15C0A2D4E186A8D9450 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; - 4C8B3DAC5F77F196D806BEFA672A46F3 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/GULAppEnvironmentUtil.m; sourceTree = ""; }; - 4CF88DAEFC6154DED003F3A02E3B6AF3 /* Nimble-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-iOS-umbrella.h"; sourceTree = ""; }; - 4D134D185F0A1280D1156DE4DE30993C /* ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; sourceTree = ""; }; + 4BFAD61A44D8A47E9420E6320336F16B /* Pods-TVOSExampleApp-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TVOSExampleApp-acknowledgements.markdown"; sourceTree = ""; }; + 4D7246DDC44ED9E5CF7F0DE1BD77AEB3 /* Pods-Tests-ConsentViewController_ExampleTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-ConsentViewController_ExampleTests-umbrella.h"; sourceTree = ""; }; 4DB03FD262B678178A44272143846563 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "FirebaseCoreInternal-FirebaseCoreInternal_Privacy"; path = FirebaseCoreInternal_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 4E02A55905C0BF2681E14D8456919ADA /* WHString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHString.swift; path = Sources/Subclasses/WHString.swift; sourceTree = ""; }; - 4E0C55A5303CFB5640DC3BDA91663E33 /* JSONView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JSONView-umbrella.h"; sourceTree = ""; }; - 4E3AF0B8A81D565A7E4CFA7B9C4B5154 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; - 4E616169FBC8240945FC48D592274B4A /* RaisesException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RaisesException.swift; path = Sources/Nimble/Matchers/RaisesException.swift; sourceTree = ""; }; - 4F3051F39A3AC899C9B540C520ABD5B9 /* IQKeyboardNotification-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardNotification-umbrella.h"; sourceTree = ""; }; - 4F53645178AE07E277B7D5E4578CA33A /* Pods-Tests-ObjC-ExampleAppUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-ObjC-ExampleAppUITests-resources.sh"; sourceTree = ""; }; - 4F93C65D23B8F7BDEB501077294DE0F0 /* IQKeyboardToolbar-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardToolbar-dummy.m"; sourceTree = ""; }; - 50141C4DB9D565A094540C8C0AB11EFA /* ResourceBundle-Wormholy-Wormholy-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Wormholy-Wormholy-Info.plist"; sourceTree = ""; }; - 5015B13471ACDFF298E6E6397EF432D4 /* GoogleAppMeasurementIdentitySupport.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = GoogleAppMeasurementIdentitySupport.xcframework; path = Frameworks/GoogleAppMeasurementIdentitySupport.xcframework; sourceTree = ""; }; - 5074B22265EA17DA123B92F5460B22F8 /* IQKeyboardExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardExtended.swift; path = IQKeyboardCore/Classes/IQKeyboardExtended.swift; sourceTree = ""; }; - 5076611C4673EEC7B845A13EEDAABDCD /* Pods-Examples-ObjC-ExampleApp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-ObjC-ExampleApp-umbrella.h"; sourceTree = ""; }; - 50EAF75774A8D0D95B92DB43E3CDD6AE /* FIRTimestamp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestamp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRTimestamp.h; sourceTree = ""; }; - 50FB40779EF49E222850B94FF5E486A9 /* CwlCatchBadInstruction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchBadInstruction.swift; path = Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift; sourceTree = ""; }; - 51933828D8851062D12D91760880D827 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Nimble/DSL.swift; sourceTree = ""; }; - 521BC1A6E8948B3E5D58D3B8625D825E /* Quick-tvOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "Quick-tvOS-Info.plist"; path = "../Quick-tvOS/Quick-tvOS-Info.plist"; sourceTree = ""; }; + 4E9C5FB6628EC9A3D3E2F9BBC5760F25 /* Pods-Examples-NativeMessageExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-NativeMessageExample.debug.xcconfig"; sourceTree = ""; }; + 4EBB725AC5BF7E0F77E625A5DA4315CA /* CwlPosixPreconditionTesting.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlPosixPreconditionTesting.release.xcconfig; sourceTree = ""; }; + 4F68489EC6CE03CD58D1D4DE0C761653 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; + 4FF57620216205DA4788783F34D8BA0F /* Quick-iOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Quick-iOS-Info.plist"; sourceTree = ""; }; + 503F85CEBC7BA6882CC2DB5C37743B6C /* FIRTimestamp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestamp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRTimestamp.h; sourceTree = ""; }; + 50E8DD150C18816A42BAA6A0D9977D5B /* JSONView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JSONView-umbrella.h"; sourceTree = ""; }; + 512E962EA6C47F4678880930CB2C73FD /* BeNil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeNil.swift; path = Sources/Nimble/Matchers/BeNil.swift; sourceTree = ""; }; + 51CD3C7D17AABA82467F35AF824AD67F /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; 522F23E47E472ADB4AE7F2B949926F49 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 526CB7DD55C46C5D61E56736B270451E /* Pods-Examples-SourcePointMetaApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-SourcePointMetaApp.release.xcconfig"; sourceTree = ""; }; - 5336E0A0BE79D766683D1D4907760DD4 /* JSONView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "JSONView-Info.plist"; sourceTree = ""; }; + 530FA7D14A5579E848ABE3248570CF88 /* CwlPosixPreconditionTesting.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CwlPosixPreconditionTesting.modulemap; sourceTree = ""; }; 534D623ADD013C7F78FFE22047E69951 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests"; path = Pods_Tests_FirebaseTests_SourcepointFirebaseDemoTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 535474DC1B52AA0BE310C17803121EC2 /* PollAwait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PollAwait.swift; path = Sources/Nimble/Utils/PollAwait.swift; sourceTree = ""; }; 535E06755C3CD0BAF29EC6CCC440D468 /* ConsentViewController.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ConsentViewController.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5393C11706FE1D32CACED7EBDE82926B /* Nimble-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Nimble-tvOS.debug.xcconfig"; path = "../Nimble-tvOS/Nimble-tvOS.debug.xcconfig"; sourceTree = ""; }; + 53A96ADB84F50B33405CB597E3C56835 /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; + 53BCCF0731509F7CF340D2763034DFD5 /* Quick-iOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Quick-iOS.debug.xcconfig"; sourceTree = ""; }; + 53C5E3DDD7DDA5B0CD1064A160144E2F /* FirebaseCoreInternal-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreInternal-dummy.m"; sourceTree = ""; }; 53E5FC8C35255A7A82860F62CB1CAD67 /* PrivacyManagerViewData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PrivacyManagerViewData.swift; sourceTree = ""; }; - 53F00746A713E8D3E29D36852B7F2A61 /* IQPlaceholderable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPlaceholderable.swift; path = IQKeyboardToolbar/Placeholderable/IQPlaceholderable.swift; sourceTree = ""; }; + 544C1F5C16E391B7384639F660F07C21 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULSwizzler.h; sourceTree = ""; }; 544D049FDBD11D7D2116C49CE621A93D /* SPLocalStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPLocalStorage.swift; sourceTree = ""; }; - 546A5C96B214B4119CD401BBE32E8356 /* GoogleAppMeasurement.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.debug.xcconfig; sourceTree = ""; }; - 547430F6B989F18B64D86FFC4646F10D /* Quick.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Quick.h; path = Sources/QuickObjectiveC/Quick.h; sourceTree = ""; }; - 54A470A44EDE551DA0AFA256D2C5D4FF /* HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatController.swift; sourceTree = ""; }; - 54D129B0FF00E96ADA5E985D90AEB12D /* NimbleTimeInterval.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleTimeInterval.swift; path = Sources/Nimble/Utils/NimbleTimeInterval.swift; sourceTree = ""; }; - 554E73FAC9498CC927F625583063183E /* ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist"; sourceTree = ""; }; + 54B38072CD0EF812CC7823E6F57CD5E6 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkConstants.h; sourceTree = ""; }; 55908634686A3DF6ECCEE78419BBA7A9 /* Pods-Examples-ConsentViewController_Example */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Examples-ConsentViewController_Example"; path = Pods_Examples_ConsentViewController_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 561022AEBBB35FACDF6EF8E49CE29A97 /* CwlPosixPreconditionTesting-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CwlPosixPreconditionTesting-dummy.m"; sourceTree = ""; }; - 5632689C6FB84E1275F7312AAC7B9057 /* SatisfyAnyOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAnyOf.swift; path = Sources/Nimble/Matchers/SatisfyAnyOf.swift; sourceTree = ""; }; - 565B305791378E3B5B9A4BC25591AFD5 /* CwlCatchExceptionSupport-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlCatchExceptionSupport-prefix.pch"; sourceTree = ""; }; - 566DC6D20B0F5F351EB9C44333DFC8B7 /* Pods-Tests-SourcePointMetaAppUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-SourcePointMetaAppUITests-resources.sh"; sourceTree = ""; }; - 56E21CE4558584557CD31CE1F28B1AC1 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Storage.swift; sourceTree = ""; }; - 57C8639AECBE3039B06E1D4F4950AF83 /* Pods-TVOSExampleAppUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TVOSExampleAppUITests-Info.plist"; sourceTree = ""; }; - 57F011CBC15D2E26EA44927B4C29E325 /* FirebaseCoreInternal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.release.xcconfig; sourceTree = ""; }; - 57F6A38A715E840F139F01FC9CDAA272 /* Pods-TVOSExampleAppUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-TVOSExampleAppUITests.modulemap"; sourceTree = ""; }; - 588242DA939C771DAED4F4CAD87ADD5D /* IQKeyboardCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardCore-dummy.m"; sourceTree = ""; }; - 58C9FAAE4EC65C106EE35B0F9CB1D07F /* BeLessThanOrEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThanOrEqual.swift; path = Sources/Nimble/Matchers/BeLessThanOrEqual.swift; sourceTree = ""; }; - 58E0351200843A0258ABD52F8867F39C /* CwlMachBadInstructionHandler.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlMachBadInstructionHandler.debug.xcconfig; sourceTree = ""; }; - 59C79470037DDC297119D5F6E19B71ED /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; - 5A317EFAAAB1C79D69C0D7B97455B293 /* Nimble-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-iOS-prefix.pch"; sourceTree = ""; }; - 5A441555053329B1FD92D1D576E2E73C /* Pods-Tests-ObjC-ExampleAppUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-ObjC-ExampleAppUITests-Info.plist"; sourceTree = ""; }; - 5A89F671C269C20114AD5CEEF81E691E /* IQKeyboardManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Internal.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Internal.swift"; sourceTree = ""; }; - 5A95B9C8BA2A4CE41E994F89F6DD5A5B /* Pods-Examples-ConsentViewController_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-ConsentViewController_Example-resources.sh"; sourceTree = ""; }; + 55A5D4083D8DBB3CCE07AEC45843B7A7 /* ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; sourceTree = ""; }; + 55B41B068310EFBB9FE1665C5A225DA2 /* AsyncWorld.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncWorld.swift; path = Sources/Quick/Async/AsyncWorld.swift; sourceTree = ""; }; + 55D3A53AAEA41B111E5221B41BDDCD65 /* CwlCatchExceptionSupport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlCatchExceptionSupport.release.xcconfig; sourceTree = ""; }; + 563D7A75116C319C272C760A68B001B9 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore/FirebaseCore.h; sourceTree = ""; }; + 56903A24DFEEEE17BCCB74C60DAA505D /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; + 56A5FF710324E88DF01167AA05E0A73B /* HaveCount.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HaveCount.swift; path = Sources/Nimble/Matchers/HaveCount.swift; sourceTree = ""; }; + 58076705F607BB2F4741F98BA11EEA4D /* CwlCatchException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlCatchException.h; path = Sources/CwlCatchExceptionSupport/include/CwlCatchException.h; sourceTree = ""; }; + 58785B1FBB704D46B0A37BD1962EB421 /* Pods-Tests-NativeMessageExampleUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-NativeMessageExampleUITests.modulemap"; sourceTree = ""; }; + 58D58BA0B172E442BA8F040546731303 /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; + 58D7D30A9A0EBC74CFB29C0DC69DB058 /* JSONView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSONView.swift; path = Sources/JSONView/JSONView.swift; sourceTree = ""; }; + 58F593C0F96BE561B1E740AEFF450B5E /* CwlCatchBadInstruction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchBadInstruction.swift; path = Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift; sourceTree = ""; }; + 590EB8BEF9B1DC5BF894455AA3673415 /* FIRTimestamp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTimestamp.m; path = FirebaseCore/Sources/FIRTimestamp.m; sourceTree = ""; }; + 5A22DFECEFEB682092C9E0A7176FD7E1 /* QuickSelectedTestSuiteBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickSelectedTestSuiteBuilder.swift; path = Sources/Quick/QuickSelectedTestSuiteBuilder.swift; sourceTree = ""; }; + 5A4A014DF823D4524181C26472988F59 /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; 5AA271D4DC66755169C7CC3499EB4EF8 /* SPGDPRCategoryDetailsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGDPRCategoryDetailsViewController.swift; sourceTree = ""; }; 5B4EE46F7F6CD84E907D32A3E394405B /* ConsentStatus.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConsentStatus.swift; sourceTree = ""; }; - 5BBD1E205379B81F63953505E8DB604D /* Pods-TVOSExampleApp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-TVOSExampleApp.modulemap"; sourceTree = ""; }; + 5BCA4F64161C9021E4F22D08E1E88F63 /* GULNetworkInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInfo.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULNetworkInfo.h; sourceTree = ""; }; 5BF731E1A10A5B0E656AC139B62F8213 /* SPGPPConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPGPPConfig.swift; path = ConsentViewController/Classes/SPGPPConfig.swift; sourceTree = ""; }; - 5C6E0A6079652131BBD0DBAEEAC0EFAA /* ContainElementSatisfying.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContainElementSatisfying.swift; path = Sources/Nimble/Matchers/ContainElementSatisfying.swift; sourceTree = ""; }; - 5C96D65BC5F38F7BD3C64D787B14CAC7 /* Pods-Examples-ConsentViewController_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-ConsentViewController_Example-Info.plist"; sourceTree = ""; }; - 5CA7BC50BD57C2265DA3CD531E6B596A /* Pods-TVOSExampleApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TVOSExampleApp.debug.xcconfig"; sourceTree = ""; }; - 5CE996234BE50E6434DA4D63813370B8 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.plist"; sourceTree = ""; }; - 5D31896522ED33BA384049E391718EA8 /* Pods-Examples-AuthExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-AuthExample.release.xcconfig"; sourceTree = ""; }; - 5D52CD7197ACC1E43E8550270796A4CE /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m"; sourceTree = ""; }; + 5C32F6686B90756776B4F02AE6AD2CFB /* Pods-Tests-NativeMessageExampleUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-NativeMessageExampleUITests-acknowledgements.plist"; sourceTree = ""; }; + 5C4233608E03838BD18EB394195E9253 /* StorageFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StorageFactory.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/StorageFactory.swift; sourceTree = ""; }; + 5CA07F5CA74B6366B6A8E3530806101D /* Nimble-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Nimble-iOS-dummy.m"; sourceTree = ""; }; + 5D1180ABCC3693176DDD22CAC67DB156 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; 5DC2E71595175144336387BD6D2DE6BD /* ConsentViewController-tvOS */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "ConsentViewController-tvOS"; path = ConsentViewController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 5E08F59C00ADC343B643B1AE5B682C34 /* IQKeyboardManager+Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Deprecated.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/Deprecated/IQKeyboardManager+Deprecated.swift"; sourceTree = ""; }; - 5E0FDE098C322191908278E338777DB8 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = Sources/Nimble/Utils/Errors.swift; sourceTree = ""; }; - 5EC13EE03CEE8CE6A374E6B796A5FC24 /* CwlPosixPreconditionTesting-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlPosixPreconditionTesting-umbrella.h"; sourceTree = ""; }; - 5F0BAEF807330D071BABE9BE7ADD3BE3 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.release.xcconfig"; sourceTree = ""; }; - 5FF007DE16FC76B92D2B471ADE891BED /* AsyncBehavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncBehavior.swift; path = Sources/Quick/Async/AsyncBehavior.swift; sourceTree = ""; }; - 6048C9C73410A27C6B4FEACDFD819DF9 /* Heartbeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Heartbeat.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Heartbeat.swift; sourceTree = ""; }; - 60A70F335EE93EADD5D96E8BA805610B /* CwlPosixPreconditionTesting.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlPosixPreconditionTesting.release.xcconfig; sourceTree = ""; }; - 611A4150162221DA6ED1C214A3384D0B /* Postman.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Postman.swift; path = Sources/Models/Postman/Postman.swift; sourceTree = ""; }; - 61660CEC35D64BE67CB8E7393659FE56 /* ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist"; sourceTree = ""; }; + 5EA78D403B3C9A9647550B187B702DBA /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; + 5EB645812EBD9D147A583FF7C0B28BB6 /* WHDate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHDate.swift; path = Sources/Subclasses/WHDate.swift; sourceTree = ""; }; + 5F1282B41B90B3F9773DBF2031247610 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; + 5F15BF8424C6F0A58016EFE91A450340 /* SPMobileCore-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "SPMobileCore-tvOS.debug.xcconfig"; path = "../SPMobileCore-tvOS/SPMobileCore-tvOS.debug.xcconfig"; sourceTree = ""; }; + 5F39B530F0DBEB88C60FBF6759CD229C /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; + 5F4BBB95326DCB262CDC7D73C50D3518 /* Pods-Tests-AuthExampleUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-AuthExampleUITests-acknowledgements.markdown"; sourceTree = ""; }; + 6018EA50182C45CA561E789B98841942 /* Pods-Examples-AuthExample-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-AuthExample-Info.plist"; sourceTree = ""; }; + 6097CB13D34CFC992D614D6FD7536DF2 /* BeginWithPrefix.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWithPrefix.swift; path = Sources/Nimble/Matchers/BeginWithPrefix.swift; sourceTree = ""; }; + 60BDF6F81E1BB8325DF5E00FB38DD512 /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallations.h; sourceTree = ""; }; + 60CBFED711348A6A95F7BE9194E67B4A /* Pods-Examples-NativeMessageExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-NativeMessageExample.release.xcconfig"; sourceTree = ""; }; + 60E64396CA6F5B577F400C5C6A72A474 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; 617D70F6D92E44183B59218BA5F565AB /* SPWebViewExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPWebViewExtensions.swift; sourceTree = ""; }; + 619C06FAEA3D53A2B1550217D5321839 /* QuickTestObservation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestObservation.swift; path = Sources/Quick/QuickTestObservation.swift; sourceTree = ""; }; + 61A8434CED8A5A96AEE10FEDB9AF07D5 /* Pods-Examples-ConsentViewController_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-ConsentViewController_Example-dummy.m"; sourceTree = ""; }; + 623117FF974FB0FB1E6BCE68FA255F07 /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; 624334D7BEEF45679E6500B48CAF4E27 /* SharedNativeToCoreAdapters.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SharedNativeToCoreAdapters.swift; sourceTree = ""; }; - 627553C3D560EA9D715BD1548B0CF3D7 /* ExampleMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleMetadata.swift; path = Sources/Quick/Examples/ExampleMetadata.swift; sourceTree = ""; }; - 62965629485AC3CF2814EC22328196BD /* FIRInstallationsBackoffController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsBackoffController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.m; sourceTree = ""; }; - 629C5CA2DE65A4802EEBB04934FE67CE /* AsyncWorld.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncWorld.swift; path = Sources/Quick/Async/AsyncWorld.swift; sourceTree = ""; }; - 62E9A3917CEA0826634BC756095B0CED /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; - 63A5CD371E3230565E30896165B49380 /* TextTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextTableViewCell.swift; path = Sources/UI/Cells/TextTableViewCell.swift; sourceTree = ""; }; - 6418E555DA5A4E396C2E2745514B6FAA /* FirebaseCoreInternal.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreInternal.modulemap; sourceTree = ""; }; - 648DE500AC655E43506E8FFC34CB1A68 /* Pods-Examples-ObjC-ExampleApp-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-ObjC-ExampleApp-Info.plist"; sourceTree = ""; }; - 64C1435AAFD0344CE9E34B6CFFB7E446 /* IQKeyboardCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardCore.debug.xcconfig; sourceTree = ""; }; + 6257BFEAB1C9D0C2CCE7BB18FD92A809 /* Postman.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Postman.swift; path = Sources/Models/Postman/Postman.swift; sourceTree = ""; }; + 62C620711079DF8B44B622108BE304BC /* CwlMachBadInstructionHandler-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CwlMachBadInstructionHandler-Info.plist"; sourceTree = ""; }; + 630A03DD6C387BDB69F68F8DE133CF6C /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; + 63FE314A41192D45ADD1573B04810CC7 /* Equal+TupleArray.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Equal+TupleArray.swift"; path = "Sources/Nimble/Matchers/Equal+TupleArray.swift"; sourceTree = ""; }; + 640199601037D9F58D130F079A21C25C /* SwiftLint.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftLint.release.xcconfig; sourceTree = ""; }; + 640843315170899821D4025D007D89D8 /* CwlMachBadInstructionHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlMachBadInstructionHandler-prefix.pch"; sourceTree = ""; }; + 64C6AFFB907364693ECA2156ACC287D1 /* AsyncMatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncMatcher.swift; path = Sources/Nimble/Matchers/AsyncMatcher.swift; sourceTree = ""; }; 64D94984CD5EFE5B89EF3B4A04CE304D /* SPSDK.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPSDK.swift; path = ConsentViewController/Classes/SPSDK.swift; sourceTree = ""; }; - 6526F67316636BAA3D3F8C518F0864BF /* Pods-Tests-SourcePointMetaAppUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-SourcePointMetaAppUITests-dummy.m"; sourceTree = ""; }; + 64E2FD17AA6762BEAB6E92778BF0E023 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; + 6538B3C5263E056463EC7683F013E881 /* FirebaseInstallations.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.release.xcconfig; sourceTree = ""; }; + 655871DA789EEC41DF528D0343083373 /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; + 657D9E02B58C822009DAB46B470667C3 /* Pods-Examples-NativeMessageExample-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-NativeMessageExample-resources.sh"; sourceTree = ""; }; 65AFDEE129A9DAC6CBD132DB5E56FEFC /* ConsentViewController-tvOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "ConsentViewController-tvOS-Info.plist"; path = "../ConsentViewController-tvOS/ConsentViewController-tvOS-Info.plist"; sourceTree = ""; }; + 65BF46DF058D3DB05DE71CA21C424E7E /* WHCollectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHCollectionView.swift; path = Sources/Subclasses/WHCollectionView.swift; sourceTree = ""; }; + 65E78853D1539A5677D5A62C8E79763E /* AsyncExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncExampleGroup.swift; path = Sources/Quick/Async/AsyncExampleGroup.swift; sourceTree = ""; }; + 662429CB6AC4E96BA6AE5E1183015142 /* BeAnInstanceOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAnInstanceOf.swift; path = Sources/Nimble/Matchers/BeAnInstanceOf.swift; sourceTree = ""; }; 663B58787E8E424813FCC0E36111F619 /* SPNativeUI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPNativeUI.swift; sourceTree = ""; }; - 6692BE461FE698493D4679C8B5A06CCD /* ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist"; sourceTree = ""; }; + 66D8DAFD85A0B991DCA00D3CE2A35DAA /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = spm_resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; 670261981CE4CA4F02735BAF553CF466 /* SPAppleTVButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPAppleTVButton.swift; sourceTree = ""; }; - 6715E66DF7F9EDC350EE746E15E38141 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 6751AA628C9101CE0A38B998514B0423 /* Pods-Tests-ConsentViewController_ExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-ConsentViewController_ExampleTests.release.xcconfig"; sourceTree = ""; }; + 6733421850C9E9063FEF14CDA37243C5 /* Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.markdown"; sourceTree = ""; }; + 674377EB7069465775ED50BAA4102EAF /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; 675870E9375216C86665B8B9D31444DE /* SPCampaignType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPCampaignType.swift; path = ConsentViewController/Classes/SPCampaignType.swift; sourceTree = ""; }; - 676E1BBA57754C7536CA90B5739F2021 /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; - 67957B9E77D349FDBA49CD741DA313D2 /* Stringers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stringers.swift; path = Sources/Nimble/Utils/Stringers.swift; sourceTree = ""; }; - 67D9BC63BA17B76B1576E38C7A1D0B96 /* Pods-Tests-AuthExampleUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-AuthExampleUITests-resources.sh"; sourceTree = ""; }; - 684D5E952D1884720316846DA0045368 /* UIView+ResignObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+ResignObjc.swift"; path = "IQKeyboardManagerSwift/Resign/UIKItExtensions/UIView+ResignObjc.swift"; sourceTree = ""; }; - 685A59C0FA2ECA35D010228012DE7F0B /* IQKeyboardToolbarManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardToolbarManager.modulemap; sourceTree = ""; }; - 68AD33968E37713F30DBAD66C6AD3933 /* Nimble-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Nimble-iOS-dummy.m"; sourceTree = ""; }; - 68D160079C28255B1CFB259E7055E78C /* StorageFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StorageFactory.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/StorageFactory.swift; sourceTree = ""; }; - 68F9CE8B1DE4A57B713F219E82E214CA /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-resources.sh"; sourceTree = ""; }; - 68FEC242A1E4E6AB8B33B184FC6149E6 /* Pods-Examples-NativeMessageExample.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-NativeMessageExample.modulemap"; sourceTree = ""; }; - 68FEF837542AF3581D997EC32A409228 /* GoogleUtilities.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleUtilities.modulemap; sourceTree = ""; }; - 69211393A493FE597E264D3C509449FE /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; - 6950705DDFFFB2F3B1FE714BEF549C3C /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; - 6958407BC993A53D89D27E4AA038B74E /* AtomicBox.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AtomicBox.swift; path = FirebaseCore/Internal/Sources/Utilities/AtomicBox.swift; sourceTree = ""; }; - 698B6323D03AD253DEAE782E65E107E7 /* QuickSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpec.m; path = Sources/QuickObjectiveC/QuickSpec.m; sourceTree = ""; }; - 69A957A19A6ADF826C4DD252DA689504 /* CwlCatchException-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CwlCatchException-Info.plist"; sourceTree = ""; }; + 67B74403F1DB0E06D2843B6A0BFAE5FA /* _ObjC_HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatController.swift; sourceTree = ""; }; + 67BD118284431B9B050B55B136CB3324 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; + 67C01F82F839EB6112EF59F7628F0A26 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; + 6861750A198D84D3DB0A4CC1D6D29E06 /* Pods-TVOSExampleAppUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TVOSExampleAppUITests-acknowledgements.markdown"; sourceTree = ""; }; + 68A266767518E3B4D84197B03E8EFB05 /* RaisesException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RaisesException.swift; path = Sources/Nimble/Matchers/RaisesException.swift; sourceTree = ""; }; + 6910437F69F8060DB1E41F17E14DA86A /* Equal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Equal.swift; path = Sources/Nimble/Matchers/Equal.swift; sourceTree = ""; }; + 694614A059CDC801BC904A72925A021E /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; + 6A1BEA3AA6DB7865E93A6268ECDCC5C2 /* Flow.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Flow.storyboard; path = Sources/UI/Flow.storyboard; sourceTree = ""; }; 6A8FF7C49AB2123F35AED9B5F16C56DC /* ConsentViewController-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "ConsentViewController-iOS.modulemap"; sourceTree = ""; }; - 6AF12426E4EBBD9E1FDCCCB1D791C2B2 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLoggerLevel.h; sourceTree = ""; }; + 6AE3AEE749B01825ACE3F44C1111B1BD /* FileHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FileHandler.swift; path = Sources/Utils/FileHandler.swift; sourceTree = ""; }; + 6AF4E875AA9FF50BC34EEFB327418AAF /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; 6AF75DCA5052B0584C35163F08BE31E6 /* GDPRPMPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GDPRPMPayload.swift; sourceTree = ""; }; - 6AF8199B31DC2D2E5AE8824F52F6D311 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = FirebaseCore/Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 6B9ACFD5AA593AE2F9E646FAD249CCAA /* IQKeyboardManager+Appearance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Appearance.swift"; path = "IQKeyboardManagerSwift/Appearance/IQKeyboardManager+Appearance.swift"; sourceTree = ""; }; - 6BEE253B425B0AFC6BE08AEB7A374D86 /* Wormholy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Wormholy.h; path = Sources/Wormholy.h; sourceTree = ""; }; - 6C1F4501D14ACE8C725D24BAED9BA31E /* QCKConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QCKConfiguration.swift; path = Sources/Quick/Configuration/QCKConfiguration.swift; sourceTree = ""; }; + 6AFA73929A513224468A91EDB21C124E /* Wormholy-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Wormholy-umbrella.h"; sourceTree = ""; }; + 6B13D0E6D8BB71D977E2E46018CAC51F /* SPMobileCore-iOS-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "SPMobileCore-iOS-xcframeworks.sh"; sourceTree = ""; }; + 6B1A3533F58C5A343C1793EF683E7124 /* SourceLocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SourceLocation.swift; path = Sources/Nimble/Utils/SourceLocation.swift; sourceTree = ""; }; + 6B1CB913D0C795005011229ABCA67947 /* JSONView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JSONView.debug.xcconfig; sourceTree = ""; }; + 6B25EA86E763C785603219CE4563ED76 /* FirebaseCoreInternal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.release.xcconfig; sourceTree = ""; }; + 6BE4CD616643D0E5833455E97C4AC2F5 /* Pods-Examples-AuthExample.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-AuthExample.modulemap"; sourceTree = ""; }; + 6C267FC91FF61F8F6D959793E124C676 /* InputStream+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "InputStream+Utils.swift"; path = "Sources/Utils/InputStream+Utils.swift"; sourceTree = ""; }; + 6C348D8B81A15C7A514C7AAA3648FCEB /* AsyncExample.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncExample.swift; path = Sources/Quick/Examples/AsyncExample.swift; sourceTree = ""; }; + 6C3C3E7B367223C0D0BA2CE56A7CE629 /* Wormholy-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Wormholy-prefix.pch"; sourceTree = ""; }; 6C5861E19176ED390054CBED3842109B /* ConsentViewController-iOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "ConsentViewController-iOS.debug.xcconfig"; sourceTree = ""; }; - 6CAEFCC3380710EA276C557B6B0F987F /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FirebaseInstallations.h; sourceTree = ""; }; - 6CDEEE3D45A46E2F48CEEAC14CC08D22 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLogger.h; sourceTree = ""; }; - 6D48730791EE2DDBFAF504114702BBC1 /* SourceLocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SourceLocation.swift; path = Sources/Nimble/Utils/SourceLocation.swift; sourceTree = ""; }; - 6D63C3BE8B1B77C639E6C8E1329CF3FC /* GoogleAppMeasurement.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = GoogleAppMeasurement.xcframework; path = Frameworks/GoogleAppMeasurement.xcframework; sourceTree = ""; }; - 6E031F91F1F99C88F5C25D358A8C2080 /* Pods-Tests-AuthExampleUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-AuthExampleUITests.release.xcconfig"; sourceTree = ""; }; + 6D41EAEA49CE14A55CC390B800588B31 /* WHView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHView.swift; path = Sources/Subclasses/WHView.swift; sourceTree = ""; }; 6E67FC0C023FEEE646E022609D24DEC6 /* SPPublisherData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPPublisherData.swift; sourceTree = ""; }; - 6E897F35E5E27028AC58B14B552FBC8D /* IQKeyboardCore-IQKeyboardCore */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardCore-IQKeyboardCore"; path = IQKeyboardCore.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 6EDD57EFE9FBA0B26CF75D4E1FDFE042 /* FirebaseInstallations.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseInstallations.modulemap; sourceTree = ""; }; + 6E89B513CEE32822C3678F04BC0D9F27 /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; + 6F0355A2C3AE0635078DFFDEBF53FE29 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; 6F422DC5A22E73E41CE4F61FA75179E0 /* SPGDPRManagePreferenceViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGDPRManagePreferenceViewController.swift; sourceTree = ""; }; - 6F603B49005B06B768E07C75B6EA395B /* IQKeyboardReturnManager.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardReturnManager.debug.xcconfig; sourceTree = ""; }; + 6F577EED3002B99FACC5F14F7C3582E0 /* Pods-Examples-ConsentViewController_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-ConsentViewController_Example-acknowledgements.plist"; sourceTree = ""; }; 6F85113A0AACDC00A440D14420910AE6 /* SPError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPError.swift; path = ConsentViewController/Classes/SPError.swift; sourceTree = ""; }; - 6F964FBA416ED6D27F11DAAA6C0D730B /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkMessageCode.h; sourceTree = ""; }; - 6FB1C98E910F1E6D0DACA28CF05FA08E /* IQKeyboardManagerSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-umbrella.h"; sourceTree = ""; }; 6FD841BE77E2D4BDDC8DF77D283B1FCB /* Constants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constants.swift; path = ConsentViewController/Classes/Constants.swift; sourceTree = ""; }; - 7006A5366815E0D1A1AC0BC96AF85400 /* AllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllPass.swift; path = Sources/Nimble/Matchers/AllPass.swift; sourceTree = ""; }; - 70098D87239066D9714D0F0671BF1C98 /* IQKeyboardManager+Resign.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Resign.swift"; path = "IQKeyboardManagerSwift/Resign/IQKeyboardManager+Resign.swift"; sourceTree = ""; }; - 70206F4AE991E4A6C241291B45B51CDA /* Pods-Examples-ObjC-ExampleApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-ObjC-ExampleApp-dummy.m"; sourceTree = ""; }; - 7074851D2482EE864C5FB2FAEB4F10E7 /* CwlMachBadInstructionHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlMachBadInstructionHandler-prefix.pch"; sourceTree = ""; }; - 70AAF1737DA93EA12FCC90DF925BEB8B /* Pods-Tests-ObjC-ExampleAppUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-ObjC-ExampleAppUITests-umbrella.h"; sourceTree = ""; }; - 70AE9BBBC6911F97C45CEC0AF6EB449C /* Pods-Examples-ConsentViewController_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-ConsentViewController_Example.modulemap"; sourceTree = ""; }; - 70C802EB30B4D174902F64BFEDF4B881 /* JSONView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSONView.swift; path = Sources/JSONView/JSONView.swift; sourceTree = ""; }; - 70D58BFE0C7816707CA6F1007755392E /* IQKeyboardManagerSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-prefix.pch"; sourceTree = ""; }; - 7161B5DCDFE49231562B55DAA6066E11 /* IQTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextView.swift; path = IQTextView/Classes/IQTextView.swift; sourceTree = ""; }; - 72A3F91679C52A3A821136E6505DD539 /* NMBExceptionCapture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBExceptionCapture.h; path = Sources/NimbleObjectiveC/include/NMBExceptionCapture.h; sourceTree = ""; }; - 72C7BE65FE543570C043A81113E9833F /* IQKeyboardManagerSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.release.xcconfig; sourceTree = ""; }; - 72C7F44C43C5690DC0B883678B1A6DCB /* URL+FileName.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+FileName.swift"; path = "Sources/Quick/URL+FileName.swift"; sourceTree = ""; }; - 72D4405C2F944B049C66D49781005AD6 /* FirebaseCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCore-umbrella.h"; sourceTree = ""; }; - 72E1118582C658FBC578564882E082E5 /* Pods-Tests-SourcePointMetaAppUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-SourcePointMetaAppUITests-acknowledgements.plist"; sourceTree = ""; }; - 7348485AC968CAF19EC5A3C6A4D7C8AB /* Pods-Examples-ConsentViewController_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-ConsentViewController_Example-acknowledgements.markdown"; sourceTree = ""; }; - 739151E711190C1BE5B2133E10E9289C /* ResourceBundle-IQTextView-IQTextView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQTextView-IQTextView-Info.plist"; sourceTree = ""; }; - 73B841F3C3994F9FB5964CFADC739D15 /* BeEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeEmpty.swift; path = Sources/Nimble/Matchers/BeEmpty.swift; sourceTree = ""; }; + 702C31205742BE62A8C78DBF33C59E18 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/GULAppEnvironmentUtil.m; sourceTree = ""; }; + 709C4FA6B5D55768897DFA8D968B4F93 /* Pods-Examples-NativeMessageExample.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-NativeMessageExample.modulemap"; sourceTree = ""; }; + 70F3E7DC5F6F33B6D6319849096FBAC8 /* WormholyMethodSwizzling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = WormholyMethodSwizzling.m; path = Sources/Objc/WormholyMethodSwizzling.m; sourceTree = ""; }; + 70F3F41435FE59FB06C0E827F63CA699 /* PromisesObjC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PromisesObjC.modulemap; sourceTree = ""; }; + 710E7506C59FEEDFAFD3B5F74D2EF6FD /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; + 71483518E5968E4B02F21A14E2E29860 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; + 7165F4339A1D7754C68B727150F09DB5 /* HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatController.swift; sourceTree = ""; }; + 71F5620491EDEF774D02716DE77B69FC /* mach_excServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mach_excServer.h; path = Sources/CwlMachBadInstructionHandler/mach_excServer.h; sourceTree = ""; }; + 7222A2484A3654D879E80317B612EEC6 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; + 72BDC80971614F239817E891B1BC5F50 /* AsyncTimerSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncTimerSequence.swift; path = Sources/Nimble/Utils/AsyncTimerSequence.swift; sourceTree = ""; }; + 7341EB953156871757EA8DCD193FAA39 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLoggerLevel.h; sourceTree = ""; }; + 7361308DA9F98C418C9DDDDEEFCCEF58 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = GoogleUtilities/Privacy/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 73B4CB67E390E11A2014EB32CA0E286E /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; + 73B8CA33151989BB179C3D17D42A2E92 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Nimble/DSL.swift; sourceTree = ""; }; 73F566CFB5F21F61AC2FA68F08AA0B2D /* Quick-tvOS */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Quick-tvOS"; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 740097A017371498ADAAA1D0AB5B7F1C /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - 7408933D9B881924358ABEB56C6EB596 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 7442995C363F851C85FE64B3A4B00C1B /* IQTextView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextView-umbrella.h"; sourceTree = ""; }; - 7450C79D8367028E8750FBD28FFB9EFF /* Pods-Tests-SPGDPRExampleAppUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-SPGDPRExampleAppUITests-resources.sh"; sourceTree = ""; }; + 7491C41A4C653109BFD69AA99EA36211 /* BeLessThanOrEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThanOrEqual.swift; path = Sources/Nimble/Matchers/BeLessThanOrEqual.swift; sourceTree = ""; }; 74CF2D6A2D0D5DB2BD259BCCF764887B /* LongButtonViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = LongButtonViewCell.xib; sourceTree = ""; }; - 752106479E76D0DD3449754C03EAB9D5 /* Pods-Tests-SPGDPRExampleAppUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-SPGDPRExampleAppUITests.modulemap"; sourceTree = ""; }; - 754BEF92020F4A1FC09E103BB777106A /* QuickConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickConfiguration.m; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.m; sourceTree = ""; }; - 759D3EA383B901D142D2FC3A8CB640DB /* Pods-Tests-SPGDPRExampleAppUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-SPGDPRExampleAppUITests-umbrella.h"; sourceTree = ""; }; - 75C4888BF100C27C1D9364F923E8C519 /* CwlPreconditionTesting.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlPreconditionTesting.debug.xcconfig; sourceTree = ""; }; - 76384906EF776A77A37571DC6C520E41 /* IQActiveConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQActiveConfiguration.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQActiveConfiguration.swift; sourceTree = ""; }; - 7659A6B7A2DCBEF9F67EF52B4C3237C0 /* Pods-Examples-ConsentViewController_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-ConsentViewController_Example.release.xcconfig"; sourceTree = ""; }; - 76A72D913A71A255191CC97A5B9D6B00 /* ResourceBundle-nanopb_Privacy-nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; sourceTree = ""; }; - 76CC76A46ED220FD18DEEF5E13F03F04 /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; - 76CDC09AC51552BBFCCE41349F1AB612 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainStorage.h; sourceTree = ""; }; - 7707BD7F05AEAD109DFAD1DC98CC9229 /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; - 774A94659F0BAD34ABD2D60D339BB3CB /* Pods-Examples-SourcepointFirebaseDemo-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-SourcepointFirebaseDemo-acknowledgements.markdown"; sourceTree = ""; }; + 7570991DD9ECFD7E8952782E6EE452C5 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; + 758F9DC4BC1BD9FA840D047B2D349CD5 /* AsyncExpression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncExpression.swift; path = Sources/Nimble/AsyncExpression.swift; sourceTree = ""; }; + 75EB5850E036D875B645903BA7A6A854 /* Pods-Examples-AuthExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-AuthExample.release.xcconfig"; sourceTree = ""; }; + 763F35265F75C8FE0232872A1279CFDC /* RequestModelBeautifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModelBeautifier.swift; path = Sources/Utils/RequestModelBeautifier.swift; sourceTree = ""; }; + 7657012FACCA8BEE19E8895F6814D0FE /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; + 7780FE6908644DB0276CB8EF63E29492 /* CwlPreconditionTesting-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CwlPreconditionTesting-dummy.m"; sourceTree = ""; }; 77A72569939F05DD3E89F62FC4D9A0B5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 77C1460EBE5ED2EA5DA2743DF370336D /* Negation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Negation.swift; path = Sources/Nimble/Matchers/Negation.swift; sourceTree = ""; }; - 784E78149BB92433D5D2BB064AEB14AF /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; - 78BB1E0EE2F9E90FAB93CF0A968AFF8D /* ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist"; sourceTree = ""; }; - 78C3F3C49789002B4A6B013FBF3C4F02 /* Pods-Examples-SourcePointMetaApp-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-SourcePointMetaApp-resources.sh"; sourceTree = ""; }; - 78C9F0EE3838CBA627CC3583703B9766 /* CwlPreconditionTesting-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CwlPreconditionTesting-Info.plist"; sourceTree = ""; }; - 790698D1907D96D40B94366B158B24F3 /* IQDeepResponderContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQDeepResponderContainerView.swift; path = IQKeyboardToolbarManager/Classes/IQDeepResponderContainerView.swift; sourceTree = ""; }; - 79613E4C842C69EAE38E095B7F90BD86 /* CwlMachBadInstructionHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlMachBadInstructionHandler.m; path = Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m; sourceTree = ""; }; - 79B5DEFDD954FFD119B8D63652978BD1 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; - 79E7601A02651FAC7415EEBCB49C9F6B /* UIView+IQKeyboardExtensionObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardExtensionObjc.swift"; path = "IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionObjc.swift"; sourceTree = ""; }; - 7A022E1234424683435C80940388BE00 /* IQInvocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQInvocation.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQInvocation.swift; sourceTree = ""; }; - 7A031FC6E352E7051CA493D7D23896D3 /* WHTableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHTableView.swift; path = Sources/Subclasses/WHTableView.swift; sourceTree = ""; }; + 77E2374282B613BED22F005FE99E946D /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 78A7B19E05B6B311A80634B10A410A31 /* Wormholy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Wormholy.swift; path = Sources/Wormholy.swift; sourceTree = ""; }; + 78FE85CA000CC0581969BAF127702A7B /* ActionableTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ActionableTableViewCell.swift; path = Sources/UI/Cells/ActionableTableViewCell.swift; sourceTree = ""; }; + 7911E69EF4CECB5DAF09A91C4530D33C /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; + 7936F9CC47E87196EADCC0A32CFE579A /* ElementsEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementsEqual.swift; path = Sources/Nimble/Matchers/ElementsEqual.swift; sourceTree = ""; }; + 79911075C9BA537C7A595057F5C998F3 /* Pods-Tests-ConsentViewController_ExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-ConsentViewController_ExampleTests.release.xcconfig"; sourceTree = ""; }; 7A8BEA359194E182211C25C9D398656E /* ResourceBundle-ConsentViewController-ConsentViewController-iOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-ConsentViewController-ConsentViewController-iOS-Info.plist"; sourceTree = ""; }; - 7AD5CBFF2CC535A21DC6948EDCDBE89C /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; - 7ADDC9DE53F9B7E1A134155B9342EECE /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; - 7B08161A2B63C49591A4C21B2AEC49EC /* World.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = World.swift; path = Sources/Quick/World.swift; sourceTree = ""; }; - 7B173ED8DF89128C483E3884E1F880C4 /* FirebaseAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.debug.xcconfig; sourceTree = ""; }; - 7B39D983F41A2F4973CCFC6C189B8AD3 /* Pods-TVOSExampleAppUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TVOSExampleAppUITests.debug.xcconfig"; sourceTree = ""; }; + 7AC531B7441C332B2FF950C6C46A2709 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; 7BC310208D21A2EB2923EBEE54FCADA2 /* GDPRPrivacyManagerViewResponse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GDPRPrivacyManagerViewResponse.swift; sourceTree = ""; }; - 7BFD36A5C928AC017F56C1D85904E4BA /* MatchError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatchError.swift; path = Sources/Nimble/Matchers/MatchError.swift; sourceTree = ""; }; - 7C776DCB2265A3C66F6F085B02E6B99C /* HeartbeatStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatStorage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatStorage.swift; sourceTree = ""; }; + 7C11A750AE50BB969297173FD07551F4 /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; 7C86F91CE1DB8CBB4F20B3FB5198EF7B /* SPCCPAManagePreferenceViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPCCPAManagePreferenceViewController.swift; sourceTree = ""; }; - 7CA189AE1D392490F0D8DE7E8A2DA829 /* Pods-TVOSExampleAppUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TVOSExampleAppUITests-resources.sh"; sourceTree = ""; }; + 7CC6F483F2401D89545DA4673098F155 /* Pods-Tests-ObjC-ExampleAppUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-ObjC-ExampleAppUITests-Info.plist"; sourceTree = ""; }; 7CDDC03D1A80206740DFE90B0356D8FC /* SPURLExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPURLExtensions.swift; sourceTree = ""; }; - 7D4924F4ABCA937EF78C6D630F046064 /* EndWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndWith.swift; path = Sources/Nimble/Matchers/EndWith.swift; sourceTree = ""; }; - 7D7548FA0CA956034ED94D367E83596F /* IQKeyboardToolbarManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbarManager-prefix.pch"; sourceTree = ""; }; - 7D9F63656FB06F22F2595187B0848068 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - 7DB9104337224F469F02FE1CFA054D8E /* CustomActivity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomActivity.swift; path = Sources/Subclasses/CustomActivity.swift; sourceTree = ""; }; - 7E051A6FB6BB8CE52354DC9EFBC6BD82 /* Pods-Examples-AuthExample-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-AuthExample-Info.plist"; sourceTree = ""; }; - 7E3030523C1A187A0F7FB9046B6FD01B /* Pods-Tests-ObjC-ExampleAppUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-ObjC-ExampleAppUITests.debug.xcconfig"; sourceTree = ""; }; - 7F434422B10709D0CAFE05DFAECA3FCD /* ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; sourceTree = ""; }; + 7D15F26D990993E96CC0397D58B9E47F /* Pods-Tests-AuthExampleUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-AuthExampleUITests-resources.sh"; sourceTree = ""; }; + 7D5FC13DE2F0DC1B3EF8C65E8074CD50 /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FirebaseInstallations.h; sourceTree = ""; }; + 7E1570CADFB386D0553E96EBC0C10F49 /* CwlMachBadInstructionHandler.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlMachBadInstructionHandler.debug.xcconfig; sourceTree = ""; }; + 7E6C776AB7AD85BFFD9E04FE1A6A838F /* TestState.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestState.swift; path = Sources/Quick/TestState.swift; sourceTree = ""; }; + 7E7489FE0B5548F7792286FF53D8AC5A /* FIRCurrentDateProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCurrentDateProvider.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.m; sourceTree = ""; }; 7F83F0546C6C0F7184FE189E8F4A06CF /* SPPropertyName.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPPropertyName.swift; path = ConsentViewController/Classes/SPPropertyName.swift; sourceTree = ""; }; - 7FEA1A4EC31069946A09F155DF282C30 /* UIView+Responders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Responders.swift"; path = "IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+Responders.swift"; sourceTree = ""; }; - 8000FCB5CE094901411B7A87080562DE /* Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.plist"; sourceTree = ""; }; + 7FD3BBDAAF1F07D0A59E3F98DBC9264E /* String+C99ExtendedIdentifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+C99ExtendedIdentifier.swift"; path = "Sources/Quick/String+C99ExtendedIdentifier.swift"; sourceTree = ""; }; + 7FF3A4F79F1A916C9F666486DBDF4784 /* Pods-TVOSExampleAppUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TVOSExampleAppUITests-resources.sh"; sourceTree = ""; }; 8009AFA883EF36EED39CC47F36FE7E69 /* Pods-Examples-AuthExample */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Examples-AuthExample"; path = Pods_Examples_AuthExample.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 80A40EDA3AF0499BDBCFF09467BB49AD /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardToolbarManager-IQKeyboardToolbarManager"; path = IQKeyboardToolbarManager.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 80A9DB66AE8726E0CB5FC058EDC77670 /* QuickSpecBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpecBase.h; path = Sources/QuickObjCRuntime/include/QuickSpecBase.h; sourceTree = ""; }; - 80FD0F0830832A49BBFE269D8A0848E1 /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; - 811DBEF851FD2262E20E4FD6A0478DFF /* Pods-Tests-SourcePointMetaAppUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-SourcePointMetaAppUITests-Info.plist"; sourceTree = ""; }; - 81333C8E5279606026C2964759B6A72B /* FIRFirebaseUserAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFirebaseUserAgent.m; path = FirebaseCore/Sources/FIRFirebaseUserAgent.m; sourceTree = ""; }; - 8193AC37D693F05389BC7EE7817E74E2 /* QuickTestSuite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestSuite.swift; path = Sources/Quick/QuickTestSuite.swift; sourceTree = ""; }; - 81B2DCD6F80D84C042CB7FA5F1C8FBCE /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; - 81DFF5B09AFDDA41E61A9BC5AEDDC6FD /* ToSucceed.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToSucceed.swift; path = Sources/Nimble/Matchers/ToSucceed.swift; sourceTree = ""; }; - 82C724D20EAC54F77E63A4B052CF0253 /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; - 8308C54DE95C976F10FACAADA52D2C28 /* JSONView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JSONView.release.xcconfig; sourceTree = ""; }; - 833828B6DA0C15775334C4481526CC58 /* Match.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Match.swift; path = Sources/Nimble/Matchers/Match.swift; sourceTree = ""; }; - 83BDC41EE48D14B7FE0F66177BCDDC49 /* IQKeyboardNotification-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardNotification-prefix.pch"; sourceTree = ""; }; - 83D9F90000E5510FE177292A21D0DB03 /* utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = utils.swift; path = Sources/NimbleSharedTestHelpers/utils.swift; sourceTree = ""; }; + 812C8DCA6BDD0EEF5AA1B957FE7F9639 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; + 814F2E965DC27BC9302DA3ECBAFB8776 /* Colors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Colors.swift; path = "Sources/Support Files/Colors.swift"; sourceTree = ""; }; + 81D479CEF364200B9222C8322B37D601 /* BeCloseTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeCloseTo.swift; path = Sources/Nimble/Matchers/BeCloseTo.swift; sourceTree = ""; }; + 825C7A0644C6D36AD413548EB8E8382A /* GULNetworkInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInternal.h; path = GoogleUtilities/Network/GULNetworkInternal.h; sourceTree = ""; }; + 82721DF39766E6031B3B3B8EEDE27221 /* QCKDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QCKDSL.m; path = Sources/QuickObjectiveC/DSL/QCKDSL.m; sourceTree = ""; }; + 828D57D152F7CD50083432B6E7BE9D30 /* Pods-Examples-SourcepointFirebaseDemo-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-SourcepointFirebaseDemo-resources.sh"; sourceTree = ""; }; + 82D50490D82F2D60AEB51580141F888C /* RequestModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModel.swift; path = Sources/Models/RequestModel.swift; sourceTree = ""; }; + 831B1F8A85AA79580C430DB7C8479498 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; + 83442322BA283D78CE937831AD163F9D /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; + 834E5228A2C3747EDD8DF0071E59F403 /* Pods-TVOSExampleAppUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TVOSExampleAppUITests.release.xcconfig"; sourceTree = ""; }; + 835BCC70DDE2D7D5B4D6EA77DFB13651 /* mach_excServer.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mach_excServer.c; path = Sources/CwlMachBadInstructionHandler/mach_excServer.c; sourceTree = ""; }; + 84186C01B20273E40B6386C0AF6A94DB /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; + 841ECE59E73EC1FE5F2490BAA02B0832 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; 842A76598292AC07650477A7975DFA3C /* LongButtonViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LongButtonViewCell.swift; sourceTree = ""; }; - 847044E56CBBCE1235A6F3CEF3F9F607 /* IQTextView-IQTextView */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQTextView-IQTextView"; path = IQTextView.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 84B95C43D7B6F56248AD75135BE05088 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - 8551B96649DC518FEB10BEB47FFC4585 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; - 85DCA40AD37456BE4FA02979143B558D /* CwlMachBadInstructionHandler-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlMachBadInstructionHandler-umbrella.h"; sourceTree = ""; }; - 8689BBFFCE916282306018B8C16C73A4 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; - 86CDA7941153CD6098183D28A6424BF8 /* Pods-Examples-AuthExample-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-AuthExample-resources.sh"; sourceTree = ""; }; + 843F089C220B0DDFACC5EE067C0C2779 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULApplication.h; sourceTree = ""; }; + 84A959D14CEA8B891E4C930622E1576B /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; + 84F0A664168C0FA18A594E170364CAC6 /* ErrorUtility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ErrorUtility.swift; path = Sources/Quick/ErrorUtility.swift; sourceTree = ""; }; + 853DF6D815EF025762106323111CAF85 /* CwlMachBadInstructionHandler.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlMachBadInstructionHandler.release.xcconfig; sourceTree = ""; }; + 855370FC8300FBF55C4726690B9C6294 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h; sourceTree = ""; }; + 855AB738733A7A78AA95AD581A829FB1 /* Pods-Examples-ObjC-ExampleApp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-ObjC-ExampleApp-umbrella.h"; sourceTree = ""; }; + 856CA512490704467D721BF2551A16E2 /* Pods-TVOSExampleApp-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TVOSExampleApp-Info.plist"; sourceTree = ""; }; + 8606FF0B324258DD7332EC917FB25EC8 /* MatcherProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherProtocols.swift; path = Sources/Nimble/Matchers/MatcherProtocols.swift; sourceTree = ""; }; + 862A201A42BB7940AEBE4698319FD1C2 /* CustomHTTPProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomHTTPProtocol.swift; path = Sources/CustomHTTPProtocol.swift; sourceTree = ""; }; + 867F4EA1F4EF7ED1FE441EFF3B2BB4AF /* AsyncSpec+testMethodSelectors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "AsyncSpec+testMethodSelectors.m"; path = "Sources/QuickObjectiveC/AsyncSpec+testMethodSelectors.m"; sourceTree = ""; }; + 869993B3F1B283128A1829968E05F145 /* NSURLSessionConfiguration+Wormholy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLSessionConfiguration+Wormholy.m"; path = "Sources/Objc/NSURLSessionConfiguration+Wormholy.m"; sourceTree = ""; }; + 86A7C611C4CD9683D25B8560131AFD15 /* NMBExceptionCapture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBExceptionCapture.m; path = Sources/NimbleObjectiveC/NMBExceptionCapture.m; sourceTree = ""; }; 87295588035B548CD735B7461612EFE9 /* Barcode.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = Barcode.png; sourceTree = ""; }; + 876B81D97FF07E797985B21078D2BE11 /* CwlCatchException.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlCatchException.release.xcconfig; sourceTree = ""; }; 87AEFA2EAE4004039B9687ACD673B4AC /* SPGDPRConsent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPGDPRConsent.swift; sourceTree = ""; }; - 87D5ABE9F3D08E0E9D3B6E428A17FA0B /* NMBExceptionCapture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBExceptionCapture.m; path = Sources/NimbleObjectiveC/NMBExceptionCapture.m; sourceTree = ""; }; - 885466C2B2B8F648EFA1950A9EB8426C /* Pods-Examples-ObjC-ExampleApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-ObjC-ExampleApp.debug.xcconfig"; sourceTree = ""; }; + 87CAA40ECB07946DEE14A5B6351CE5AC /* Pods-Examples-SourcepointFirebaseDemo-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-SourcepointFirebaseDemo-acknowledgements.markdown"; sourceTree = ""; }; + 87E898681CF454A1619068162EFD8563 /* StopTest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StopTest.swift; path = Sources/Quick/StopTest.swift; sourceTree = ""; }; + 886409024BDF67E9EC65703A0E51E228 /* SPMobileCore-tvOS-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; name = "SPMobileCore-tvOS-xcframeworks.sh"; path = "../SPMobileCore-tvOS/SPMobileCore-tvOS-xcframeworks.sh"; sourceTree = ""; }; 886B70550F3C22CC20F9B77783E267E6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 88E5A68E490D25730B9530B224AC6B05 /* CwlCatchException.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlCatchException.release.xcconfig; sourceTree = ""; }; - 8900858EF8CA1647169B147D2791DF67 /* RequestDetailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestDetailViewController.swift; path = Sources/UI/RequestDetailViewController.swift; sourceTree = ""; }; - 8A5A90AC4FB990424A1D8841F30954D2 /* _ObjC_HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatsPayload.swift; sourceTree = ""; }; - 8A82B370762440F79B82E09400A57C80 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardToolbar/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 8AB47EF0B0C5748A52E14C8D16EB9DDC /* FIRHeartbeatLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatLogger.m; path = FirebaseCore/Sources/FIRHeartbeatLogger.m; sourceTree = ""; }; + 889214D4EA88BABE53D191096E67C1BC /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig"; sourceTree = ""; }; + 8911D20B2CAA8F3A5BD8EFC39DABFF36 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULSceneDelegateSwizzler.h; sourceTree = ""; }; + 892A50298130B8D30A525A58BEC34A2B /* AsyncBehavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncBehavior.swift; path = Sources/Quick/Async/AsyncBehavior.swift; sourceTree = ""; }; + 8965F6D4EB895612380EF3DE6F4D9FA7 /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; + 898700DC4DB5095AAB02015D2BB39875 /* FailureMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FailureMessage.swift; path = Sources/Nimble/FailureMessage.swift; sourceTree = ""; }; + 8ABE4BAABF9AD9A9D526D3EA113E6ABB /* FIRHeartbeatLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatLogger.m; path = FirebaseCore/Sources/FIRHeartbeatLogger.m; sourceTree = ""; }; + 8AC7AA50269FD2479DEA2A29C9EA1B21 /* RequestResponseExportOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestResponseExportOption.swift; path = Sources/Utils/RequestResponseExportOption.swift; sourceTree = ""; }; + 8AF2E5AAA653C6DCE825A0FF0F7C425C /* QuickTestSuite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestSuite.swift; path = Sources/Quick/QuickTestSuite.swift; sourceTree = ""; }; 8B1C4DA30BEAE3606FF4DCEFDA3729DD /* SPUserData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPUserData.swift; sourceTree = ""; }; - 8B53BBE2A0D25B5C8D58832F4D0ACE1F /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQTextInputViewNotification/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 8B7EBFADDF04A200048C6D59F2E2C1CE /* FirebaseCoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCoreInternal-Info.plist"; sourceTree = ""; }; - 8BABD3D93658A6438AE39E7CA356B0EE /* Pods-Examples-NativeMessageExample-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-NativeMessageExample-umbrella.h"; sourceTree = ""; }; + 8B7E7307B814D419B581B43C19830E7D /* Pods-TVOSExampleAppUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TVOSExampleAppUITests-acknowledgements.plist"; sourceTree = ""; }; 8BB937B1C0DFFCF92F41861C2BC54DDA /* FirebaseCore-FirebaseCore_Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "FirebaseCore-FirebaseCore_Privacy"; path = FirebaseCore_Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 8BC7AF51FA2F0826802F6A36F319AEAE /* images */ = {isa = PBXFileReference; includeInIndex = 1; name = images; path = ConsentViewController/Assets/images; sourceTree = ""; }; - 8D8069D3964814114ACEC3084C010B59 /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardManagerSwift-IQKeyboardManagerSwift"; path = IQKeyboardManagerSwift.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 8DE645F2294DF573039679935A89494B /* IQKeyboardToolbarPlaceholderConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarPlaceholderConfiguration.swift; path = IQKeyboardToolbar/Classes/Placeholder/IQKeyboardToolbarPlaceholderConfiguration.swift; sourceTree = ""; }; - 8DE8448FA1AE310E2375710837E256E9 /* NMBExpectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBExpectation.swift; path = Sources/Nimble/Adapters/NMBExpectation.swift; sourceTree = ""; }; - 8DF68AC15D83B3F9C35B8D2D5F9E42DC /* IQKeyboardCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardCore-Info.plist"; sourceTree = ""; }; - 8E74DCAC75D8463E2BFEEDA549A0D38F /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; - 8F1B2B1E2EA16E8AA8C6A4E3DB461D04 /* Pods-Tests-NativeMessageExampleUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-NativeMessageExampleUITests.debug.xcconfig"; sourceTree = ""; }; - 8F409AB3D85FB173A94C05F8560AEF6E /* Pods-Tests-AuthExampleUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-AuthExampleUITests-umbrella.h"; sourceTree = ""; }; - 8F6021C9C3B57896D77C989E22147F4F /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; - 8F94E40F9C47186B9C90B58C1FDA12EC /* Nimble-tvOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Nimble-tvOS-dummy.m"; path = "../Nimble-tvOS/Nimble-tvOS-dummy.m"; sourceTree = ""; }; - 8F9BD032C6101EBB566A7C72079A9F6E /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; - 8FA4E06192FBBD2D464EEB4AB46FCC50 /* ShareUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShareUtils.swift; path = Sources/Utils/ShareUtils.swift; sourceTree = ""; }; + 8BE2EC5D536D7759972707199C2ED60E /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m"; sourceTree = ""; }; + 8BF5032FC7D514BFE613B06681A02593 /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-ConsentViewController_ExampleTests-dummy.m"; sourceTree = ""; }; + 8BF7C624218E90B94B9531ADDB73AF37 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; + 8C5372E3E5742A34B8CB1A8B2D0C6C32 /* Pods-Examples-SourcepointFirebaseDemo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-SourcepointFirebaseDemo-dummy.m"; sourceTree = ""; }; + 8D32366DEB6715D89BF41684226E71F5 /* HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsPayload.swift; sourceTree = ""; }; + 8D7D891703ECCCAA0B68299E77C25CCF /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = Sources/Storage.swift; sourceTree = ""; }; + 8DAE8810BDB5BBD04B97181E0812F4FE /* Pods-TVOSExampleApp-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TVOSExampleApp-resources.sh"; sourceTree = ""; }; + 8E973547B432A3EFF7F1FA52CCE419B7 /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; + 8EA80B8D118F421F43E74050ABFEA63B /* CwlCatchException-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlCatchException-prefix.pch"; sourceTree = ""; }; + 8F3A84E62621BA59A7CD3B10E88F2A63 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; + 8F41CA1D9D7ED36D50ED1AE1B3E24956 /* WormholyMethodSwizzling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WormholyMethodSwizzling.h; path = Sources/Objc/WormholyMethodSwizzling.h; sourceTree = ""; }; + 8F85E06CF5FBCEAD3DC18CF477180039 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; + 8FA1FB42AB7E9F539B082431B47D5234 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.modulemap"; sourceTree = ""; }; 8FAD4B2C2A4A9820171E0345B3BFF0D7 /* Pods-TVOSExampleAppUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-TVOSExampleAppUITests"; path = Pods_TVOSExampleAppUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 8FD8C1A7CEA1C49D6CBDF4F352C2F2FB /* CwlMachBadInstructionHandler-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlMachBadInstructionHandler-umbrella.h"; sourceTree = ""; }; + 8FEB5F29456FADD2DA38C8BCCDC2821E /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; + 9065459FE6E3C25FF9EE9B03805F2C3D /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; 9095E935D84E98CD0E8475F29BAA5986 /* SharedCoreToNativeAdapters.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SharedCoreToNativeAdapters.swift; sourceTree = ""; }; - 9098FE4D7D58067AE284C8C5FFAC0C68 /* HeartbeatsBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsBundle.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsBundle.swift; sourceTree = ""; }; - 90C4D664CCFC0EC8EB09816FA8633A75 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; + 90A8D58C370061FBE079C887EDBA0F71 /* NMBStringify.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBStringify.m; path = Sources/NimbleObjectiveC/NMBStringify.m; sourceTree = ""; }; + 90BF493E1F9D2BDA9D04385008767469 /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = ""; }; 90CBB291D51BE436C8303AF5FF6B0F14 /* ConsentViewController-tvOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "ConsentViewController-tvOS.modulemap"; path = "../ConsentViewController-tvOS/ConsentViewController-tvOS.modulemap"; sourceTree = ""; }; 90E690FB1B8426FF22064D899B790E77 /* SPCustomViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPCustomViewController.swift; sourceTree = ""; }; + 90E96D417DE7D723D1BA3ADBADAD43DB /* NSBundle+CurrentTestBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSBundle+CurrentTestBundle.swift"; path = "Sources/Quick/NSBundle+CurrentTestBundle.swift"; sourceTree = ""; }; 912335C07E49ADE52F19D561EF6DA3CA /* SPPrivacyPolicyViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPPrivacyPolicyViewController.xib; sourceTree = ""; }; - 91621E1BA3A89BE74D1E7D017C175F49 /* IQKeyboardToolbarManager.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbarManager.debug.xcconfig; sourceTree = ""; }; - 91856F66BE2DECF62F1F9EE807018C94 /* Pods-Examples-AuthExample-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-AuthExample-acknowledgements.markdown"; sourceTree = ""; }; - 91D62181605594F9BA432C86AB828AD0 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-resources.sh"; sourceTree = ""; }; - 91F1F5EFD9F5B257BA971B8237B0B65E /* GoogleAppMeasurement-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleAppMeasurement-xcframeworks.sh"; sourceTree = ""; }; - 9203BA4D6A6B272DBF889E011390B373 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; - 921BD04D1137665DAA00C54FD7449ED3 /* Pods-Examples-NativeMessageExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-NativeMessageExample.release.xcconfig"; sourceTree = ""; }; - 925CB3BA618E0430E3F897CD1C1595AC /* Pods-Tests-ConsentViewController_ExampleTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-ConsentViewController_ExampleTests-Info.plist"; sourceTree = ""; }; - 935EEF5E16FC6B7B0B0977DB05AE930A /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; - 945767455B6DDF8DBEAADC2013CD7C86 /* Pods-Tests-SourcePointMetaAppUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Tests-SourcePointMetaAppUITests"; path = Pods_Tests_SourcePointMetaAppUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 9124FEEB4685049F8046B2467AFF4E75 /* RequestDetailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestDetailViewController.swift; path = Sources/UI/RequestDetailViewController.swift; sourceTree = ""; }; + 915953000AAE931177BD2AD6A223439B /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; + 918C0AE49CDE63B115192CE0A1B0E0E8 /* NimbleXCTestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleXCTestHandler.swift; path = Sources/Nimble/Adapters/NimbleXCTestHandler.swift; sourceTree = ""; }; + 91D62C2979902E1B6BD2624C970711BE /* nanopb-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-umbrella.h"; sourceTree = ""; }; + 91E0DE0BB629D1749C04989ECC79DD27 /* GoogleAppMeasurement.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = GoogleAppMeasurement.xcframework; path = Frameworks/GoogleAppMeasurement.xcframework; sourceTree = ""; }; + 9265DF8855FE08DA921EBCBD5AD606A4 /* GoogleUtilities-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-umbrella.h"; sourceTree = ""; }; + 9279BC8901C9D4808E6F89B206E0EA14 /* SuiteHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SuiteHooks.swift; path = Sources/Quick/Hooks/SuiteHooks.swift; sourceTree = ""; }; + 9401E63DC925798D15C7ED576E634CFB /* Pods-Examples-ConsentViewController_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-ConsentViewController_Example.debug.xcconfig"; sourceTree = ""; }; 946D9B91981FF3562F0B248C01EF193C /* SPNativeMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPNativeMessage.swift; path = ConsentViewController/Classes/SPNativeMessage.swift; sourceTree = ""; }; - 9486C1AFBFBCE9306650338B9FBFB1AD /* JSONView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JSONView-dummy.m"; sourceTree = ""; }; - 94888D4B141708E955BD94A3E24F2560 /* Pods-TVOSExampleApp-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TVOSExampleApp-acknowledgements.plist"; sourceTree = ""; }; - 94A7D22137E1C496D0F85A3CEB620587 /* nanopb.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = nanopb.modulemap; sourceTree = ""; }; 94DDA13C746BD0D22B7AB71BBC8B1281 /* ConsentViewController-iOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ConsentViewController-iOS-Info.plist"; sourceTree = ""; }; - 9526B810DA94A28F937F48E17CC1F5C9 /* Pods-Tests-NativeMessageExampleUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-NativeMessageExampleUITests-Info.plist"; sourceTree = ""; }; - 9576D8FB03AEE9AC0CBDD7F29B35CAA8 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; - 957ECFCEB95A78EED2F84236B2271846 /* BeIdenticalTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeIdenticalTo.swift; path = Sources/Nimble/Matchers/BeIdenticalTo.swift; sourceTree = ""; }; - 9596493F419E94FDD1890E1D05FB9DE8 /* IQKeyboardToolbar-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbar-prefix.pch"; sourceTree = ""; }; - 95BACE7612A4E8F4F0567A9AA60CA729 /* Pods-Examples-SourcepointFirebaseDemo.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-SourcepointFirebaseDemo.modulemap"; sourceTree = ""; }; + 952DB85CE1543168029213CE8B042B9A /* Pods-Tests-ObjC-ExampleAppUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-ObjC-ExampleAppUITests-resources.sh"; sourceTree = ""; }; + 953C0D60558E3AB2BD15579B50459D6B /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = FirebaseInstallations/Source/Library/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; 95CE5BA6845C27259E5E75FF90D770CF /* SPCCPACategoryDetailsViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPCCPACategoryDetailsViewController.xib; sourceTree = ""; }; - 95F0052081268DFDBE4A0120A806FDDD /* AsyncDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncDSL.swift; path = Sources/Quick/DSL/AsyncDSL.swift; sourceTree = ""; }; + 95E11D7E045EA6E32AA0C093BBCEA740 /* Pods-TVOSExampleApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TVOSExampleApp.release.xcconfig"; sourceTree = ""; }; + 960100516CBDC6A1EC54318B4AE3F1EB /* Closures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Closures.swift; path = Sources/Quick/Hooks/Closures.swift; sourceTree = ""; }; + 96023E180B8A1891858559CA04F99435 /* BeLessThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThan.swift; path = Sources/Nimble/Matchers/BeLessThan.swift; sourceTree = ""; }; 96046321F1D0A6B8DB94CFC1A02E4839 /* SPPrivacyManagerRequestResponse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPPrivacyManagerRequestResponse.swift; sourceTree = ""; }; - 969DDE8AF1547A69AC2FA725B6F5CDB2 /* IQKeyboardToolbarManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardToolbarManager-Info.plist"; sourceTree = ""; }; - 969FE37988516D4F7FCD8175873C3FD7 /* Quick-tvOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Quick-tvOS-umbrella.h"; path = "../Quick-tvOS/Quick-tvOS-umbrella.h"; sourceTree = ""; }; - 96BEBF5B770103D49A6779BB3F23B618 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardCore/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 9710C155F41476AE899A9061EAEEA7E2 /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; - 979E2831984CEF3CD1981DFB1DAFFB79 /* IQKeyboardManagerSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardManagerSwift-Info.plist"; sourceTree = ""; }; - 97C08F366011ABF5B61B5D428C2A32B0 /* QuickSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpec.h; path = Sources/QuickObjectiveC/QuickSpec.h; sourceTree = ""; }; - 983369F50E07F986B7B75FE69228C2EC /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; - 983BDF8D0A591D54CB03F4ACB6E58CDA /* Pods-Examples-SourcePointMetaApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-SourcePointMetaApp.debug.xcconfig"; sourceTree = ""; }; - 9854D1AA61EDBCC8C7F3C964FA9AC3FD /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; - 985E2F8DBB92E8FF07EB736106587CA2 /* FirebaseCoreInternal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.debug.xcconfig; sourceTree = ""; }; - 98F6695DEAC1D13CB0C1ADEFC4FBCE58 /* IsAppEncrypted.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IsAppEncrypted.m; path = third_party/IsAppEncrypted/IsAppEncrypted.m; sourceTree = ""; }; - 994E32106A3E483B71224175EE751364 /* Pods-Tests-NativeMessageExampleUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-NativeMessageExampleUITests.release.xcconfig"; sourceTree = ""; }; - 998AE9A12896605E4272EBD27415F0DF /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRVersion.h; sourceTree = ""; }; - 99E2520C737AC3324E6D8537F4FE3F34 /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; - 9A0027FF1D4610D3184663A739F457A0 /* Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.markdown"; sourceTree = ""; }; - 9A357AC195864E56D2592C1979BBAF05 /* UIView+RespondersObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+RespondersObjc.swift"; path = "IQKeyboardToolbarManager/Classes/UIKitExtensions/UIView+RespondersObjc.swift"; sourceTree = ""; }; - 9A393314456FFB3E06800F9CD1A915F3 /* Pods-Examples-NativeMessageExample-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-NativeMessageExample-dummy.m"; sourceTree = ""; }; - 9A627BAB9445B7F348964DCEC0316670 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 9AB91992ADD70EED081100015CB5338E /* SwiftLint.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftLint.debug.xcconfig; sourceTree = ""; }; - 9AE3C37AC143AA6187DAA70513DB82D2 /* IQRootControllerConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQRootControllerConfiguration.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQRootControllerConfiguration.swift; sourceTree = ""; }; - 9B9096FD1A4F1C96E2829FA42428F04D /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 9BA34AE937DE44415845F1FA58BA63A1 /* Pods-Examples-SourcepointFirebaseDemo-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-SourcepointFirebaseDemo-resources.sh"; sourceTree = ""; }; + 966673C499A549AB91BE4CD6AB4B597A /* Pods-Examples-ObjC-ExampleApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-ObjC-ExampleApp.debug.xcconfig"; sourceTree = ""; }; + 969040CA3C0768B3AAAB1099AA402018 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; + 96E5FE8E889EA13EE21821B1544C29CF /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; + 96FFC679363B7DC6A7AFBCB09D7E8128 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.markdown"; sourceTree = ""; }; + 9723F96C65562CA6296D32D3BC624C1E /* Pods-Examples-ObjC-ExampleApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-ObjC-ExampleApp.release.xcconfig"; sourceTree = ""; }; + 9741CDF6C6A5BA9F9888C1CE1979527E /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; + 97E474B81FF725EB6C01439A223F8BD6 /* NimbleEnvironment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleEnvironment.swift; path = Sources/Nimble/Adapters/NimbleEnvironment.swift; sourceTree = ""; }; + 97EE33A24B21B28D02CA6FED3F00E565 /* JSONView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JSONView.release.xcconfig; sourceTree = ""; }; + 97EF23591EEB5F215DE3A63E27114254 /* CwlPreconditionTesting-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CwlPreconditionTesting-Info.plist"; sourceTree = ""; }; + 980FCF9168B743F15FC5FD49B056B497 /* Pods-Tests-ConsentViewController_ExampleTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-ConsentViewController_ExampleTests-Info.plist"; sourceTree = ""; }; + 985F3C9C7DC4A32AE5CFB01EFE60D3C2 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + 9900566369968FB29D28C2EC2978C370 /* Pods-Examples-ConsentViewController_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-ConsentViewController_Example-umbrella.h"; sourceTree = ""; }; + 99917212D03DD040744A3BED996C78F4 /* ResourceBundle-nanopb_Privacy-nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; sourceTree = ""; }; + 9A30C487B9A2772DE65AE0D504060C57 /* Nimble-tvOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "Nimble-tvOS.modulemap"; path = "../Nimble-tvOS/Nimble-tvOS.modulemap"; sourceTree = ""; }; + 9A39C86C44AAD0F5C04D1C710474ECE7 /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; + 9A5FCE24A5048739DC589904C6B5C661 /* SatisfyAnyOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAnyOf.swift; path = Sources/Nimble/Matchers/SatisfyAnyOf.swift; sourceTree = ""; }; + 9A64100D6D8B95759BA717510E45BAB3 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = FirebaseCore/Internal/Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 9A98A19B56EE2E7EA02EEF1E489037AB /* RequestTitleSectionView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = RequestTitleSectionView.xib; path = Sources/UI/Sections/RequestTitleSectionView.xib; sourceTree = ""; }; + 9B090B90FCBE6B0059AD53C263D1927D /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/GULReachabilityMessageCode.h; sourceTree = ""; }; + 9B11DD25C102F8D3F852D9C18A2A9A84 /* DSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DSL.m; path = Sources/NimbleObjectiveC/DSL.m; sourceTree = ""; }; 9BAC764B51BFC1BC76D06BE75E333536 /* ResourceBundle-ConsentViewController-ConsentViewController-tvOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "ResourceBundle-ConsentViewController-ConsentViewController-tvOS-Info.plist"; path = "../ConsentViewController-tvOS/ResourceBundle-ConsentViewController-ConsentViewController-tvOS-Info.plist"; sourceTree = ""; }; + 9BC0DE89605B7D52422F12AD2D02F4C1 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Storage.swift; sourceTree = ""; }; + 9BC1F94B4073DED6F7B7D77C3EAA1B3D /* Pods-Tests-SPGDPRExampleAppUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-SPGDPRExampleAppUITests-resources.sh"; sourceTree = ""; }; 9BC1FB1939BFE5F15D153AAC7FEF4A83 /* SPMessageUIDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPMessageUIDelegate.swift; path = ConsentViewController/Classes/SPMessageUIDelegate.swift; sourceTree = ""; }; + 9BC98D6DF4705676BF8988BE3A0A16EA /* Wormholy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Wormholy.h; path = Sources/Wormholy.h; sourceTree = ""; }; + 9BDE29DFB920028897F2C914A9E49536 /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; 9BEC03026DF74168D976AE6F80B66B17 /* SPPMHeader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPPMHeader.swift; sourceTree = ""; }; - 9C5C917A9D7FC2BFF33532D4FA9D3EBE /* Pods-Examples-SourcepointFirebaseDemo-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-SourcepointFirebaseDemo-Info.plist"; sourceTree = ""; }; - 9C74BF65952CA34C7E7E7CE246246DDE /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; - 9CF9B3750AC996B188363CC4B0C54DD7 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULAppDelegateSwizzler.h; sourceTree = ""; }; - 9D7DE976823DEE57DFC868F29DF873AF /* IQKeyboardToolbarManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardToolbarManager-umbrella.h"; sourceTree = ""; }; + 9D8EA074341EE61DC353AE3358913322 /* QuickSpecBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpecBase.h; path = Sources/QuickObjCRuntime/include/QuickSpecBase.h; sourceTree = ""; }; + 9D900EC17E881A678C59B7767EBD5B75 /* AsyncDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncDSL.swift; path = Sources/Quick/DSL/AsyncDSL.swift; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9D962A5A86A6D53EF95A7EBC61F981A8 /* SwiftLint.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftLint.debug.xcconfig; sourceTree = ""; }; 9DC58EDA4573836B36C15FE9D20DA773 /* OSLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OSLogger.swift; path = ConsentViewController/Classes/OSLogger.swift; sourceTree = ""; }; - 9DC76871304CCDFD3A1D21BF050D3177 /* WHNavigationController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHNavigationController.swift; path = Sources/Subclasses/WHNavigationController.swift; sourceTree = ""; }; - 9DC8945AB452F2860FCC5CBB94324624 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = ""; }; - 9E054BBC07794A97A72D7F5FD34898FF /* IQBarButtonItemConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItemConfiguration.swift; path = IQKeyboardToolbar/Classes/IQBarButtonItem/IQBarButtonItemConfiguration.swift; sourceTree = ""; }; - 9EFDF09D136087E961C24BA4E9EE1CD8 /* ThrowAssertion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowAssertion.swift; path = Sources/Nimble/Matchers/ThrowAssertion.swift; sourceTree = ""; }; + 9E2FFC8F2EF8C9D7411458644EAECFD7 /* PromisesObjC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesObjC-umbrella.h"; sourceTree = ""; }; + 9F048C1EFE55979081AB964ED51CDD3C /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-resources.sh"; sourceTree = ""; }; + 9F33950A12429B299448611BF91C9061 /* FirebaseCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCore.modulemap; sourceTree = ""; }; + 9F461C95909B4A46AA6D1E7A464B3BE0 /* Pods-Tests-NativeMessageExampleUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-NativeMessageExampleUITests.debug.xcconfig"; sourceTree = ""; }; 9F469EC0035C69528C810216676EAA16 /* ConnectivityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectivityManager.swift; path = ConsentViewController/Classes/ConnectivityManager.swift; sourceTree = ""; }; - 9F4E194548CB8DA88C035DC8C7D2EF86 /* CwlPosixPreconditionTesting-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlPosixPreconditionTesting-prefix.pch"; sourceTree = ""; }; - 9F6BB2423C69F99EEAC09C7C9E7B6E66 /* Expectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expectation.swift; path = Sources/Nimble/Expectation.swift; sourceTree = ""; }; - 9F96E4D2386F493BE82DED195E2CF689 /* IQTextView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQTextView-dummy.m"; sourceTree = ""; }; - 9FFDDD271BD34C9D86E1125AE8EADE30 /* AsyncAllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncAllPass.swift; path = Sources/Nimble/Matchers/AsyncAllPass.swift; sourceTree = ""; }; - A0CA2E223EE61D297A117842655ACF18 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = ""; }; - A0D10B995612504994DB04DEEBB0138E /* CwlMachBadInstructionHandler-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CwlMachBadInstructionHandler-Info.plist"; sourceTree = ""; }; - A0F162DFF0A4C069334782DC294C71FF /* IQKeyboardToolbarConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarConstants.swift; path = IQKeyboardToolbarManager/Classes/Constants/IQKeyboardToolbarConstants.swift; sourceTree = ""; }; - A109023FCA68FDE015141DD67DC29755 /* Quick-tvOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Quick-tvOS-dummy.m"; path = "../Quick-tvOS/Quick-tvOS-dummy.m"; sourceTree = ""; }; - A11B05957DEC3AB840DA74DE56267828 /* IQKeyboardToolbar.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardToolbar.release.xcconfig; sourceTree = ""; }; - A153645F2DDB19458FE1A4346444F6FE /* WHBaseViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHBaseViewController.swift; path = Sources/Subclasses/WHBaseViewController.swift; sourceTree = ""; }; - A16FD016E18EACCF6B23F219F2E236FE /* IQKeyboardToolbar-IQKeyboardToolbar */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQKeyboardToolbar-IQKeyboardToolbar"; path = IQKeyboardToolbar.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - A188CBEBC676609F35A63D53BA78950B /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h; sourceTree = ""; }; - A1AE3F717FE3E0E66C2B39495FB5A811 /* ThrowError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowError.swift; path = Sources/Nimble/Matchers/ThrowError.swift; sourceTree = ""; }; - A2413C25A1E9B1773F4BB7C4A9918225 /* WormholyConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = WormholyConstructor.m; path = Sources/Objc/WormholyConstructor.m; sourceTree = ""; }; - A24EBA1A48811A82E9E39B985421398F /* ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; sourceTree = ""; }; - A25E299620E4156A2638D0F3DE5EC583 /* CwlCatchException.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlCatchException.debug.xcconfig; sourceTree = ""; }; - A26BBC7E4321F39E52EB7D529A6C5E94 /* DSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DSL.m; path = Sources/NimbleObjectiveC/DSL.m; sourceTree = ""; }; - A29A933877C4A42745B22A0407B169CF /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; - A361202B2E3C64A15E73F68BEB6EC838 /* CwlPreconditionTesting-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlPreconditionTesting-umbrella.h"; sourceTree = ""; }; - A36B888EBDB6ED11E7C0692FE5AAC0E7 /* Colors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Colors.swift; path = "Sources/Support Files/Colors.swift"; sourceTree = ""; }; - A4610644C7B0109D328649CBEC1527DC /* SPMobileCore.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = SPMobileCore.xcframework; sourceTree = ""; }; - A46E3B649881FB5DBD58A006029D4A9C /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; - A4CC809ED8B5AE51F38848C0F72698E0 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - A52ECA6E35D137500EB0D742A5100B58 /* Wormholy-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Wormholy-prefix.pch"; sourceTree = ""; }; - A5839082B8F6542D0C2A2B3E1CF9AB40 /* Pods-Examples-ConsentViewController_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-ConsentViewController_Example-acknowledgements.plist"; sourceTree = ""; }; - A5B85C33CEAEF1D6C35FD328C4D76F4F /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = ""; }; - A5CF58C2980FC8C6E33960F8257583AD /* AsyncExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncExampleHooks.swift; path = Sources/Quick/Hooks/AsyncExampleHooks.swift; sourceTree = ""; }; + 9F48F49A8F8C45ADF738743E322775BB /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; + 9F566E49378EA375C6F422F15239AB7C /* Nimble-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Nimble-tvOS.debug.xcconfig"; path = "../Nimble-tvOS/Nimble-tvOS.debug.xcconfig"; sourceTree = ""; }; + 9F881E818A129CDB4DD5CEAB85319E59 /* Pods-Tests-ObjC-ExampleAppUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-ObjC-ExampleAppUITests.debug.xcconfig"; sourceTree = ""; }; + A07C28D654656DF66B982CFE159BEC71 /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; + A12BB83023A3CCEA01B3F8BC16337515 /* Pods-Examples-NativeMessageExample-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-NativeMessageExample-acknowledgements.plist"; sourceTree = ""; }; + A19C5B05BB15A302B556684B99AF6EE6 /* FirebaseInstallations-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseInstallations-Info.plist"; sourceTree = ""; }; + A1B428B70E12D510C1731416917D2D10 /* Pods-Examples-ObjC-ExampleApp-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-ObjC-ExampleApp-acknowledgements.markdown"; sourceTree = ""; }; + A1F9C1BFA93282D03C9A99C3C8A27564 /* XCTestObservationCenter+Register.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestObservationCenter+Register.m"; path = "Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m"; sourceTree = ""; }; + A23715421E0A274D064706BDDAECAC42 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.plist"; sourceTree = ""; }; + A27EDAE069E72FBA170CE86499E4F354 /* ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; sourceTree = ""; }; + A32FDBB161427B904280A26A67FE7B69 /* Pods-TVOSExampleAppUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-TVOSExampleAppUITests.modulemap"; sourceTree = ""; }; + A33A0CFE6ED5CCD4A530BEB6C9A3AF35 /* CwlPreconditionTesting.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CwlPreconditionTesting.modulemap; sourceTree = ""; }; + A3F52DF62AA9610DF8CB2C7455E02F95 /* FirebaseCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCore-Info.plist"; sourceTree = ""; }; + A4185C282D94B2BA9A4C776CC49DE353 /* DSL+Wait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+Wait.swift"; path = "Sources/Nimble/DSL+Wait.swift"; sourceTree = ""; }; + A54355672029201D4EA8CFADBF2AF25D /* Pods-Examples-NativeMessageExample-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-NativeMessageExample-Info.plist"; sourceTree = ""; }; + A5A404DB92DBD0B4D15E18791E819FB0 /* Pods-Tests-SPGDPRExampleAppUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-SPGDPRExampleAppUITests.modulemap"; sourceTree = ""; }; + A5B595311F91636241137A9386FD0489 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; + A5CEB69F91D9FAFC3465E461AC94D714 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; + A5D06178309AA95C57E8B9B24E7D9D2C /* Pods-Tests-NativeMessageExampleUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-NativeMessageExampleUITests.release.xcconfig"; sourceTree = ""; }; + A5D8FD108C40B3D6DC2391B22EBE35C3 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; A602E08A711C2221EF6229727384A7CF /* SPPrivacyManagerTab.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPPrivacyManagerTab.swift; path = ConsentViewController/Classes/SPPrivacyManagerTab.swift; sourceTree = ""; }; - A633DBE772E554D5D84ED42635A8334C /* QCKDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QCKDSL.m; path = Sources/QuickObjectiveC/DSL/QCKDSL.m; sourceTree = ""; }; - A65D69CB88594A9705501AF0677C3716 /* QuickSelectedTestSuiteBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickSelectedTestSuiteBuilder.swift; path = Sources/Quick/QuickSelectedTestSuiteBuilder.swift; sourceTree = ""; }; - A69621B2FFC5BDB799083519D042BA81 /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-ConsentViewController_ExampleTests-dummy.m"; sourceTree = ""; }; - A6FFF671D060417A9CF24E8B6B67ADB7 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRConfiguration.h; sourceTree = ""; }; - A70A5FFB77406837B331831AFA067EA9 /* Quick-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Quick-tvOS.release.xcconfig"; path = "../Quick-tvOS/Quick-tvOS.release.xcconfig"; sourceTree = ""; }; + A6B6FC4A63EF725AE0EE5E8A28DA9B89 /* Pods-Tests-ObjC-ExampleAppUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-ObjC-ExampleAppUITests.modulemap"; sourceTree = ""; }; + A6C1B59861446BA981A24EF59CE82F17 /* BeResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeResult.swift; path = Sources/Nimble/Matchers/BeResult.swift; sourceTree = ""; }; + A7135EAF0227A95CBA60514796568214 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = ""; }; + A7190225A20C7D20C3ADAB000F6661E5 /* AsyncExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncExampleHooks.swift; path = Sources/Quick/Hooks/AsyncExampleHooks.swift; sourceTree = ""; }; A77DA1D8C3D825C0C7E8EF07206E936D /* SPMessageLanguage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPMessageLanguage.swift; path = ConsentViewController/Classes/SPMessageLanguage.swift; sourceTree = ""; }; + A7DF8BB4329BC3D758A251886B6B41C7 /* FirebaseInstallations-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseInstallations-umbrella.h"; sourceTree = ""; }; A7FC119477F460006B723993FA489467 /* SPCCPANativePrivacyManagerViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPCCPANativePrivacyManagerViewController.swift; sourceTree = ""; }; - A8539471500A9065B1DF8CED74E86479 /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; - A85E92CAEEEDC4C630593857225DA065 /* Quick-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Quick-iOS-dummy.m"; sourceTree = ""; }; - A89672116452AEA51E63CDD4641DF6AC /* IQKeyboardNotification.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardNotification.debug.xcconfig; sourceTree = ""; }; - A8B5754E3D9CF0928319A37F8D4D281A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardNotification/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardManagerSwift; path = IQKeyboardManagerSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - A93FA39A9D83693D979D6C87751F4E5B /* IQKeyboardToolbarManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardToolbarManager-dummy.m"; sourceTree = ""; }; - A94D32980FE8EEFD4BF3C5D8AB171AFC /* Quick-iOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Quick-iOS.debug.xcconfig"; sourceTree = ""; }; - A9AFE904771B568A4754C58702BBFAA9 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; - A9E567C3801F77C6845784BC161E6AF0 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULMutableDictionary.h; sourceTree = ""; }; - A9F239EB342CD33668E7657BEF9023C2 /* JSONView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JSONView.debug.xcconfig; sourceTree = ""; }; - AA0F831F10B5385C15685F1BE6EEC902 /* SubclassDetection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubclassDetection.swift; path = Sources/Quick/SubclassDetection.swift; sourceTree = ""; }; - AA1ADE3868CD5346F4F2BAA26B8668B3 /* BeLessThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThan.swift; path = Sources/Nimble/Matchers/BeLessThan.swift; sourceTree = ""; }; - AA26FA80CF19C1376665161D157B339A /* AssertionRecorder+Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AssertionRecorder+Async.swift"; path = "Sources/Nimble/Adapters/AssertionRecorder+Async.swift"; sourceTree = ""; }; - AA30F8B79734070F28F2685338C219C8 /* FirebaseAnalytics.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = FirebaseAnalytics.xcframework; path = Frameworks/FirebaseAnalytics.xcframework; sourceTree = ""; }; - AA4F27E44DABBCD644F5EAFC786B157F /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; + A85F098A5EA0C8981B9079D72A717721 /* FIRInstallationsBackoffController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsBackoffController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.h; sourceTree = ""; }; + A8D67D2C3FAFFE22ADCB1544D4F42E24 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULAppDelegateSwizzler.h; sourceTree = ""; }; AA6B5382DCD05DA49AE8667BAAD85D46 /* SPString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPString.swift; sourceTree = ""; }; - AA8CD736A98F2741BD96AF9CFB0498E4 /* UIView+Hierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Hierarchy.swift"; path = "IQKeyboardCore/Classes/UIKitExtensions/UIView+Hierarchy.swift"; sourceTree = ""; }; AA92ED38E716E03D3FC758C810953B95 /* Wormholy-Wormholy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "Wormholy-Wormholy"; path = Wormholy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - AABE37F8C23C6D9E87B16B75F451798C /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; - AAC3007A68D81AA5A7DD2C0D79C5DA30 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = ""; }; - AB8A4A9B4157CDAA3D994D9F0DAA5886 /* QCKDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QCKDSL.h; path = Sources/QuickObjectiveC/DSL/QCKDSL.h; sourceTree = ""; }; - ABABF808BCAB1D58E18BC75EC35A5A1F /* Quick-iOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Quick-iOS-Info.plist"; sourceTree = ""; }; + AB3CECF6573B851E4EB6D183408E0E11 /* Quick-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-iOS-prefix.pch"; sourceTree = ""; }; + AB5A4EEB3FE0342A37DC1899604B72E8 /* Nimble-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Nimble-tvOS.release.xcconfig"; path = "../Nimble-tvOS/Nimble-tvOS.release.xcconfig"; sourceTree = ""; }; + AC058DD843488186AED951EB40621CF0 /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; AC0B7DB098A360C871AEEFC494EF2441 /* SPIDFAStatus.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPIDFAStatus.swift; path = ConsentViewController/Classes/SPIDFAStatus.swift; sourceTree = ""; }; + AC262B7D4F67BC132C52DC137C602EA6 /* Nimble-tvOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "Nimble-tvOS-Info.plist"; path = "../Nimble-tvOS/Nimble-tvOS-Info.plist"; sourceTree = ""; }; + AC349429EDFC65FF731998062188D16A /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-resources.sh"; sourceTree = ""; }; AC6BF0CBB80DC543EA9A8290A1EB96A8 /* StateNativeToCoreAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = StateNativeToCoreAdapter.swift; sourceTree = ""; }; - AC6C453CD050FB5817AA3897D415B52C /* GULNetworkInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInternal.h; path = GoogleUtilities/Network/GULNetworkInternal.h; sourceTree = ""; }; - AC91C44A59AABC5FF63CF75D8B6F86C5 /* CwlPosixPreconditionTesting.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CwlPosixPreconditionTesting.modulemap; sourceTree = ""; }; - AD32F2285581C5240F786F49CA8C33E4 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; - AD8A1623E24EBB185642DD871266F75A /* Array+Sort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+Sort.swift"; path = "IQKeyboardToolbarManager/Classes/UIKitExtensions/Array+Sort.swift"; sourceTree = ""; }; - AD8AA25743B7DB5360A40AC1336ABBB0 /* CwlPreconditionTesting.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CwlPreconditionTesting.modulemap; sourceTree = ""; }; - ADB4F88912D4C5E25D8BE4F0B806CE78 /* CwlMachBadInstructionHandler.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CwlMachBadInstructionHandler.modulemap; sourceTree = ""; }; - ADC01D3509458F80B420EA447786BB2C /* PromisesObjC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesObjC-umbrella.h"; sourceTree = ""; }; + ACCB281B36D2F76B33BFBB84971D74CD /* Pods-Examples-NativeMessageExample-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-NativeMessageExample-acknowledgements.markdown"; sourceTree = ""; }; + AD846BCD8B155D1F9888DE2E55C38968 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; AE88860572FF0DD26A128831EAF40663 /* SPNativeScreenViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPNativeScreenViewController.swift; sourceTree = ""; }; - AE8A7BA9F0275B149E1D0749B53CDD49 /* FIRCurrentDateProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCurrentDateProvider.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.m; sourceTree = ""; }; - AE99FBCE8B8C83A93A6C33D9D5723514 /* CwlCatchExceptionSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CwlCatchExceptionSupport-dummy.m"; sourceTree = ""; }; - AEED0B0D8119723149D7E468C5282C0B /* Expression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expression.swift; path = Sources/Nimble/Expression.swift; sourceTree = ""; }; - AEFE0B8AB65CAA06ADCEC1AC92FB08CF /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; - AF2760999E9505C542C43463DA33C683 /* BeginWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWith.swift; path = Sources/Nimble/Matchers/BeginWith.swift; sourceTree = ""; }; - AFAFBCA4CA46B7789F68E77AD06F489E /* IQKeyboardManager+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Position.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+Position.swift"; sourceTree = ""; }; - AFB1557A33F666C0A9D83F8FE7C9D111 /* Pods-Examples-ConsentViewController_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-ConsentViewController_Example.debug.xcconfig"; sourceTree = ""; }; - B035E0A9C9B2061E23E37637991AF18F /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-Info.plist"; sourceTree = ""; }; - B050097AE422BC05C6098DCF057DB272 /* WormholyMethodSwizzling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WormholyMethodSwizzling.h; path = Sources/Objc/WormholyMethodSwizzling.h; sourceTree = ""; }; - B07C103C97EA779BB2E3F8418929E9EF /* Contain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Contain.swift; path = Sources/Nimble/Matchers/Contain.swift; sourceTree = ""; }; + AF70F6C06F30ADCDB7F323D2D97C770A /* XCTestSuite+QuickTestSuiteBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestSuite+QuickTestSuiteBuilder.m"; path = "Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m"; sourceTree = ""; }; + AFB5D523231D320697B390EB06021CD7 /* BodyDetailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BodyDetailViewController.swift; path = Sources/UI/BodyDetailViewController.swift; sourceTree = ""; }; + AFFAB52F563C63E910F0583A3959FB4E /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; + B00B568B3FD94D3462B7949D8CFBFBBB /* Stringers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stringers.swift; path = Sources/Nimble/Utils/Stringers.swift; sourceTree = ""; }; B0D11B44C645CCA4370139EC3EE9C182 /* SPDate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPDate.swift; path = ConsentViewController/Classes/SPDate.swift; sourceTree = ""; }; - B0E65EFCCCF70977E03B71E52395AD11 /* BeWithin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeWithin.swift; path = Sources/Nimble/Matchers/BeWithin.swift; sourceTree = ""; }; - B0FB9D7152307E006BDF6F5C4CE9A9A1 /* Pods-Tests-NativeMessageExampleUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-NativeMessageExampleUITests-acknowledgements.plist"; sourceTree = ""; }; - B1B783765AFDBBC9FF7903D64E5A39B0 /* CurrentSpec.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurrentSpec.swift; path = Sources/Quick/CurrentSpec.swift; sourceTree = ""; }; - B1BEC02223C75794AFCD195F68ED8447 /* IQKeyboardToolbarConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarConfiguration.swift; path = IQKeyboardToolbarManager/Classes/Configuration/IQKeyboardToolbarConfiguration.swift; sourceTree = ""; }; - B1BEE24BA36FDA58A106C56809C0610C /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h; sourceTree = ""; }; - B1C3C5D363C62E3B2674821C53520683 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; + B17AA814F91AF2B4285F9FF82C6B9777 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Public/GoogleUtilities/GULUserDefaults.h; sourceTree = ""; }; B1C9B90A3AFF6D6A5D97A1651A7D2900 /* ConsentViewController-tvOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConsentViewController-tvOS-umbrella.h"; path = "../ConsentViewController-tvOS/ConsentViewController-tvOS-umbrella.h"; sourceTree = ""; }; - B2020A4EA56E58DF9051225B6ED4D89B /* Nimble-tvOS-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "Nimble-tvOS-Info.plist"; path = "../Nimble-tvOS/Nimble-tvOS-Info.plist"; sourceTree = ""; }; - B29E4356D1D410280B2A1E1567FCD00D /* UIView+IQKeyboardManagerExtensionObjc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardManagerExtensionObjc.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtensionObjc.swift"; sourceTree = ""; }; - B2B165934E9839F38ACCAC3155B9E1AD /* IQKeyboardAppearanceManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardAppearanceManager.swift; path = IQKeyboardManagerSwift/Appearance/IQKeyboardAppearanceManager.swift; sourceTree = ""; }; - B2E8B7E8BA00F2628706C0AA85E4F5BB /* SPMobileCore-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "SPMobileCore-tvOS.release.xcconfig"; path = "../SPMobileCore-tvOS/SPMobileCore-tvOS.release.xcconfig"; sourceTree = ""; }; - B30228F44B1ECB9333C5BB269B12FC50 /* IQTextInputViewNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputViewNotification.swift; path = IQTextInputViewNotification/Classes/IQTextInputViewNotification.swift; sourceTree = ""; }; - B32B6C183B012436F99263A2CAB137F1 /* ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; sourceTree = ""; }; - B38087A49120AF6988F87CAD1193D2EE /* Pods-Examples-SourcePointMetaApp-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-SourcePointMetaApp-Info.plist"; sourceTree = ""; }; - B38761F6B536F6512B2550EEFADD6366 /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; - B3A3D24201B2F1A39E6787ECA7D65505 /* Quick-iOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Quick-iOS.release.xcconfig"; sourceTree = ""; }; - B3B7F216AFAC272B8A629EBC12FA2E0A /* AsyncWorld+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AsyncWorld+DSL.swift"; path = "Sources/Quick/DSL/AsyncWorld+DSL.swift"; sourceTree = ""; }; - B3E4DC932BBEFAFD5A49D90AB2AC7D86 /* Pods-Tests-ConsentViewController_ExampleTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Tests-ConsentViewController_ExampleTests.modulemap"; sourceTree = ""; }; - B429F14EB4A5E9DA1D17227E6D90E17D /* IQKeyboardReturnManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardReturnManager-Info.plist"; sourceTree = ""; }; + B1F7CA6F11475CA449C60355702B3010 /* CwlCatchExceptionSupport-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CwlCatchExceptionSupport-Info.plist"; sourceTree = ""; }; + B224AA618A2BB3AE9F445349E349B6C4 /* AsyncAllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncAllPass.swift; path = Sources/Nimble/Matchers/AsyncAllPass.swift; sourceTree = ""; }; + B2398311DBB7D7D746E561991F158143 /* Pods-Examples-AuthExample-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-AuthExample-resources.sh"; sourceTree = ""; }; + B2892E1B41F4DD6FA9FCB33EA64F0CC4 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; + B29FC7A662C599DB242209F2C703FE63 /* AsyncSpec.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncSpec.swift; path = Sources/Quick/Async/AsyncSpec.swift; sourceTree = ""; }; + B2FE4B691CB15849C8C7B4A67D90FC16 /* QuickConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickConfiguration.h; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.h; sourceTree = ""; }; + B2FEB356A7C93226880DA2DF756BA51E /* Nimble-tvOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Nimble-tvOS-umbrella.h"; path = "../Nimble-tvOS/Nimble-tvOS-umbrella.h"; sourceTree = ""; }; + B36BCE928386EB3470BF61C8DB7B3F31 /* CwlCatchException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchException.swift; path = Sources/CwlCatchException/CwlCatchException.swift; sourceTree = ""; }; + B3A41EB6CC90A415A6C846DAE29F994A /* QuickSpecBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpecBase.m; path = Sources/QuickObjCRuntime/QuickSpecBase.m; sourceTree = ""; }; + B3CA14E53E43E05EF19B6A7DF1A91D82 /* RequestCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = RequestCell.xib; path = Sources/UI/Cells/RequestCell.xib; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* GoogleUtilities */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GoogleUtilities; path = GoogleUtilities.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B4428C5E59EB334813064CCC47CA11DF /* SPMobileCore-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "SPMobileCore-tvOS.release.xcconfig"; path = "../SPMobileCore-tvOS/SPMobileCore-tvOS.release.xcconfig"; sourceTree = ""; }; B449CC35881DF31AE43C3912C1B54623 /* NSObjectExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NSObjectExtensions.swift; sourceTree = ""; }; - B462B473A535B8124B294EBC6A4A8902 /* Pods-Examples-AuthExample-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-AuthExample-dummy.m"; sourceTree = ""; }; - B4807E584DB501AC5F5FAAB14026E391 /* Pods-Tests-ConsentViewController_ExampleTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-ConsentViewController_ExampleTests-umbrella.h"; sourceTree = ""; }; - B4B1A58096F15199A14069C5D6AA1C99 /* IQKeyboardToolbar */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardToolbar; path = IQKeyboardToolbar.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B4D63D4847FC55FF58BB4A31235A0BF9 /* UIView+Parent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Parent.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIView+Parent.swift"; sourceTree = ""; }; - B4FC1CAC1404126C258F956D45F9CCC6 /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; - B5139508753F2B17003FEED9C0AF3641 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardReturnManager/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - B51861A159CB213A49F54058AD763015 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkURLSession.h; sourceTree = ""; }; - B54E6D465C609652566C8D907BE245FC /* IQKeyboardManagerSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardManagerSwift.modulemap; sourceTree = ""; }; - B5DE92BBC442B76678390B2150C0ED58 /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; - B6A755999186782F65061F41046B284E /* CwlCatchExceptionSupport.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CwlCatchExceptionSupport.modulemap; sourceTree = ""; }; + B45A298ADF7E352EAA440F8905BCF90C /* Pods-Examples-AuthExample-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-AuthExample-acknowledgements.plist"; sourceTree = ""; }; + B4B69F209B6F1F4495BF114F1541F956 /* DSL+Require.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+Require.swift"; path = "Sources/Nimble/DSL+Require.swift"; sourceTree = ""; }; + B508B3D59EE122BA000258BE662F82C6 /* CwlMachBadInstructionHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CwlMachBadInstructionHandler-dummy.m"; sourceTree = ""; }; + B540828AC5D3B9A1032F0539B651D5F8 /* CwlPosixPreconditionTesting-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlPosixPreconditionTesting-prefix.pch"; sourceTree = ""; }; B6AA1166CD5E836C9349D4C8FB74D2E5 /* ConsentViewController-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "ConsentViewController-tvOS.release.xcconfig"; path = "../ConsentViewController-tvOS/ConsentViewController-tvOS.release.xcconfig"; sourceTree = ""; }; - B6CFFBFD33C80AE18D03D79100AF8558 /* HooksPhase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HooksPhase.swift; path = Sources/Quick/Hooks/HooksPhase.swift; sourceTree = ""; }; - B7142A9107596D3C6205A0EDB8A388DD /* ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist"; sourceTree = ""; }; - B789CF2E82183FA849B2EE1AE3EEB80A /* WHCollectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHCollectionView.swift; path = Sources/Subclasses/WHCollectionView.swift; sourceTree = ""; }; - B7BDFAB7F2C3D6412FF9E6427BF0BF5E /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; - B7DA271879C5545FA95AC3A9F8807B2B /* IQKeyboardManager+ActiveConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+ActiveConfiguration.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManager+ActiveConfiguration.swift"; sourceTree = ""; }; - B81BEE3865FF627CB1446B33E244F3B9 /* Pods-TVOSExampleApp-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TVOSExampleApp-acknowledgements.markdown"; sourceTree = ""; }; - B87338A60396DC7C8B9E9C14E50D1517 /* GoogleAppMeasurement.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.release.xcconfig; sourceTree = ""; }; - B9B245DECDD24C9AC0F75E7898CAEF76 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Public/GoogleUtilities/GULSwizzler.h; sourceTree = ""; }; - BAC7A0B37A8D91FE55F50A479F14B44C /* NSBundle+CurrentTestBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSBundle+CurrentTestBundle.swift"; path = "Sources/Quick/NSBundle+CurrentTestBundle.swift"; sourceTree = ""; }; - BAC9703CCCA66DA53EEA0A439C70ABA9 /* ActionableTableViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = ActionableTableViewCell.xib; path = Sources/UI/Cells/ActionableTableViewCell.xib; sourceTree = ""; }; - BB6932AE55EA481CF1AAF28D724E19F9 /* UIView+IQKeyboardManagerExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardManagerExtension.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIView+IQKeyboardManagerExtension.swift"; sourceTree = ""; }; - BB96A1C01235D2DB104ABB1DC2A63E21 /* CwlMachBadInstructionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlMachBadInstructionHandler.h; path = Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h; sourceTree = ""; }; + B6CCD8475E6BA243257119339E4DBD54 /* QuickSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpec.h; path = Sources/QuickObjectiveC/QuickSpec.h; sourceTree = ""; }; + B7759C3AED387997BDA50B71144FD787 /* FIRTimestampInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestampInternal.h; path = FirebaseCore/Sources/FIRTimestampInternal.h; sourceTree = ""; }; + B781E824219B778305D41707941D0DC7 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; + B799A5DBFA15959DB60811F4BFFC4A54 /* FirebaseAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.release.xcconfig; sourceTree = ""; }; + B7D57265727F12753BFA0A851204AE57 /* Pods-Examples-SourcepointFirebaseDemo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-SourcepointFirebaseDemo.release.xcconfig"; sourceTree = ""; }; + B9277DA07B11FB505DEAC060BD00D239 /* IsAppEncrypted.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IsAppEncrypted.m; path = third_party/IsAppEncrypted/IsAppEncrypted.m; sourceTree = ""; }; + B9CCD89762C814CB71B70559F70DBD78 /* BeEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeEmpty.swift; path = Sources/Nimble/Matchers/BeEmpty.swift; sourceTree = ""; }; + BA8F8F124746AD773A70EB0AB5A2BA27 /* Pods-TVOSExampleApp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TVOSExampleApp-umbrella.h"; sourceTree = ""; }; + BAFB6978A553EB71DE67714445835E93 /* FIRCurrentDateProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCurrentDateProvider.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRCurrentDateProvider.h; sourceTree = ""; }; + BB101BC37B0AEBB225E41DC9E97C6A6F /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsErrors.h; sourceTree = ""; }; BBB9A9F0E5F0ED975F2A1A1AA5A8A5EC /* SourcepointClientCoordinator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SourcepointClientCoordinator.swift; sourceTree = ""; }; - BBBB1C27BF4880E7D44DA1EA3A17A658 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetwork.h; sourceTree = ""; }; - BDC87B2DDE2EA8F037A768043509C7DC /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; - BDE3ACC9919EBFCC1AB3449F164F1C80 /* IQKeyboardReturnManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardReturnManager-umbrella.h"; sourceTree = ""; }; - BE46FD2C9A2945C44977ED7FFF75B5ED /* CwlCatchException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchException.swift; path = Sources/CwlCatchException/CwlCatchException.swift; sourceTree = ""; }; - BE60272E11ADB724C93010B2B4936F82 /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; - BE6574F64FA1EA3700CF64D22C778856 /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; - BE7F6B22DDE3192E0442A82C559D5836 /* BeCloseTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeCloseTo.swift; path = Sources/Nimble/Matchers/BeCloseTo.swift; sourceTree = ""; }; - BE80F7781B3D638A7E69BC47FCE44F37 /* IQKeyboardReturnManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardReturnManager-dummy.m"; sourceTree = ""; }; - BED36662D4F72A2E1B9DA8B9823EA686 /* IQKeyboardToolbarManager+Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Deprecated.swift"; path = "IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager+Deprecated.swift"; sourceTree = ""; }; - BF374197388716B739DB5B8C30DAD6A0 /* String+C99ExtendedIdentifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+C99ExtendedIdentifier.swift"; path = "Sources/Quick/String+C99ExtendedIdentifier.swift"; sourceTree = ""; }; - BF4E19260113E31B01ACC4A40F06CC32 /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; - BF930FF66C57169A442D8B8AE1758951 /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; + BC7F7A76B3310BA85822EE10D3E3109C /* Pods-Examples-AuthExample-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-AuthExample-acknowledgements.markdown"; sourceTree = ""; }; + BC81E72BC721CDE1C69C15247B5A8D4E /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; + BC914464C5ED1FDF17767C9CA6FE3BFA /* Pods-Tests-NativeMessageExampleUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-NativeMessageExampleUITests-acknowledgements.markdown"; sourceTree = ""; }; + BCD0C75321A1C0BF2B9B5D8D662A5D14 /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; + BCF3A705209693019C7BB757150DC006 /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-SPGDPRExampleAppUITests-dummy.m"; sourceTree = ""; }; + BDB6A301A140BD2B057989168E75356A /* WHTableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHTableView.swift; path = Sources/Subclasses/WHTableView.swift; sourceTree = ""; }; + BE2CC69216CFE42540DBE68FCA0B4ED2 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h"; sourceTree = ""; }; + BEF1D61F07EF0C0AB2768503E58792D6 /* GoogleAppMeasurement.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.debug.xcconfig; sourceTree = ""; }; + BF38E2D4A611D1CB98007D22EDE74CA9 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h"; sourceTree = ""; }; + BF61B9BC5870DBCF5759758E0AEF470A /* World.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = World.swift; path = Sources/Quick/World.swift; sourceTree = ""; }; + BFC4F70BA0E025FABF8AE4EBFA8D67EC /* Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.markdown"; sourceTree = ""; }; + C0029DE294E83BFBB84C2887A08C25E0 /* CwlCatchExceptionSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CwlCatchExceptionSupport-dummy.m"; sourceTree = ""; }; C03190257F1960B9B76BE102566E21AD /* SPGDPRManagePreferenceViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPGDPRManagePreferenceViewController.xib; sourceTree = ""; }; - C0957EB8E218AD92A68D3B9545B310B8 /* Pods-Examples-ObjC-ExampleApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-ObjC-ExampleApp.release.xcconfig"; sourceTree = ""; }; - C0CA07D267FBD8C4220DECC3B0848D17 /* GULNetworkInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkInfo.m; path = GoogleUtilities/Environment/NetworkInfo/GULNetworkInfo.m; sourceTree = ""; }; - C0FDE3CA87B3E93E97F2DB41CA742521 /* FIRInstallationsBackoffController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsBackoffController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.h; sourceTree = ""; }; - C206E48C5FD72701093625C9FEDD1C14 /* IQTextView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextView.debug.xcconfig; sourceTree = ""; }; - C27FE6E8099EFAE616C0117F0A94461C /* Quick-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-iOS-umbrella.h"; sourceTree = ""; }; + C1D5825FE9414179562E255A3A503F29 /* Quick-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-iOS-umbrella.h"; sourceTree = ""; }; + C201D0FBA20B4E61D6C6EB4E437F2437 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.release.xcconfig"; sourceTree = ""; }; + C25A919CE660D5F6D792682A4F31D41E /* URL+FileName.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+FileName.swift"; path = "Sources/Quick/URL+FileName.swift"; sourceTree = ""; }; + C2978BD4281FF6471CEF1AA8DD6A3747 /* HeartbeatStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatStorage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatStorage.swift; sourceTree = ""; }; C2D78C7CC2691E374ACEB1E6F473BD02 /* ConsentViewController-tvOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ConsentViewController-tvOS-dummy.m"; path = "../ConsentViewController-tvOS/ConsentViewController-tvOS-dummy.m"; sourceTree = ""; }; - C2ED87FF684D4E49C5ED31ABB13C38AC /* Pods-Examples-SourcePointMetaApp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-SourcePointMetaApp.modulemap"; sourceTree = ""; }; C2FCA34B3522D944BAA3DC6A57D99686 /* Nimble-iOS */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Nimble-iOS"; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + C335C633B66ABF1FB3447451876F0D3C /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; C384BAF69B1BDA613D1E4F78577AC62F /* SPPrivacyPolicyViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPPrivacyPolicyViewController.swift; sourceTree = ""; }; - C3BA0948AE51327AA64A49BFFC847D66 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; C3C4FC7367786DA4ADD5D4613303527E /* SPDeviceManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPDeviceManager.swift; path = ConsentViewController/Classes/SPDeviceManager.swift; sourceTree = ""; }; C3D163ED35F95B184B10CF3222D35768 /* Pods-TVOSExampleApp */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-TVOSExampleApp"; path = Pods_TVOSExampleApp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C3DE70D4B74186544DE35040F08B1F68 /* BeAKindOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAKindOf.swift; path = Sources/Nimble/Matchers/BeAKindOf.swift; sourceTree = ""; }; - C3F0A86AF2E75FC5D43E56354F932455 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = Sources/Storage.swift; sourceTree = ""; }; - C407A54E017467BD3403FC613AFB7F1B /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULAppEnvironmentUtil.h; sourceTree = ""; }; - C46CFB8EF3CEB56EDF6712289A27A9C7 /* IQTextView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQTextView.modulemap; sourceTree = ""; }; - C5A307F97B8D4D230351B1E3803B356C /* ErrorUtility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ErrorUtility.swift; path = Sources/Quick/ErrorUtility.swift; sourceTree = ""; }; - C5AE4F2FE6962D2D5782A193601217D4 /* Pods-Examples-SourcepointFirebaseDemo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-SourcepointFirebaseDemo.release.xcconfig"; sourceTree = ""; }; - C5D7A3F73EF1C63F9610263E2A3C4EBA /* RequestTitleSectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTitleSectionView.swift; path = Sources/UI/Sections/RequestTitleSectionView.swift; sourceTree = ""; }; - C5E73C9325537856D0BFC3E891FCC1C0 /* WHLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHLabel.swift; path = Sources/Subclasses/WHLabel.swift; sourceTree = ""; }; - C5F0138D0FEA2195D7B1FCB1DF1496C8 /* Nimble-tvOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Nimble-tvOS-prefix.pch"; path = "../Nimble-tvOS/Nimble-tvOS-prefix.pch"; sourceTree = ""; }; - C61F8B32B14E4029D7A1CA2DE208A5A5 /* Quick-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Quick-tvOS.debug.xcconfig"; path = "../Quick-tvOS/Quick-tvOS.debug.xcconfig"; sourceTree = ""; }; + C48A26F1C27CB3218255C545C1804A12 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; + C4A238FB0CF97AB93EE222784B7BFFAC /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRApp.h; sourceTree = ""; }; + C4B877E79592B4D6C995D2281D9F6286 /* Polling+AsyncAwait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Polling+AsyncAwait.swift"; path = "Sources/Nimble/Polling+AsyncAwait.swift"; sourceTree = ""; }; + C4E227A05C94C5CC3DBB8DC852F7CBC0 /* AdapterProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdapterProtocols.swift; path = Sources/Nimble/Adapters/AdapterProtocols.swift; sourceTree = ""; }; + C4EEBEF62B306E80B295B20921DE6CB7 /* Pods-TVOSExampleAppUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TVOSExampleAppUITests-umbrella.h"; sourceTree = ""; }; + C53DBBA1DC9C863531606F0AB932A772 /* FirebaseCoreInternal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.debug.xcconfig; sourceTree = ""; }; + C586AC8C685D926BFA5DC2B3C023581D /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = ""; }; + C5BF5F4E462DBE0E23350DE73012B8AB /* Pods-Tests-ObjC-ExampleAppUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-ObjC-ExampleAppUITests.release.xcconfig"; sourceTree = ""; }; + C64FE9E56AAF649C693189700CE9DEF6 /* Pods-Tests-AuthExampleUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-AuthExampleUITests-umbrella.h"; sourceTree = ""; }; + C657E970A741205EA5359E6B6A2C8066 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkMessageCode.h; sourceTree = ""; }; + C65C2ED9004D328F635411B8F061B410 /* ExampleMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleMetadata.swift; path = Sources/Quick/Examples/ExampleMetadata.swift; sourceTree = ""; }; C6EE4EAFFA46B29CEDB96AF54E59AD52 /* Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Collection.swift; sourceTree = ""; }; - C71513E560B1CB1D8E9A60A2D72233D9 /* Wormholy.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Wormholy.release.xcconfig; sourceTree = ""; }; - C7C2329C3E94A50D0854E8A86D2E0C27 /* IQKeyboardInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardInfo.swift; path = IQKeyboardNotification/Classes/IQKeyboardInfo.swift; sourceTree = ""; }; + C78C12C555DBA32B65B55FCB7B7BB282 /* Quick-tvOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "Quick-tvOS.modulemap"; path = "../Quick-tvOS/Quick-tvOS.modulemap"; sourceTree = ""; }; C7D0A4151C95D4FBAD32B247F044F933 /* Pods-Examples-NativeMessageExample */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Examples-NativeMessageExample"; path = Pods_Examples_NativeMessageExample.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C86E7B7B7BB35A919A914A174E125A7A /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - C8B93BF6FE9F9C181C11A80BA91A4930 /* HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsPayload.swift; sourceTree = ""; }; + C82A5DBE8CACD9017CE1276B35A9596F /* DSL+AsyncAwait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+AsyncAwait.swift"; path = "Sources/Nimble/DSL+AsyncAwait.swift"; sourceTree = ""; }; C8E0F49D3F9CF6715FD8D2D98638F20F /* Quick-iOS */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Quick-iOS"; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C92509E734A6C345C96274A3E981A6A6 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - C9293F38470C63C2962F16E019C59547 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+ToolbarManagerDeprecated.swift"; path = "IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManagerDeprecated.swift"; sourceTree = ""; }; - C936250F69BC4E03BF6EFDD20C6E0449 /* IQKeyboardToolbarManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Debug.swift"; path = "IQKeyboardToolbarManager/Classes/Debug/IQKeyboardToolbarManager+Debug.swift"; sourceTree = ""; }; - C9391B97E8AE9BB43422D8C5BC9536AC /* CwlMachBadInstructionHandler.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlMachBadInstructionHandler.release.xcconfig; sourceTree = ""; }; - C9A9B7E43BDAD2F718FFD17A863D0A84 /* XCTestSuite+QuickTestSuiteBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestSuite+QuickTestSuiteBuilder.m"; path = "Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m"; sourceTree = ""; }; - CA51FBC8E872CD7ACAD950A44AB5F027 /* CwlCatchException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlCatchException.m; path = Sources/CwlCatchExceptionSupport/CwlCatchException.m; sourceTree = ""; }; - CA61691E97C846F19ADB7C40FD2B4ADB /* IQKeyboardReturnManager+UITextFieldDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardReturnManager+UITextFieldDelegate.swift"; path = "IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextFieldDelegate.swift"; sourceTree = ""; }; - CA715F2887DD043810B1AFE30E508AC1 /* IQKeyboardResignHandler+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardResignHandler+Internal.swift"; path = "IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler+Internal.swift"; sourceTree = ""; }; - CA8395F2E2F83FAF9D50EF21F95C710A /* _ObjC_HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatController.swift; sourceTree = ""; }; - CA8B0499887AFBE40464AD6F5DDA6C5F /* RequestModelBeautifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModelBeautifier.swift; path = Sources/Utils/RequestModelBeautifier.swift; sourceTree = ""; }; - CAD3B3265A52A20F40CA87019535A969 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; - CB3BEA64D4C9043A08F3A930EDD0E944 /* Pods-Examples-AuthExample-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-AuthExample-umbrella.h"; sourceTree = ""; }; + C93613CAA3DC19D9E0E096377AB7C5ED /* ThrowAssertion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowAssertion.swift; path = Sources/Nimble/Matchers/ThrowAssertion.swift; sourceTree = ""; }; + C9F2D2DF6CC228D90A087969F9BE7B1F /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = Sources/Nimble/Utils/Errors.swift; sourceTree = ""; }; + CA6535141BCB8E8D4DB2324E57E4F9EC /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; + CAEBA3A4FFB630398D8DDB44B90DD703 /* NMBExpectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBExpectation.swift; path = Sources/Nimble/Adapters/NMBExpectation.swift; sourceTree = ""; }; + CAF9E07A7A6305EFFE2EB288673EB511 /* CwlPosixPreconditionTesting-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CwlPosixPreconditionTesting-dummy.m"; sourceTree = ""; }; + CAFC8EAFF3ABC5EA268F6B493C20AE6B /* Pods-Tests-ObjC-ExampleAppUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-ObjC-ExampleAppUITests-umbrella.h"; sourceTree = ""; }; + CB3136B459DC0B05660687DF4A3B9F65 /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; CB413D4FC5F9DFD4E06B1F4EC9D9074F /* ConsentViewController-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ConsentViewController-iOS-umbrella.h"; sourceTree = ""; }; - CBE8437615205B25F5BEF35B3A81EDEE /* QuickConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickConfiguration.swift; path = Sources/Quick/Configuration/QuickConfiguration.swift; sourceTree = ""; }; - CBF89707947635E807790F88B0A8BD10 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - CC14A8A1A0D472EF58D5491F0B14547E /* IQTextInputViewNotification.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQTextInputViewNotification.debug.xcconfig; sourceTree = ""; }; + CB6861380BA228BC2D5BBF750F75FD8A /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; + CBBF33C16A255D7666561C58214A8DDA /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig"; sourceTree = ""; }; + CC123F1E84A44117353611B88C0097AC /* Wormholy.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Wormholy.debug.xcconfig; sourceTree = ""; }; CC56497384E780278F916D6C57EA4951 /* CwlPreconditionTesting */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CwlPreconditionTesting; path = CwlPreconditionTesting.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - CCE82D92BB4A30E93E343AE451E79C32 /* BeResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeResult.swift; path = Sources/Nimble/Matchers/BeResult.swift; sourceTree = ""; }; - CDE29F7E2C2B8181BDC86D8BC3C43A2F /* AsyncExample.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncExample.swift; path = Sources/Quick/Examples/AsyncExample.swift; sourceTree = ""; }; - CE4C5BB8F7EA63BD8D6D7AA25EF08757 /* BeGreaterThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThan.swift; path = Sources/Nimble/Matchers/BeGreaterThan.swift; sourceTree = ""; }; - CE61A8CA9758CA1D4AA14AA0909D6F4A /* Callsite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Callsite.swift; path = Sources/Quick/Callsite.swift; sourceTree = ""; }; - CE83326423A35E77F8489B85BACF722B /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - CE860B2EA5C79C372454DCB7851C091C /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; - CEB05A5C3231DDF5CB5C7608FDAAED1A /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - CEDE01BAA77F62D91DCA1484E7720CB7 /* Wormholy.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Wormholy.modulemap; sourceTree = ""; }; - CEEF2772E3AD8AFE9DAE3F2083371D77 /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; - CF03731063A8BCF7639F74A1880DBAEF /* CwlCatchExceptionSupport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlCatchExceptionSupport.debug.xcconfig; sourceTree = ""; }; - CF2874772D1FCD934DCD53213E94B8D6 /* Pods-TVOSExampleAppUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TVOSExampleAppUITests.release.xcconfig"; sourceTree = ""; }; - CF5214681ADBB06F82221BD6E6C63ECF /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; - CFAC1713790B2F45ED9DFC538B41EAF1 /* CwlCatchExceptionSupport-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CwlCatchExceptionSupport-Info.plist"; sourceTree = ""; }; + CCC563B6A69D2B0D20A8FB30665142D1 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; + CCF3F09B4E16EEF6FD42841B31F72458 /* Pods-Examples-SourcepointFirebaseDemo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-SourcepointFirebaseDemo.debug.xcconfig"; sourceTree = ""; }; + CCFA7062CDE08145A77DA166FC7002D3 /* CwlPosixPreconditionTesting-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "CwlPosixPreconditionTesting-Info.plist"; sourceTree = ""; }; + CDFF982F9613E3FB4A5C215E93103634 /* CwlDarwinDefinitions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlDarwinDefinitions.swift; path = Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift; sourceTree = ""; }; + CE47FFAFB9C6F6775EDA79A36AC2D3B6 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = FirebaseCore/Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + CECD5CEF7A06ACD8E031ED8E025DCE01 /* Matcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Matcher.swift; path = Sources/Nimble/Matchers/Matcher.swift; sourceTree = ""; }; + CECFB29FFF56FB9A2B1A4DA99BD7C4F2 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULAppEnvironmentUtil.h; sourceTree = ""; }; + CEE69C6D35AA4A945530637E937BF3C2 /* BeginWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWith.swift; path = Sources/Nimble/Matchers/BeginWith.swift; sourceTree = ""; }; + CF5D725909ED7B31AFBF64914391A556 /* JSONView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JSONView-dummy.m"; sourceTree = ""; }; + CF63470D49386BA6162426EA53A0F83C /* FirebaseAnalytics.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = FirebaseAnalytics.xcframework; path = Frameworks/FirebaseAnalytics.xcframework; sourceTree = ""; }; + CFAAC5718A6E521F52D0B41C1066DA89 /* Heartbeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Heartbeat.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Heartbeat.swift; sourceTree = ""; }; CFC7850E9B7310BAB913C6048A714A7D /* SPUserDataCoreToNativeAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPUserDataCoreToNativeAdapter.swift; sourceTree = ""; }; - CFEF89211FE63A0A4B6ADD195A259172 /* Wormholy-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Wormholy-dummy.m"; sourceTree = ""; }; - D021AFCDBBA61E7E3DD77F234D1D5B43 /* Pods-TVOSExampleApp-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TVOSExampleApp-Info.plist"; sourceTree = ""; }; - D03736E44507497FC9B090CBB6B354E3 /* FIRFirebaseUserAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirebaseUserAgent.h; path = FirebaseCore/Sources/FIRFirebaseUserAgent.h; sourceTree = ""; }; - D0A20F94BAC0F3868916549EF7807042 /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallations.h; sourceTree = ""; }; - D0CF9E05F7A901F3CF7A759DA305AB77 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - D0E78647084792E4319064B21AE398EC /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = GoogleUtilities/Privacy/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - D15D3DB152A6F0E9F5C482B377B5F225 /* Pods-Examples-ConsentViewController_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-ConsentViewController_Example-dummy.m"; sourceTree = ""; }; - D18192CB0AEDAA2F8ED65D84ABE9181E /* IQKeyboardNotification-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardNotification-Info.plist"; sourceTree = ""; }; - D192A166EAE8C2745ED41DCC1E40295A /* PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PromisesObjC-Info.plist"; sourceTree = ""; }; - D1C32D73EB2B645FC9BF38D9365ECCEA /* UIViewController+ParentContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+ParentContainer.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UIViewController+ParentContainer.swift"; sourceTree = ""; }; - D1EF5C57CF95EEDFB6147F92D19FD6F7 /* UIView+IQKeyboardExtensionDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+IQKeyboardExtensionDeprecated.swift"; path = "IQKeyboardToolbar/Classes/IQKeyboardExtension/UIView+IQKeyboardExtensionDeprecated.swift"; sourceTree = ""; }; - D1F15C0CB1373E0CDEC3585B63805043 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; - D292C84B70317E9D64F83924C0B422A0 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; + D027DCACE4D142B20B4BD5E6E6D432C2 /* Pods-Tests-ConsentViewController_ExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-ConsentViewController_ExampleTests.debug.xcconfig"; sourceTree = ""; }; + D07E3BCB34DC26117B3D73571E14C719 /* CwlPosixPreconditionTesting-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlPosixPreconditionTesting-umbrella.h"; sourceTree = ""; }; + D0F180EBC9B28335EC3432CA43ECDE7E /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Quick/Filter.swift; sourceTree = ""; }; + D18C0CC2FE7220451E248FFC07FF119A /* GoogleAppMeasurement-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "GoogleAppMeasurement-xcframeworks.sh"; sourceTree = ""; }; + D2358BE2A6EDDB0E2E6625C0BF99DADF /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; + D27CD9530A31B105C03C4291D69013E5 /* ExpectationMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpectationMessage.swift; path = Sources/Nimble/ExpectationMessage.swift; sourceTree = ""; }; + D29A7FD24890BA441D55198AF549DAEF /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; D2AD834000B280096FEB80FBEBD9A414 /* CwlPosixPreconditionTesting */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CwlPosixPreconditionTesting; path = CwlPosixPreconditionTesting.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - D2B8222ABD79FEDFA24A209D578BAC54 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; - D3626ADBB3B7D16166250CB83C71FD62 /* WeakContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WeakContainer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/WeakContainer.swift; sourceTree = ""; }; + D3053C506293A41E84988669393AA2E2 /* Nimble-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Nimble-iOS.modulemap"; sourceTree = ""; }; + D34B8A15F6299C6B28232CFAC708FA4A /* AssertionDispatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionDispatcher.swift; path = Sources/Nimble/Adapters/AssertionDispatcher.swift; sourceTree = ""; }; + D3718492951C5A3E540D015C422E4101 /* Pods-Examples-AuthExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-AuthExample.debug.xcconfig"; sourceTree = ""; }; + D3BF6FB346A9AD9E836AE089E154841A /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; + D3BFE607791EA4E77DEB5B25B86F53D6 /* QCKConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QCKConfiguration.swift; path = Sources/Quick/Configuration/QCKConfiguration.swift; sourceTree = ""; }; D407B14424BEC0F39C5A5519E9569AAB /* SPCCPAManagePreferenceViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPCCPAManagePreferenceViewController.xib; sourceTree = ""; }; - D40DAEECEA07B34CD1EA6C66DCEB2C6C /* CwlCatchExceptionSupport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlCatchExceptionSupport.release.xcconfig; sourceTree = ""; }; D4316DD881EB24CB8967689A40A4A0E9 /* SPAction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPAction.swift; path = ConsentViewController/Classes/SPAction.swift; sourceTree = ""; }; + D457B402B751C04F059255B73FCD3084 /* Wormholy-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Wormholy-dummy.m"; sourceTree = ""; }; + D4ADF22BEE5D8D30A026F009718DEED1 /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; + D50AF45438D95797AE19B1E06FAF46E6 /* FirebaseCoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCoreInternal-Info.plist"; sourceTree = ""; }; + D57EA1EC67ADFB8529E24D9BE5CBD196 /* ResourceBundle-Wormholy-Wormholy-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Wormholy-Wormholy-Info.plist"; sourceTree = ""; }; + D58925843ACD2530DB031D3F4A88210E /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; D58978C5A6A1FD143B441530BC082B6F /* SPJSReceiver.js */ = {isa = PBXFileReference; includeInIndex = 1; path = SPJSReceiver.js; sourceTree = ""; }; - D594C81A655ECF45EF32CF2373208F47 /* TextTableViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = TextTableViewCell.xib; path = Sources/UI/Cells/TextTableViewCell.xib; sourceTree = ""; }; - D5A667FE13700AECFF9987CEE895483B /* CwlPreconditionTesting-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlPreconditionTesting-prefix.pch"; sourceTree = ""; }; - D5B09BA535863D4B01B71BFC5473DBC4 /* AsyncExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncExampleGroup.swift; path = Sources/Quick/Async/AsyncExampleGroup.swift; sourceTree = ""; }; - D648943AD1475644A64F5CB20717192A /* CustomHTTPProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomHTTPProtocol.swift; path = Sources/CustomHTTPProtocol.swift; sourceTree = ""; }; - D68B5CCB4312B3C7ABA7A6A77426DA41 /* Pods-TVOSExampleAppUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TVOSExampleAppUITests-acknowledgements.plist"; sourceTree = ""; }; - D760B0C71322AB916F76ED1A91FFAACB /* FirebaseCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCore.modulemap; sourceTree = ""; }; - D7D9476A97FCF2A9624775C73C84BCE3 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; - D7DD3BF471A00FE478039145CC4CA53A /* nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "nanopb-Info.plist"; sourceTree = ""; }; - D81FFB2F47CA4FE79FA032EFB71FA53C /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; - D82C3C1195B47C222E0B307D98FBBBEA /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - D8540E8DFF7E9730C196553A9FDCC15B /* IQTextInputViewNotification-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQTextInputViewNotification-prefix.pch"; sourceTree = ""; }; - D8DECABB4D3F288EE625E49E0AFF6EC0 /* IQTextInputViewNotification.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQTextInputViewNotification.modulemap; sourceTree = ""; }; - D900D75BBBD137EE15A051E0E5E8234A /* FirebaseInstallations.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.release.xcconfig; sourceTree = ""; }; - D91F547B9A243B421B112EBB9E56482A /* IQKeyboardToolbarManager+Action.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Action.swift"; path = "IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Action.swift"; sourceTree = ""; }; - D9587A31540199F76B2B124FE2554006 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/FIROptionsInternal.h; sourceTree = ""; }; + D5E09F27370758C63BA4CE1B82FC3813 /* BeAKindOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAKindOf.swift; path = Sources/Nimble/Matchers/BeAKindOf.swift; sourceTree = ""; }; + D61761FAED1678EBE49D655704D4D852 /* CwlBadInstructionException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlBadInstructionException.swift; path = Sources/CwlPreconditionTesting/CwlBadInstructionException.swift; sourceTree = ""; }; + D64B4937FDF3D8CF533E4EB877DF98EB /* WormholyConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = WormholyConstructor.m; path = Sources/Objc/WormholyConstructor.m; sourceTree = ""; }; + D6764DB860D448AB09B0EB126443C70C /* Pods-Examples-SourcepointFirebaseDemo.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-SourcepointFirebaseDemo.modulemap"; sourceTree = ""; }; + D6E9D4F9E424A0C80921487AD67769A6 /* JSONView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JSONView.modulemap; sourceTree = ""; }; + D71CFB19F614F66C807739A4ACAC4B87 /* NSURLSessionConfiguration+Wormholy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLSessionConfiguration+Wormholy.h"; path = "Sources/Objc/NSURLSessionConfiguration+Wormholy.h"; sourceTree = ""; }; + D7507B788F32FE9B02E6244934902E18 /* RequestsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestsViewController.swift; path = Sources/UI/RequestsViewController.swift; sourceTree = ""; }; + D789CAFE5EDBAEFFF324BF1BAAD5DC73 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h; sourceTree = ""; }; + D83242959F1092E99F2EA14C32C81CAF /* Quick-tvOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Quick-tvOS-dummy.m"; path = "../Quick-tvOS/Quick-tvOS-dummy.m"; sourceTree = ""; }; + D86548772C990F391B79991DAC88A054 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; + D8ECA930C85EEF0681176E902707ADBA /* Nimble-iOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Nimble-iOS.debug.xcconfig"; sourceTree = ""; }; + D917722A29AD87DD5BD068621FBE6438 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; + D91DDA07BC3CC1B8EB09B3AFA0BB040E /* utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = utils.swift; path = Sources/NimbleSharedTestHelpers/utils.swift; sourceTree = ""; }; + D95BA39B9E6FD3BB23417AB010B90253 /* nanopb.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = nanopb.modulemap; sourceTree = ""; }; + D99DC118D7CD8871838338516B16829C /* WHTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHTextView.swift; path = Sources/Subclasses/WHTextView.swift; sourceTree = ""; }; + DA2964F48A8D541EDAA1BC00C85FEA4A /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; + DA62B279A92A8086CEA576CE02994601 /* Pods-Examples-ObjC-ExampleApp-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-ObjC-ExampleApp-acknowledgements.plist"; sourceTree = ""; }; DA758438A6F939B8785F036B8FB7EC9A /* UIApplicationExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = UIApplicationExtensions.swift; sourceTree = ""; }; - DB2C05762A801FB522FBCB138FF1441E /* BeginWithPrefix.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWithPrefix.swift; path = Sources/Nimble/Matchers/BeginWithPrefix.swift; sourceTree = ""; }; - DC2639B1E829A5F90E03607464AF4414 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; - DC502882CA19E12678FC23F8D01856B7 /* Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.plist"; sourceTree = ""; }; + DB0C46F79E0A712FEA40799F37A7DE9A /* FIRInstallationsBackoffController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsBackoffController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsBackoffController.m; sourceTree = ""; }; + DB8E64A84501116406F05591EF5569D1 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRConfiguration.h; sourceTree = ""; }; + DBB9E3F0C98632796EF5E60F1397F9F8 /* GoogleUtilities.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleUtilities.modulemap; sourceTree = ""; }; + DC1CAFFD4AC820A8A8142758CD813CB2 /* TextTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextTableViewCell.swift; path = Sources/UI/Cells/TextTableViewCell.swift; sourceTree = ""; }; + DC4F0B29B237736C39F7DD8FDBB18F9B /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainUtils.h; sourceTree = ""; }; DC7D803B015186A369CD4EEDDEA702D5 /* SPCCPAVendorDetailsViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPCCPAVendorDetailsViewController.xib; sourceTree = ""; }; - DCF101A454E3B6E2A06629217D2236D8 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; - DD2F058EBD88A736E9743D0365C027B9 /* IQKeyboardNotification-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardNotification-dummy.m"; sourceTree = ""; }; - DD709697921D84227DDB94894644BB1A /* Pods-Examples-NativeMessageExample-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-NativeMessageExample-Info.plist"; sourceTree = ""; }; - DE7D597697731D9160062FDCF285D382 /* IQKeyboardToolbarManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbarManager.swift; path = IQKeyboardToolbarManager/Classes/IQKeyboardToolbarManager.swift; sourceTree = ""; }; - DEB7328BDFB8614EAD2EAD799824C0FE /* FirebaseAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.release.xcconfig; sourceTree = ""; }; - DEC7E2308BBA2F7476024112C8965575 /* BeAnInstanceOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAnInstanceOf.swift; path = Sources/Nimble/Matchers/BeAnInstanceOf.swift; sourceTree = ""; }; - DEDFF0DA9BDA7F9C27F2062C14B8D371 /* nanopb-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-umbrella.h"; sourceTree = ""; }; - DF194C25B34AEA58DDC39968922E81AC /* ExpectationMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpectationMessage.swift; path = Sources/Nimble/ExpectationMessage.swift; sourceTree = ""; }; - DFAD2755DFADA501DCDEE7481708E60D /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-SPGDPRExampleAppUITests-dummy.m"; sourceTree = ""; }; + DC9A7AD559810014C5DD843DA715769E /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; + DCC5179190EFCF46F0138C082D59336A /* CwlCatchExceptionSupport.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CwlCatchExceptionSupport.modulemap; sourceTree = ""; }; + DCF5B1B54F9B06E847A0B60092820090 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.plist"; sourceTree = ""; }; + DD92BB626CE1C3605390619AD21F737D /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/FIROptionsInternal.h; sourceTree = ""; }; + DDF59D6FA714C844C8EC0838634D62C3 /* FirebaseCoreInternal.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreInternal.modulemap; sourceTree = ""; }; + DE390EE407C21DA6FF06705B4ACB0B8C /* Pods-Examples-ConsentViewController_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-ConsentViewController_Example-resources.sh"; sourceTree = ""; }; + DEBF8915560F7B496A8793AE2D5C3EED /* Quick-tvOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Quick-tvOS-umbrella.h"; path = "../Quick-tvOS/Quick-tvOS-umbrella.h"; sourceTree = ""; }; + DEEF40DE698DE03CE61780B013801EC4 /* PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PromisesObjC-Info.plist"; sourceTree = ""; }; + DF7B281A35B5856FA4C77079544EB4E8 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; + DF8FB938F2D1C3417C0E8E56F6968387 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; + DF9400A036A2057E31F6D39994BEA6E3 /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; + DF984411EEE48496E173411B16040B27 /* Nimble.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Nimble.h; path = Sources/Nimble/Nimble.h; sourceTree = ""; }; + DFB523B22A88143D46E82779B32E65E1 /* Behavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Behavior.swift; path = Sources/Quick/Behavior.swift; sourceTree = ""; }; DFD25270998D2DDE6B8FC4CE1F1E2368 /* SPGDPRVendorDetailsViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPGDPRVendorDetailsViewController.xib; sourceTree = ""; }; - E0043707CF07D44F9220C7CF087E2D95 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; + E00171F12786BCAF90D340DF75652758 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.markdown"; sourceTree = ""; }; E022694EBD639B47976FDF834FB1C922 /* Date.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Date.swift; sourceTree = ""; }; - E04746FC82CB76AC1DA809F7843EAF6C /* Nimble.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Nimble.h; path = Sources/Nimble/Nimble.h; sourceTree = ""; }; - E0918FFEBF892D4F27789FC8F1E3DA1D /* Quick-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-iOS-prefix.pch"; sourceTree = ""; }; - E0A038CAFCE049FCCA2B19001A4C4C96 /* FirebaseCoreInternal-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-umbrella.h"; sourceTree = ""; }; - E0A060E5DA1F12147B39CB28131FA6D2 /* AsyncSpec+testMethodSelectors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "AsyncSpec+testMethodSelectors.m"; path = "Sources/QuickObjectiveC/AsyncSpec+testMethodSelectors.m"; sourceTree = ""; }; + E08341FF0B126BFD0CDD86637D32A455 /* Config.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Config.swift; path = "Sources/Support Files/Config.swift"; sourceTree = ""; }; + E09E2A0CFA94259396CB6CEB353D28D2 /* EndWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndWith.swift; path = Sources/Nimble/Matchers/EndWith.swift; sourceTree = ""; }; E0BC8BB0FE4725CF87EB0A9F5D400FD6 /* CwlCatchException */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CwlCatchException; path = CwlCatchException.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + E0BE513955A6A8F454A160C86672A1AF /* WeakContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WeakContainer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/WeakContainer.swift; sourceTree = ""; }; + E0FE600A1374B33A5B6477ADE7BEB50B /* Polling+Require.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Polling+Require.swift"; path = "Sources/Nimble/Polling+Require.swift"; sourceTree = ""; }; E1176A8E7C8F4162FFCA404BE6EEBB1C /* CwlMachBadInstructionHandler */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = CwlMachBadInstructionHandler; path = CwlMachBadInstructionHandler.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E18ABD7A97D4F0D64B0819C191C35E84 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - E1B76FB29EA8F4A3A6137D51D23FADEF /* CwlCatchException-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlCatchException-umbrella.h"; sourceTree = ""; }; - E1E7F1F0F821C28473F4A86C41B25AB7 /* DSL+AsyncAwait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+AsyncAwait.swift"; path = "Sources/Nimble/DSL+AsyncAwait.swift"; sourceTree = ""; }; - E2129BA7BCD8B648B9FB349C176DA621 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; - E28183BA96EE0DB449E61EDB2A843AFE /* SatisfyAllOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAllOf.swift; path = Sources/Nimble/Matchers/SatisfyAllOf.swift; sourceTree = ""; }; + E12C628F8A6E37A9B41D172C026E089C /* RingBuffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RingBuffer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/RingBuffer.swift; sourceTree = ""; }; + E1950C06292EF70F37F928D0221C45BC /* Pods-Examples-NativeMessageExample-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-NativeMessageExample-umbrella.h"; sourceTree = ""; }; + E1DF5F3530E33B4156A15DA05CA96AB7 /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; + E20F080CF4726774171AFD81E7651852 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* FirebaseCore */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseCore; path = FirebaseCore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E2EAA97E201B165642B004876504B27A /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; - E302764BB6FE971DF646B352FF0DE874 /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; - E32F4479E29DABAF7BF872B9AAAF4A6C /* HeartbeatLoggingTestUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatLoggingTestUtils.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatLoggingTestUtils.swift; sourceTree = ""; }; - E34D926F7527B1A43827738B3FA8609C /* CwlMachBadInstructionHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CwlMachBadInstructionHandler-dummy.m"; sourceTree = ""; }; - E3863FD1C556D54C3E982C50EA82E084 /* CwlPreconditionTesting-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CwlPreconditionTesting-dummy.m"; sourceTree = ""; }; - E3A9EBD09DA6CFE051E1666471870367 /* Pods-Examples-ObjC-ExampleApp-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Examples-ObjC-ExampleApp-resources.sh"; sourceTree = ""; }; - E3F2C0FF7F6DD89E6D8730E213E8BEC2 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-Info.plist"; sourceTree = ""; }; - E3FA1A4311E27E13B867AB056D3F2625 /* IQKeyboardReturnManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardReturnManager-prefix.pch"; sourceTree = ""; }; - E41CA8AA74470D540AF0516CAAB225AD /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = spm_resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - E4269C979DF800C248CEE4EF6E553E03 /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = ""; }; - E4B024DDAEF0A1292C4585B5E4480C09 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.markdown"; sourceTree = ""; }; - E58DF34CA22A58EAA384996DA0161FAB /* UIScrollView+IQKeyboardManagerExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+IQKeyboardManagerExtension.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/IQKeyboardManagerExtension/UIScrollView+IQKeyboardManagerExtension.swift"; sourceTree = ""; }; - E5CB5ECF48DAC0B2C0B6B7AD94DD9AE5 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; + E3DF9797CB7081636075297C5AD03C8F /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; + E49E6D6DF3D5881F79486368E84FCB60 /* MatchError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatchError.swift; path = Sources/Nimble/Matchers/MatchError.swift; sourceTree = ""; }; + E4D1AA884C1CB9EA1A532E137F62DF01 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; + E562D071DF5C85A7D9A62DF9869F2077 /* BeGreaterThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThan.swift; path = Sources/Nimble/Matchers/BeGreaterThan.swift; sourceTree = ""; }; + E56720F7641E6178548E80A357F58E29 /* SPMobileCore-iOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "SPMobileCore-iOS.debug.xcconfig"; sourceTree = ""; }; + E5A90DC015710209E7CD98F16456F934 /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; E5D6584C89A476EAB14E471673012300 /* GDPRPMConsentSnapshot.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = GDPRPMConsentSnapshot.swift; sourceTree = ""; }; - E5DBC71098660DE5B08E3F9DDD5A97F8 /* IQKeyboardReturnManager+UITextViewDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardReturnManager+UITextViewDelegate.swift"; path = "IQKeyboardReturnManager/Classes/Delegates/IQKeyboardReturnManager+UITextViewDelegate.swift"; sourceTree = ""; }; - E5F243977118F9FF7014EFBD618CBCBD /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - E60E9F9CA7724A87FB2F40B32C5FF349 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; + E6020701076C5683495ABB08DA3A7333 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; E618051BCBE2BDF5EB953B3E37A09230 /* SPUIColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPUIColor.swift; sourceTree = ""; }; - E62B48AD78A8199016E9CC780B0C438D /* IQKeyboardConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardConstants.swift; path = IQKeyboardCore/Classes/Constants/IQKeyboardConstants.swift; sourceTree = ""; }; - E65AF204BB83B541A6F7685A67A74FE2 /* IQKeyboardToolbarManager+Toolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardToolbarManager+Toolbar.swift"; path = "IQKeyboardToolbarManager/Classes/Toolbar/IQKeyboardToolbarManager+Toolbar.swift"; sourceTree = ""; }; - E6B6055780BBF42CF95D5E9937FA4B31 /* Section.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Section.swift; path = Sources/Models/Section.swift; sourceTree = ""; }; - E72C75729C5B0D555147F8E096CDF979 /* NimbleSwiftTestingHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleSwiftTestingHandler.swift; path = Sources/Nimble/Adapters/NimbleSwiftTestingHandler.swift; sourceTree = ""; }; - E74D488FAB1BF71E1683399DE24561E3 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.debug.xcconfig"; sourceTree = ""; }; - E750A7087DBD3C4BACD13CFF8ED23007 /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; - E75AE00E671306E9A58B2E5A5815D48F /* Wormholy-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Wormholy-umbrella.h"; sourceTree = ""; }; - E78C616233D5D9825EB073523F0DC62C /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; - E79685EF80A61FB64E0432F6162A1238 /* IQKeyboardResignHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardResignHandler.swift; path = IQKeyboardManagerSwift/Resign/IQKeyboardResignHandler.swift; sourceTree = ""; }; + E63152537F06AB68D928373397496476 /* CwlCatchException-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CwlCatchException-dummy.m"; sourceTree = ""; }; + E644160EE5572B4D70C122FC6C0030CA /* Wormholy.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Wormholy.modulemap; sourceTree = ""; }; + E6D81D324A45B00A21917B41DC00EE14 /* AtomicBox.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AtomicBox.swift; path = FirebaseCore/Internal/Sources/Utilities/AtomicBox.swift; sourceTree = ""; }; + E6EA4EE2E0B3349DDA3F12A650A9EB6C /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Public/GoogleUtilities/GULReachabilityChecker.h; sourceTree = ""; }; + E73D415FC8E60BAA2062B80EDD4E7068 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; + E747AFEEEAD893ED40EDE94A046B4EB1 /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; + E7A6CA6E393D185DC7E955D806EE679D /* Nimble-iOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Nimble-iOS.release.xcconfig"; sourceTree = ""; }; E809C61DAFA64E047AFD6934B3D368B1 /* SPPMHeader.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPPMHeader.xib; sourceTree = ""; }; - E8ABD8DA9A1E576B3BF3437149CD387C /* IQKeyboardNotification.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardNotification.modulemap; sourceTree = ""; }; - E8B44AA61F315BDAD17181D9386F5FB4 /* GoogleUtilities-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-umbrella.h"; sourceTree = ""; }; - E93B05AB7F2D74755F556BEFA27ABDB6 /* Polling+Require.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Polling+Require.swift"; path = "Sources/Nimble/Polling+Require.swift"; sourceTree = ""; }; - E9434B13D13532D911BB386151B42943 /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; - E96E350596132C3A65B58D48E75232FE /* IQKeyboardToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardToolbar.swift; path = IQKeyboardToolbar/Classes/IQKeyboardToolbar.swift; sourceTree = ""; }; - E97532B3008EAD598A48D9E01B06B2B7 /* AsyncSpec.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncSpec.swift; path = Sources/Quick/Async/AsyncSpec.swift; sourceTree = ""; }; + E84ABB3924CEB7F19756CBF084872C9A /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; + E961EDCCDDC00D8E1CE5B2C8E47AD6B6 /* CwlCatchExceptionSupport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlCatchExceptionSupport.debug.xcconfig; sourceTree = ""; }; E98FFA7D2B12F8B56DF12ED0872E6ED9 /* SPStringifiedJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPStringifiedJSON.swift; path = ConsentViewController/Classes/SPStringifiedJSON.swift; sourceTree = ""; }; - E9EAAA300C2D6362912AE15C9D01E4CF /* IQKeyboardReturnManager.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardReturnManager.release.xcconfig; sourceTree = ""; }; + E9AF1DD8800EC7667D9FEE526017EBA6 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; E9FBF67C3246E3D2ADA23088089A3045 /* ConsentViewController-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ConsentViewController-iOS-prefix.pch"; sourceTree = ""; }; - EA0D26720A72EBD5E2B83B2AAB765B08 /* Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.markdown"; sourceTree = ""; }; - EA5173EB199F9C06632F1D554BFEA535 /* Flow.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Flow.storyboard; path = Sources/UI/Flow.storyboard; sourceTree = ""; }; - EA5D8EF50A7F32B84EBC90AF394CB7C8 /* NimbleEnvironment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleEnvironment.swift; path = Sources/Nimble/Adapters/NimbleEnvironment.swift; sourceTree = ""; }; - EA6EBBDAFEAF9A267D8A8E92122DD4B2 /* Pods-Examples-NativeMessageExample-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Examples-NativeMessageExample-acknowledgements.markdown"; sourceTree = ""; }; - EA79E967714FB4D90542038839E9CB94 /* PromisesObjC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PromisesObjC.modulemap; sourceTree = ""; }; - EA9FBE05AF82518F98FDD4F55F6BE908 /* Pods-Examples-SourcepointFirebaseDemo-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-SourcepointFirebaseDemo-acknowledgements.plist"; sourceTree = ""; }; - EAABE4CA58AFE687902C3F3C7046A681 /* Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.plist"; sourceTree = ""; }; - EADB2648A8FBA0C2EDBA5849395F04A1 /* IQTextView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQTextView-Info.plist"; sourceTree = ""; }; - EBB21CCD209327E78352F268FE5D05DD /* CwlCatchException-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CwlCatchException-dummy.m"; sourceTree = ""; }; - ED1FC96C6EDA99EF67C2DA3C4A33582A /* Wormholy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Wormholy.swift; path = Sources/Wormholy.swift; sourceTree = ""; }; - ED4C44088D195E59E09E786F41DAD355 /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = Sources/Nimble/Matchers/Map.swift; sourceTree = ""; }; - ED6272CCA83508A3A34BA111C6A513BB /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Quick/Filter.swift; sourceTree = ""; }; - EDCE60703B147513DEAC7E5E96A65154 /* Pods-Examples-SourcepointFirebaseDemo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Examples-SourcepointFirebaseDemo-dummy.m"; sourceTree = ""; }; + EA58F85FCDEC2400C373393A8B8671F2 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; + EA63672DF60F28265DFD1420B99A70EB /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; + EA912589A26C4C8224E4E47248628B5E /* DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DSL.h; path = Sources/NimbleObjectiveC/include/DSL.h; sourceTree = ""; }; + EB27448A9BC9AA7F27CE7651E27BD1CD /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; + EB79275C499218CB1DBD03A24EAE9C04 /* Quick-iOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Quick-iOS.release.xcconfig"; sourceTree = ""; }; + EBFC08AE168F4B9CE4FDE17A434408A6 /* ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; sourceTree = ""; }; + ED66B0131C8A4D93560B40D085E3989A /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; + ED8C9B31D02EC3666D7EFD9158616F3C /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/FBLPromises/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; + ED8F27718291C15FD0831F6D68CC99D6 /* CwlPosixPreconditionTesting.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlPosixPreconditionTesting.debug.xcconfig; sourceTree = ""; }; EDF69D30CA3D2B0C488942CB6B5D247E /* SPCCPACategoryDetailsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPCCPACategoryDetailsViewController.swift; sourceTree = ""; }; - EDFB09D332CF36721F7A83B65175E88F /* IQTextInputViewInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputViewInfo.swift; path = IQTextInputViewNotification/Classes/IQTextInputViewInfo.swift; sourceTree = ""; }; - EE0739C1018CA17711EA54F49417946B /* IQTextInputView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputView.swift; path = IQKeyboardCore/Classes/IQTextInputView.swift; sourceTree = ""; }; - EE38E7D54FBC5FA87D165B5A4FA59EC9 /* RequestsViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestsViewController.swift; path = Sources/UI/RequestsViewController.swift; sourceTree = ""; }; - EE54C9146230FA28D06FA1D85664BB37 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/Public/GoogleUtilities/GULNSData+zlib.h"; sourceTree = ""; }; + EE1E3EC8B1B1A3966495448B237ABC7C /* Pods-Tests-SPGDPRExampleAppUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-SPGDPRExampleAppUITests-umbrella.h"; sourceTree = ""; }; EE78CA102B7BD2FFD251FA862D4239DC /* SPQRCode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPQRCode.swift; sourceTree = ""; }; - EE841CFFC5421051274500BC8FF6A8DB /* IQKeyboardToolbar-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "IQKeyboardToolbar-Info.plist"; sourceTree = ""; }; - EF6900942D6C588E3E56535DCCF82EFD /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - EF9D8ACBD90B202ED7671AED491D5F28 /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; - EFFB42EBA6B36A4E257D3F51EF9DC7DC /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = FirebaseCore/Internal/Sources/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - F00A310658C463AD2E3C33FB171EC9F8 /* IQTextInputViewNotification-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQTextInputViewNotification-dummy.m"; sourceTree = ""; }; + EEBD42371DFCE603D7B22168452A54CD /* Expression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expression.swift; path = Sources/Nimble/Expression.swift; sourceTree = ""; }; + EFB58244D1F8C89ABA1C0612D57AAE64 /* RequestTitleSectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTitleSectionView.swift; path = Sources/UI/Sections/RequestTitleSectionView.swift; sourceTree = ""; }; + EFE9E108B5465D152CD48415ABA129C6 /* Wormholy-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Wormholy-Info.plist"; sourceTree = ""; }; + F01BF3CD43E2CFBD57230C09C9A17E79 /* Pods-TVOSExampleAppUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TVOSExampleAppUITests-Info.plist"; sourceTree = ""; }; F045FC917421FFB4E16A9C05BD0B27C8 /* SPFocusableTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPFocusableTextView.swift; sourceTree = ""; }; F04688DB063193CB7C0D050E87ACE1FE /* Pods-Tests-ObjC-ExampleAppUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Tests-ObjC-ExampleAppUITests"; path = Pods_Tests_ObjC_ExampleAppUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - F12B154BCE2F829B35E14B1572A6A11B /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; - F1491DC45BF249A59AD8CC59BC57813D /* DSL+Wait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+Wait.swift"; path = "Sources/Nimble/DSL+Wait.swift"; sourceTree = ""; }; - F22C32C8E37A2E81C19E81D115A7CD82 /* Quick-tvOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Quick-tvOS-prefix.pch"; path = "../Quick-tvOS/Quick-tvOS-prefix.pch"; sourceTree = ""; }; - F3AA96C6D3CC2339D41DFCCA064AE221 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; - F3F02076DF398AB04994F86592D2A03B /* SuiteHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SuiteHooks.swift; path = Sources/Quick/Hooks/SuiteHooks.swift; sourceTree = ""; }; - F43C191D5EFD4AA4564971E2F3E68FCF /* IQScrollViewConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQScrollViewConfiguration.swift; path = IQKeyboardManagerSwift/IQKeyboardManager/Configuration/IQScrollViewConfiguration.swift; sourceTree = ""; }; - F440B4F75146FD828851926CEEE43163 /* Equal+Tuple.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Equal+Tuple.swift"; path = "Sources/Nimble/Matchers/Equal+Tuple.swift"; sourceTree = ""; }; - F4717DE3C7C32C18CA230DEF9AE3D3FE /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = IQKeyboardToolbarManager/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - F4A7C470969D8D9C13E2AC186A25DCCD /* Pods-Tests-AuthExampleUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests-AuthExampleUITests.debug.xcconfig"; sourceTree = ""; }; - F536C8567BCC74900C15620A5D873D25 /* WHDate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WHDate.swift; path = Sources/Subclasses/WHDate.swift; sourceTree = ""; }; + F06CECB781AD3E9067662A0AC7DE9DD4 /* FirebaseInstallations.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.debug.xcconfig; sourceTree = ""; }; + F07C3D01FFA070062D9EC8A369BDB030 /* World+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "World+DSL.swift"; path = "Sources/Quick/DSL/World+DSL.swift"; sourceTree = ""; }; + F2004A57A681520ED09705AE13DC0CE8 /* FirebaseAnalytics-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "FirebaseAnalytics-xcframeworks.sh"; sourceTree = ""; }; + F246135F6FE2FB42E2CA72F43F3C861E /* NMBStringify.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBStringify.h; path = Sources/NimbleObjectiveC/include/NMBStringify.h; sourceTree = ""; }; + F29115D95F0553BA382E8F62BAC00F6B /* Expectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expectation.swift; path = Sources/Nimble/Expectation.swift; sourceTree = ""; }; + F29AD012F64DCE477800BA6013E08ABF /* NimbleTimeInterval.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleTimeInterval.swift; path = Sources/Nimble/Utils/NimbleTimeInterval.swift; sourceTree = ""; }; + F30B43572ABB63577000F4536CC547A0 /* Pods-TVOSExampleApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TVOSExampleApp-dummy.m"; sourceTree = ""; }; + F3109154306A035EA1599891C38CF19E /* ThrowError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowError.swift; path = Sources/Nimble/Matchers/ThrowError.swift; sourceTree = ""; }; + F3B493D0637A76D11CAF5E42F5A25D6E /* Pods-Tests-NativeMessageExampleUITests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-NativeMessageExampleUITests-resources.sh"; sourceTree = ""; }; + F4635A175F55A56F658216A24DDBD810 /* Negation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Negation.swift; path = Sources/Nimble/Matchers/Negation.swift; sourceTree = ""; }; + F489C6D8BF4D2897D5E6BDD18EB86725 /* TextTableViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = TextTableViewCell.xib; path = Sources/UI/Cells/TextTableViewCell.xib; sourceTree = ""; }; + F4B9EA609443DB5F58DD34CE79AE2AF4 /* RequestCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestCell.swift; path = Sources/UI/Cells/RequestCell.swift; sourceTree = ""; }; + F4D41D0FC581C64139A0BF48F1400C96 /* BeIdenticalTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeIdenticalTo.swift; path = Sources/Nimble/Matchers/BeIdenticalTo.swift; sourceTree = ""; }; + F4F8FBA68180851A1CF8AD12A3A282D1 /* FirebaseInstallations.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseInstallations.modulemap; sourceTree = ""; }; F56C090F1C9366C37AB253AAB9FE1A05 /* jest.config.json */ = {isa = PBXFileReference; includeInIndex = 1; path = jest.config.json; sourceTree = ""; }; - F5C59B4ED524ABF6D2C2622A2C3CF9CE /* IQKeyboardManager+ToolbarManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+ToolbarManager.swift"; path = "IQKeyboardManagerSwift/IQKeyboardToolbarManager/IQKeyboardManager+ToolbarManager.swift"; sourceTree = ""; }; - F5E901D6799A4080D3DA5DE97F41AB72 /* BeLogical.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLogical.swift; path = Sources/Nimble/Matchers/BeLogical.swift; sourceTree = ""; }; - F61D4ECE7209D921C3706D389D3DD21B /* Pods-Examples-SourcepointFirebaseDemo-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-SourcepointFirebaseDemo-umbrella.h"; sourceTree = ""; }; - F62081B5872B4B4CA6605D0C45EC6AA5 /* AssertionDispatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionDispatcher.swift; path = Sources/Nimble/Adapters/AssertionDispatcher.swift; sourceTree = ""; }; - F63D0B2446F40712AA7AD3941D1BCB53 /* ExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleHooks.swift; path = Sources/Quick/Hooks/ExampleHooks.swift; sourceTree = ""; }; - F63F06A3984BCA7D29B059A0408A9A12 /* IQTextInputViewInfoModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextInputViewInfoModel.swift; path = IQKeyboardReturnManager/Classes/IQTextInputViewInfoModel.swift; sourceTree = ""; }; - F66C852B103CF039C0B2B16B131E3FD5 /* IQKeyboardToolbar.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardToolbar.modulemap; sourceTree = ""; }; + F5DE8078DD6AB98EE633233990050414 /* SatisfyAllOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAllOf.swift; path = Sources/Nimble/Matchers/SatisfyAllOf.swift; sourceTree = ""; }; + F5FF509FBD88B953E54C764F9C69301D /* Quick-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Quick-tvOS.debug.xcconfig"; path = "../Quick-tvOS/Quick-tvOS.debug.xcconfig"; sourceTree = ""; }; + F6598E2BE5FA262A82F4610298F70426 /* ShareUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShareUtils.swift; path = Sources/Utils/ShareUtils.swift; sourceTree = ""; }; F69850BE0942AAF7569973E18927CB8F /* SPCCPAPartnersViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPCCPAPartnersViewController.xib; sourceTree = ""; }; - F6B816906F8A377175AF29FD385267AF /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; - F6C453108D1D255C879A6DF690CA1097 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; - F7FC3DF3EC50F2594E30DE7CD391DC34 /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; + F6C9F063562098F1CE8683FCCBF9937F /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; + F81843E693175365B045CE212267EDB0 /* CwlPreconditionTesting-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlPreconditionTesting-prefix.pch"; sourceTree = ""; }; F82FF19FFE4F10307AE69709C965B235 /* SPUserDefaults.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SPUserDefaults.swift; sourceTree = ""; }; - F86DDBECF7964F601C28D8407C8E5660 /* Pods-Examples-ConsentViewController_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Examples-ConsentViewController_Example-umbrella.h"; sourceTree = ""; }; F8C910DBDF5A6D2D1FD47EEAE69D7867 /* SPGDPRCategoryDetailsViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPGDPRCategoryDetailsViewController.xib; sourceTree = ""; }; F8E495568942DD4F992BA43DDA0C4D7A /* SPGDPRNativePrivacyManagerViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPGDPRNativePrivacyManagerViewController.xib; sourceTree = ""; }; - F90DDF1898184087BBAD77CEC96A842D /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULApplication.h; sourceTree = ""; }; + F8F6444C5E803ADDC3C044E78B24027E /* Pods-Examples-ConsentViewController_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Examples-ConsentViewController_Example.release.xcconfig"; sourceTree = ""; }; F9444BEB61B4B9D850FF5A2216A3C8DF /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests"; path = Pods_Tests_FirebaseTests_SourcepointFirebaseDemoUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - F956E149F5B195BB7833F97FC6211AE8 /* IQTextInputViewNotification-IQTextInputViewNotification */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "IQTextInputViewNotification-IQTextInputViewNotification"; path = IQTextInputViewNotification.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; F9811C119055ADA50A0FB38EFA8F3237 /* SPCampaigns.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPCampaigns.swift; path = ConsentViewController/Classes/SPCampaigns.swift; sourceTree = ""; }; - F99A847226F1CB64296C8D40579E77BF /* UITableView+IndexPaths.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITableView+IndexPaths.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager/UIKitExtensions/UITableView+IndexPaths.swift"; sourceTree = ""; }; - F9DA5DD14F328DC15C1B8894F9EBE99A /* Nimble-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Nimble-tvOS.release.xcconfig"; path = "../Nimble-tvOS/Nimble-tvOS.release.xcconfig"; sourceTree = ""; }; - FA727BF5D9541C98C22C9ECC911576E2 /* IQKeyboardToolbarManager */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardToolbarManager; path = IQKeyboardToolbarManager.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + F9F7EF137340DA46E15DCAD51DA529E1 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; + FA5ACA0DADFFCD0AC6C4B7718FB81B74 /* Pods-Tests-NativeMessageExampleUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-NativeMessageExampleUITests-Info.plist"; sourceTree = ""; }; + FAD532F54DED27FD9BD341DB8CA8F1A3 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m"; sourceTree = ""; }; FB66F7B9C00367A78FF52612B556CDAC /* CampaignConsent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CampaignConsent.swift; sourceTree = ""; }; + FB7D5F2CF370AFE78ABDA48E5399A4D7 /* HeartbeatLoggingTestUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatLoggingTestUtils.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatLoggingTestUtils.swift; sourceTree = ""; }; + FBCBC8108645B18CA20303D65BE535F2 /* Wormholy.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Wormholy.release.xcconfig; sourceTree = ""; }; FBD0C3FE4BCECF88927C3C5C450B34C6 /* SPCCPANativePrivacyManagerViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = SPCCPANativePrivacyManagerViewController.xib; sourceTree = ""; }; - FBE547F9D281008A40E7EBF35CB5799A /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; - FC6FA136BB9434E8C85E93ED49F4B26A /* Pods-Tests-ObjC-ExampleAppUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-ObjC-ExampleAppUITests-dummy.m"; sourceTree = ""; }; - FC706AD81CC3AB9974F689DF1937213B /* SPMobileCore-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "SPMobileCore-tvOS.debug.xcconfig"; path = "../SPMobileCore-tvOS/SPMobileCore-tvOS.debug.xcconfig"; sourceTree = ""; }; - FC7F0CF2EA5DF59C59D9995890DA5C47 /* IQKeyboardCore */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardCore; path = IQKeyboardCore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + FC8366C584A08F8D3CF627BBB65324C4 /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; FC93A0989C42FA19D96552F13D5FE50C /* Pods-Tests-ConsentViewController_ExampleTests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Tests-ConsentViewController_ExampleTests"; path = Pods_Tests_ConsentViewController_ExampleTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; FCAF9049188EC86589F780B62B42DDE9 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = ConsentViewController/Assets/PrivacyInfo.xcprivacy; sourceTree = ""; }; - FCC4D7BA5D8ACEC8567D676494521B19 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore/FirebaseCore.h; sourceTree = ""; }; - FCE122F25E5F686A943505B92705B9FE /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Sources/FBLPromises/Resources/PrivacyInfo.xcprivacy; sourceTree = ""; }; - FD17AB599D447FDD7701ECCA77D1AD28 /* DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DSL.h; path = Sources/NimbleObjectiveC/include/DSL.h; sourceTree = ""; }; + FCB584E83AF057F9A589843EF7C3B147 /* SubclassDetection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubclassDetection.swift; path = Sources/Quick/SubclassDetection.swift; sourceTree = ""; }; + FCBBE1E4393FA72336B9E5D427A7C654 /* Quick-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Quick-iOS.modulemap"; sourceTree = ""; }; + FCD3694BB47B79F76D34B73567A3700F /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-Info.plist"; sourceTree = ""; }; FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - FDA0BEEBE00BD74FC0487862440E6BFC /* BeNil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeNil.swift; path = Sources/Nimble/Matchers/BeNil.swift; sourceTree = ""; }; - FEA8166E0B3BDC5149E48354C4FFF351 /* CwlCatchException.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CwlCatchException.modulemap; sourceTree = ""; }; - FEB3469995AD06E9930DFD048DEE190D /* Pods-Examples-AuthExample-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Examples-AuthExample-acknowledgements.plist"; sourceTree = ""; }; - FEF9AC89E9C4BD37AC0AB78B535D1CFC /* IQKeyboardNotification */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IQKeyboardNotification; path = IQKeyboardNotification.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - FF7F0ED12041FA1C08C401A7D0DD29A1 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - FFA2CE5D89698BA9D6FFE87F26CDA2D1 /* Pods-Examples-AuthExample.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Examples-AuthExample.modulemap"; sourceTree = ""; }; + FDD88A5FBC35538903767E80E2DAA84B /* FIRFirebaseUserAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFirebaseUserAgent.m; path = FirebaseCore/Sources/FIRFirebaseUserAgent.m; sourceTree = ""; }; + FEAA37B3D22A777089D46A71867C85AF /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; + FEC90213A94B03253A25DEB451734283 /* CwlCatchException-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CwlCatchException-umbrella.h"; sourceTree = ""; }; + FF25A8B95A82598D7E2E4A0A8E1B2E97 /* CwlPreconditionTesting.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CwlPreconditionTesting.debug.xcconfig; sourceTree = ""; }; + FF6B07A257C9B6FD90A471FE0E8FD9A1 /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; FFA2E0A79C45CF0AD19A3B7E3CAD26C4 /* SPJson.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SPJson.swift; path = ConsentViewController/Classes/SPJson.swift; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 000744A22F056D1ACFFF53D76DA66D07 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 009B4E1274DD2C2C4074D7C5529DA4E5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3236,18 +2669,18 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 08AFBCD69271C9588FA8EA9629E1C52F /* Frameworks */ = { + 00AFBE30165BCFDFF40033BBF9F5399A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 890F2A7EE9B3FB2379ED6C6CBBF29CC7 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0A5198C27E33B953ED2DF643920BC6FB /* Frameworks */ = { + 08AFBCD69271C9588FA8EA9629E1C52F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 890F2A7EE9B3FB2379ED6C6CBBF29CC7 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3259,13 +2692,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 0EB3B1D27605CFA64DC1B63D649D3673 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 0EFDF9BC594EFFE4C5A7FD2D96EFB6BE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3290,979 +2716,820 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 26376FA8601049B60F39D906C5A257BD /* Frameworks */ = { + 23F5BDB5B129EC7D2E849B91FE3EF67B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2A031A8265B7D227A02918A943A64988 /* Frameworks */ = { + 33F74302965F60BACB5A36518A9BEC24 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B18BEC8BD699176D5D6CAA4AB0BCE05F /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2CB2F22D5291A6AA116633689630D79B /* Frameworks */ = { + 3D02115CC54E7A89E8801BE807F1A499 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + AD2B648A78DC5710B819145242E3481D /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2FF0A8BC4FF9EA5AF851D461F0B4D496 /* Frameworks */ = { + 4873E4A7D76A69126B6587B1291893A6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E055D1CA4589CEA1F388C0B364568BB6 /* Foundation.framework in Frameworks */, + B97A46D6C135E70B8BEE5A0713C8E80A /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3654099DF15C121851622091E2B4DB65 /* Frameworks */ = { + 4955360E17BE11FC556397A260F97F4D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3C7CE62AE6796E4FADCD6027F116FFC1 /* Frameworks */ = { + 550EF25F98C458F8D90B6A3BDB12B33C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + A4284F427BE6D982E502367BBDC3C8BA /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3D02115CC54E7A89E8801BE807F1A499 /* Frameworks */ = { + 560FB6E6B173D97F7060F16641CAA89B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - AD2B648A78DC5710B819145242E3481D /* Foundation.framework in Frameworks */, + E32A1F3DD67E2E985E18B4FC270BDEE4 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E0CEC856DA9B52A6E0D5B83A1B9DDF3 /* Frameworks */ = { + 5EA1CBB580A88C07A2F9994A2C1A909D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 9319D365F13BBB7D38102A9E6D67D7B4 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 40572B615C6B4FBEDB33A62E175DB37D /* Frameworks */ = { + 65E7F7EEE4136D94B15B9D8AF9705022 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0BCC9000571E193669B73A666B8A3D6A /* Foundation.framework in Frameworks */, + 6E17FE74B30432F638275F6CD4B6C1C6 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4586B31D5DDFC2E92F122F59FE3FFBF2 /* Frameworks */ = { + 68BB0039C1D6A620D64E9A92165001BD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9BC7FF7C000E8F447AF0074D51F6CAB4 /* Foundation.framework in Frameworks */, + 937EB7F077EC7D4EF382A23CE99676BE /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 48699882B71F910BD7EC1AC8932B936A /* Frameworks */ = { + 6AF6D046D1AF251955E922D8260F707E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + BEC0038CE9707B2E08351E97D3E1FDE9 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4873E4A7D76A69126B6587B1291893A6 /* Frameworks */ = { + 73C565589F3850FC1AA6FB19D0AB1C16 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B97A46D6C135E70B8BEE5A0713C8E80A /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 55EEE6BEC89AB4B4E0B4A8F62E92A16A /* Frameworks */ = { + 76F8B324E6141820FCB7A26ACE21ABC5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + D9FE1258C04BDADA26D06E11B997B265 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 560FB6E6B173D97F7060F16641CAA89B /* Frameworks */ = { + 780544458F6B83DE6D85C2EA5D711E6B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E32A1F3DD67E2E985E18B4FC270BDEE4 /* Foundation.framework in Frameworks */, + EC6C0A2DBACC3870BC0AD71AAED9083F /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5BEFF5E5967A4ED038E752652B2E241B /* Frameworks */ = { + 7AA9CE2D849E71D1CE434FA6A1480EE0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C61B99C3F20DC28772152E16AA7841A7 /* Foundation.framework in Frameworks */, + 2E3795EA821D8EC9119EB36E532D0914 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5EA1CBB580A88C07A2F9994A2C1A909D /* Frameworks */ = { + 8D772783026895CD9A412AA08CCC5B13 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9319D365F13BBB7D38102A9E6D67D7B4 /* Foundation.framework in Frameworks */, + 929B7053AB730DA578AB8F2EE0C26196 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6373234F020EF54696372FB178A65FE4 /* Frameworks */ = { + 97734AF23BAFDD9059940BB984031C26 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 10AA1B43CFA96387A9A7C7B95769137F /* Foundation.framework in Frameworks */, + 424CC30C0AB08ABF402C23CB194BED7B /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6491404F2F73F57F2611028F216781B8 /* Frameworks */ = { + 9C0D596677E792E457BE68200DC59137 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 78D36ECD4B1C245F739FE0DCDD86D62A /* Foundation.framework in Frameworks */, + 49D62B451A68F642233D6DBAD56A76E1 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 65E7F7EEE4136D94B15B9D8AF9705022 /* Frameworks */ = { + 9D4048B37AD802E5417BEFEF44078720 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 6E17FE74B30432F638275F6CD4B6C1C6 /* Foundation.framework in Frameworks */, + FD6157D85A9A7AB220A711E00E4C108D /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 68BB0039C1D6A620D64E9A92165001BD /* Frameworks */ = { + 9D8BFD9AD424B7A73EAB7915EF1D2573 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 937EB7F077EC7D4EF382A23CE99676BE /* Foundation.framework in Frameworks */, + 8929213E64105C6B992DF474C3C13FED /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6AF6D046D1AF251955E922D8260F707E /* Frameworks */ = { + A6BF0781AB285F3B56493419780FE0B5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - BEC0038CE9707B2E08351E97D3E1FDE9 /* Foundation.framework in Frameworks */, + C50F88DBA526326EFCF1E593A0DF5FF9 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6DB090D3625DF5A0A943B097B684FAFC /* Frameworks */ = { + B1F9E1F75FA155557411E0F312A3DA1B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 3B7613669A268FDFC65FB3281E3BDE10 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 768DA24AC38B3F4FF4E43462EF2D16D1 /* Frameworks */ = { + BEF522D6ADC213878101BFDC00ED2323 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 6228B3B995726E67C14441AB35FBC912 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 76F8B324E6141820FCB7A26ACE21ABC5 /* Frameworks */ = { + C4330B65DE657DFBDC146D50BE8F0508 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D9FE1258C04BDADA26D06E11B997B265 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7AA9CE2D849E71D1CE434FA6A1480EE0 /* Frameworks */ = { + C79745201E350BEB153E6548B20AF85B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 2E3795EA821D8EC9119EB36E532D0914 /* Foundation.framework in Frameworks */, + E1C67A123E7333291A9FD4DDA9885A1E /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7B01AEB533FDA6296E3FFB665435D831 /* Frameworks */ = { + C8B71FBCC124EB5CC27A107EF98CF99B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E199F071297998A6CB093255F815D1A7 /* Foundation.framework in Frameworks */, + BE037C7CBC3562EB603B24BAF53B4932 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 94D9A52BA054208A73780BC730F35D83 /* Frameworks */ = { + C9EF0514F2DEAF998DAE3CB3D27A6127 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + E48A7A11102E83DCD47F00CC389734B8 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 97734AF23BAFDD9059940BB984031C26 /* Frameworks */ = { + D918DDC7629678B5DC11D8800D4EF423 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 424CC30C0AB08ABF402C23CB194BED7B /* Foundation.framework in Frameworks */, + F50CBFE82E2131D6E0AD7EA4E1E18084 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9C0D596677E792E457BE68200DC59137 /* Frameworks */ = { + E39D9BDC2B8FF1D7D0CD76C299B7C589 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 49D62B451A68F642233D6DBAD56A76E1 /* Foundation.framework in Frameworks */, + 34FA80716C100DC5E94E85F22D794C2F /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9D4048B37AD802E5417BEFEF44078720 /* Frameworks */ = { + E4E76BFA250B5A19C6DB813CF1598A22 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - FD6157D85A9A7AB220A711E00E4C108D /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9D8BFD9AD424B7A73EAB7915EF1D2573 /* Frameworks */ = { + F57B6C6D7EE189B5945BEE909F4AD03D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8929213E64105C6B992DF474C3C13FED /* Foundation.framework in Frameworks */, + 0BA117D41AE7DF743E2BD691BD9E85B0 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A2CFC93830AA520275FF11AAA28A4594 /* Frameworks */ = { + F832CA0656E0F55F7D211AF5F7BB928C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A6BF0781AB285F3B56493419780FE0B5 /* Frameworks */ = { + F8969044A6D9190ABE956DC4B44EF8B2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C50F88DBA526326EFCF1E593A0DF5FF9 /* Foundation.framework in Frameworks */, + 95E3A7CEC7A3D008F26846A6BD7420AF /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A9CC4CBF4597D2F8FB86996E644391A1 /* Frameworks */ = { + FD1791D993187842A8248D1AF5AB8FF9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 3F2D5AEF425A1077679F0724C8D799D5 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B1CD884C14F7DB422E3EADA9A825ECDC /* Frameworks */ = { + FE1EE324FA95C3775125DD6C890A10F3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8096E5FBF3ED5E75A63F7C63773023B0 /* Foundation.framework in Frameworks */, + C994361E28F2E0E573F96043E1D2C785 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B1F9E1F75FA155557411E0F312A3DA1B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 3B7613669A268FDFC65FB3281E3BDE10 /* Foundation.framework in Frameworks */, +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 00A4EE4A9A25580F0E724673DE9F853C /* Frameworks */ = { + isa = PBXGroup; + children = ( + 0571EE693E935A8B8482D41E4E1D5EEC /* SPMobileCore.xcframework */, ); - runOnlyForDeploymentPostprocessing = 0; - }; - B846584335CD0B5FA518D2859435421F /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - B097CC2322B6F10D3D7691212853402A /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - BC78784BFBD44F1DCC75EA78D79EEC45 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 9102E9871401005BC3F6C310D5A080F0 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - BFCC274DA07CBF4F3CDB760054C16A5D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C5765F1338BEAC2F44A2331E1F15FDEC /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C62A9C83F0EBDACB922F2904AD526C9D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 7D79E4E25E2D93C44FDE85B2E64DBED1 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C72BD6F0A91BCDBBE181B375EC3A1544 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 482E9B1513D10FBFF50099B87FC1F4CE /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C8B71FBCC124EB5CC27A107EF98CF99B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - BE037C7CBC3562EB603B24BAF53B4932 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D38852BBF73A5929287F1C9A0CA3FEF3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 0B732EC53A3809F2EAAB812ED6D69A4A /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D4596A33CC8E7284C36A9A6E4D8C8E41 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 318844FA1E66E09EEBAA61EF15A4EA9E /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DE76C3657CF9DC6B2F296A1BB6E59358 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 28CD80B0662073826349FD578F593830 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F57B6C6D7EE189B5945BEE909F4AD03D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 0BA117D41AE7DF743E2BD691BD9E85B0 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F8969044A6D9190ABE956DC4B44EF8B2 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 95E3A7CEC7A3D008F26846A6BD7420AF /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FCEA13C9055643FE22634A8599C28503 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FD1791D993187842A8248D1AF5AB8FF9 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 3F2D5AEF425A1077679F0724C8D799D5 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FE1EE324FA95C3775125DD6C890A10F3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - C994361E28F2E0E573F96043E1D2C785 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; + name = Frameworks; + sourceTree = ""; }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 002B13B8086B166BE23A153BEB5D5CAA /* Resources */ = { + 03A9307DDC38CF1BC912D1C643314E54 /* Support Files */ = { isa = PBXGroup; children = ( - 1A0C1E8502B39156213F23E163801B61 /* PrivacyInfo.xcprivacy */, + F2004A57A681520ED09705AE13DC0CE8 /* FirebaseAnalytics-xcframeworks.sh */, + 42474F1E93115B16AA6C7E9E73C6BEFD /* FirebaseAnalytics.debug.xcconfig */, + B799A5DBFA15959DB60811F4BFFC4A54 /* FirebaseAnalytics.release.xcconfig */, ); - name = Resources; + name = "Support Files"; + path = "../Target Support Files/FirebaseAnalytics"; + sourceTree = ""; + }; + 041DBADBEC90203C7E0289F55F907DF4 /* FirebaseCore */ = { + isa = PBXGroup; + children = ( + C586AC8C685D926BFA5DC2B3C023581D /* FIRAnalyticsConfiguration.h */, + 19EED79A76C2275317D833D80EC38860 /* FIRAnalyticsConfiguration.m */, + C4A238FB0CF97AB93EE222784B7BFFAC /* FIRApp.h */, + 00F2DFA440703FD4A962457105C4F549 /* FIRApp.m */, + 985F3C9C7DC4A32AE5CFB01EFE60D3C2 /* FIRAppInternal.h */, + EA58F85FCDEC2400C373393A8B8671F2 /* FIRBundleUtil.h */, + 0B97C2B39DE0FA07EFB90DDD0C5D07D5 /* FIRBundleUtil.m */, + 352B17327E2344FDF3FDBD44F45944D2 /* FIRComponent.h */, + 479FD5D9017743383ADC818A4A1F6B9A /* FIRComponent.m */, + 77E2374282B613BED22F005FE99E946D /* FIRComponentContainer.h */, + CB6861380BA228BC2D5BBF750F75FD8A /* FIRComponentContainer.m */, + 2CA2BC033ADDD4D628300EB9B6F1C552 /* FIRComponentContainerInternal.h */, + 2C662745F8E777E43C429CC47E2FE160 /* FIRComponentType.h */, + FEAA37B3D22A777089D46A71867C85AF /* FIRComponentType.m */, + DB8E64A84501116406F05591EF5569D1 /* FIRConfiguration.h */, + 812C8DCA6BDD0EEF5AA1B957FE7F9639 /* FIRConfiguration.m */, + A7135EAF0227A95CBA60514796568214 /* FIRConfigurationInternal.h */, + 563D7A75116C319C272C760A68B001B9 /* FirebaseCore.h */, + 5D1180ABCC3693176DDD22CAC67DB156 /* FirebaseCoreInternal.h */, + 2B3F379896A4755F9A8E6E0C9DBE6C3C /* FIRFirebaseUserAgent.h */, + FDD88A5FBC35538903767E80E2DAA84B /* FIRFirebaseUserAgent.m */, + 841ECE59E73EC1FE5F2490BAA02B0832 /* FIRHeartbeatLogger.h */, + 8ABE4BAABF9AD9A9D526D3EA113E6ABB /* FIRHeartbeatLogger.m */, + DF8FB938F2D1C3417C0E8E56F6968387 /* FIRLibrary.h */, + 831B1F8A85AA79580C430DB7C8479498 /* FIRLogger.h */, + 64E2FD17AA6762BEAB6E92778BF0E023 /* FIRLogger.m */, + D789CAFE5EDBAEFFF324BF1BAAD5DC73 /* FIRLoggerLevel.h */, + 855370FC8300FBF55C4726690B9C6294 /* FIROptions.h */, + 002DA9997692065274872476380833D2 /* FIROptions.m */, + DD92BB626CE1C3605390619AD21F737D /* FIROptionsInternal.h */, + 503F85CEBC7BA6882CC2DB5C37743B6C /* FIRTimestamp.h */, + 590EB8BEF9B1DC5BF894455AA3673415 /* FIRTimestamp.m */, + B7759C3AED387997BDA50B71144FD787 /* FIRTimestampInternal.h */, + 26BA4AB9D49A524FE82F9CB9222777E5 /* FIRVersion.h */, + A5D8FD108C40B3D6DC2391B22EBE35C3 /* FIRVersion.m */, + 70B8F6BA51682425D42C1002C4F2CF69 /* Resources */, + 083C0358FB48811F8389C80B5120FD1F /* Support Files */, + ); + name = FirebaseCore; + path = FirebaseCore; sourceTree = ""; }; - 021575100EBA18055CADF4DC909E6662 /* Support Files */ = { + 083C0358FB48811F8389C80B5120FD1F /* Support Files */ = { isa = PBXGroup; children = ( - E8ABD8DA9A1E576B3BF3437149CD387C /* IQKeyboardNotification.modulemap */, - DD2F058EBD88A736E9743D0365C027B9 /* IQKeyboardNotification-dummy.m */, - D18192CB0AEDAA2F8ED65D84ABE9181E /* IQKeyboardNotification-Info.plist */, - 83BDC41EE48D14B7FE0F66177BCDDC49 /* IQKeyboardNotification-prefix.pch */, - 4F3051F39A3AC899C9B540C520ABD5B9 /* IQKeyboardNotification-umbrella.h */, - A89672116452AEA51E63CDD4641DF6AC /* IQKeyboardNotification.debug.xcconfig */, - 16E26D53D76686D672481814AA43BE6D /* IQKeyboardNotification.release.xcconfig */, - 36DEF60663BF3F1C3171A0D8C5246EC2 /* ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist */, + 9F33950A12429B299448611BF91C9061 /* FirebaseCore.modulemap */, + 67C01F82F839EB6112EF59F7628F0A26 /* FirebaseCore-dummy.m */, + A3F52DF62AA9610DF8CB2C7455E02F95 /* FirebaseCore-Info.plist */, + 2A49BB40DEFE3F58AFB216F8D3D01550 /* FirebaseCore-umbrella.h */, + 3613BC1D9C76B49AA73C8A373C766DF7 /* FirebaseCore.debug.xcconfig */, + 90BF493E1F9D2BDA9D04385008767469 /* FirebaseCore.release.xcconfig */, + EBFC08AE168F4B9CE4FDE17A434408A6 /* ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/IQKeyboardNotification"; + path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; - 05E8229C67AF1627CAC71910A66FC3B0 /* Support Files */ = { + 0C917E5469234F3315EB1ADF45CE09F3 /* images */ = { isa = PBXGroup; children = ( - 94A7D22137E1C496D0F85A3CEB620587 /* nanopb.modulemap */, - 3D63F62472A8C43656BA08C00F303457 /* nanopb-dummy.m */, - D7DD3BF471A00FE478039145CC4CA53A /* nanopb-Info.plist */, - 324EA3CFFCCB06B5329A0DB87CC19A13 /* nanopb-prefix.pch */, - DEDFF0DA9BDA7F9C27F2062C14B8D371 /* nanopb-umbrella.h */, - 4B97AD650825ED664F18595A643EDB28 /* nanopb.debug.xcconfig */, - B7BDFAB7F2C3D6412FF9E6427BF0BF5E /* nanopb.release.xcconfig */, - 76A72D913A71A255191CC97A5B9D6B00 /* ResourceBundle-nanopb_Privacy-nanopb-Info.plist */, + 87295588035B548CD735B7461612EFE9 /* Barcode.png */, + 3AC41A4E33416989A7D8796B73BA4A07 /* SP_Icon.png */, ); - name = "Support Files"; - path = "../Target Support Files/nanopb"; + name = images; + path = ConsentViewController/Assets/images; sourceTree = ""; }; - 06F8FDC643D67A98CE8F1A821D6747A3 /* CwlPosixPreconditionTesting */ = { + 0F925EB3A63B2026C7C2CB4384D86EA0 /* CwlPosixPreconditionTesting */ = { isa = PBXGroup; children = ( - 33B80CC8EE0ECAB695524973E039F545 /* CwlCatchBadInstructionPosix.swift */, - F76A1FE97B6E83910B12115B6507642E /* Support Files */, + 391FC387FE91FBA3B5CA405EA4A7DE54 /* CwlCatchBadInstructionPosix.swift */, + 4472BAD9F787B8693F72EB2EB5312FAA /* Support Files */, ); name = CwlPosixPreconditionTesting; path = CwlPosixPreconditionTesting; sourceTree = ""; }; - 0709C87B50985F726D3BE2DE95A4CA60 /* IQTextInputViewNotification */ = { + 156CA730787880C7110751B09EDEAA0E /* PromisesObjC */ = { + isa = PBXGroup; + children = ( + 1DD196321D611BB05438088E085E051B /* FBLPromise.h */, + DF9400A036A2057E31F6D39994BEA6E3 /* FBLPromise.m */, + E84ABB3924CEB7F19756CBF084872C9A /* FBLPromise+All.h */, + 915953000AAE931177BD2AD6A223439B /* FBLPromise+All.m */, + 212872A897CEA4FC061E88ABEE80E436 /* FBLPromise+Always.h */, + B781E824219B778305D41707941D0DC7 /* FBLPromise+Always.m */, + 8FEB5F29456FADD2DA38C8BCCDC2821E /* FBLPromise+Any.h */, + 56903A24DFEEEE17BCCB74C60DAA505D /* FBLPromise+Any.m */, + 5F1282B41B90B3F9773DBF2031247610 /* FBLPromise+Async.h */, + DA2964F48A8D541EDAA1BC00C85FEA4A /* FBLPromise+Async.m */, + 8965F6D4EB895612380EF3DE6F4D9FA7 /* FBLPromise+Await.h */, + 1AA3A212C79BC0C75312BF518E37D9E1 /* FBLPromise+Await.m */, + CB3136B459DC0B05660687DF4A3B9F65 /* FBLPromise+Catch.h */, + ED66B0131C8A4D93560B40D085E3989A /* FBLPromise+Catch.m */, + 5EA78D403B3C9A9647550B187B702DBA /* FBLPromise+Delay.h */, + FC8366C584A08F8D3CF627BBB65324C4 /* FBLPromise+Delay.m */, + 38F9D36922805BFE98C8F15887DDA75F /* FBLPromise+Do.h */, + 8F85E06CF5FBCEAD3DC18CF477180039 /* FBLPromise+Do.m */, + 7570991DD9ECFD7E8952782E6EE452C5 /* FBLPromise+Race.h */, + 9BDE29DFB920028897F2C914A9E49536 /* FBLPromise+Race.m */, + 40A7BE2D7FEA298684523EF1AEA0E373 /* FBLPromise+Recover.h */, + 630A03DD6C387BDB69F68F8DE133CF6C /* FBLPromise+Recover.m */, + 498A3EDFE6F43066D1D7A0024AFC6CFE /* FBLPromise+Reduce.h */, + D86548772C990F391B79991DAC88A054 /* FBLPromise+Reduce.m */, + 12BFC6DE2EEB5BBBF11443BBBE947EC8 /* FBLPromise+Retry.h */, + 0E3DFC70AEFDD34F748C23C321943C6A /* FBLPromise+Retry.m */, + 655871DA789EEC41DF528D0343083373 /* FBLPromise+Testing.h */, + 6AF4E875AA9FF50BC34EEFB327418AAF /* FBLPromise+Testing.m */, + 9065459FE6E3C25FF9EE9B03805F2C3D /* FBLPromise+Then.h */, + 710E7506C59FEEDFAFD3B5F74D2EF6FD /* FBLPromise+Then.m */, + DC9A7AD559810014C5DD843DA715769E /* FBLPromise+Timeout.h */, + A5B595311F91636241137A9386FD0489 /* FBLPromise+Timeout.m */, + D2358BE2A6EDDB0E2E6625C0BF99DADF /* FBLPromise+Validate.h */, + A5CEB69F91D9FAFC3465E461AC94D714 /* FBLPromise+Validate.m */, + D4ADF22BEE5D8D30A026F009718DEED1 /* FBLPromise+Wrap.h */, + E5A90DC015710209E7CD98F16456F934 /* FBLPromise+Wrap.m */, + B2892E1B41F4DD6FA9FCB33EA64F0CC4 /* FBLPromiseError.h */, + 9741CDF6C6A5BA9F9888C1CE1979527E /* FBLPromiseError.m */, + 285EC57A7C49695B7CFE2591DC98FA31 /* FBLPromisePrivate.h */, + E4D1AA884C1CB9EA1A532E137F62DF01 /* FBLPromises.h */, + B8894C07D8AFDCF91F3CD83F6FA7154C /* Resources */, + DA880D0A3398973D041D0E246B0DAB7B /* Support Files */, + ); + name = PromisesObjC; + path = PromisesObjC; + sourceTree = ""; + }; + 1872D036EC4CB1DCC65B6FFBB2194342 /* Pods-TVOSExampleApp */ = { isa = PBXGroup; children = ( - EDFB09D332CF36721F7A83B65175E88F /* IQTextInputViewInfo.swift */, - B30228F44B1ECB9333C5BB269B12FC50 /* IQTextInputViewNotification.swift */, - 61050816E063812DD7861EDB337FE984 /* Resources */, - A52E5A716833DBEFD72089C4A4300CCE /* Support Files */, + 09D0C03232AAFAA1E1DB61DEE7C9755D /* Pods-TVOSExampleApp.modulemap */, + 4BFAD61A44D8A47E9420E6320336F16B /* Pods-TVOSExampleApp-acknowledgements.markdown */, + 4761B59C9FEB30EF00FE116CF2924497 /* Pods-TVOSExampleApp-acknowledgements.plist */, + F30B43572ABB63577000F4536CC547A0 /* Pods-TVOSExampleApp-dummy.m */, + 856CA512490704467D721BF2551A16E2 /* Pods-TVOSExampleApp-Info.plist */, + 8DAE8810BDB5BBD04B97181E0812F4FE /* Pods-TVOSExampleApp-resources.sh */, + BA8F8F124746AD773A70EB0AB5A2BA27 /* Pods-TVOSExampleApp-umbrella.h */, + 184DF050A094BAECB715C55152421B65 /* Pods-TVOSExampleApp.debug.xcconfig */, + 95E11D7E045EA6E32AA0C093BBCEA740 /* Pods-TVOSExampleApp.release.xcconfig */, ); - name = IQTextInputViewNotification; - path = IQTextInputViewNotification; + name = "Pods-TVOSExampleApp"; + path = "Target Support Files/Pods-TVOSExampleApp"; sourceTree = ""; }; - 09A35AF98906B6C1E6707AAA5A1057F7 /* Support Files */ = { + 1D1954054AE72C19086CA0AB090AD9EA /* Reachability */ = { isa = PBXGroup; children = ( - 685A59C0FA2ECA35D010228012DE7F0B /* IQKeyboardToolbarManager.modulemap */, - A93FA39A9D83693D979D6C87751F4E5B /* IQKeyboardToolbarManager-dummy.m */, - 969DDE8AF1547A69AC2FA725B6F5CDB2 /* IQKeyboardToolbarManager-Info.plist */, - 7D7548FA0CA956034ED94D367E83596F /* IQKeyboardToolbarManager-prefix.pch */, - 9D7DE976823DEE57DFC868F29DF873AF /* IQKeyboardToolbarManager-umbrella.h */, - 91621E1BA3A89BE74D1E7D017C175F49 /* IQKeyboardToolbarManager.debug.xcconfig */, - 25D4F6A49E547E09FEE315D6A39438D8 /* IQKeyboardToolbarManager.release.xcconfig */, - B7142A9107596D3C6205A0EDB8A388DD /* ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist */, + E6EA4EE2E0B3349DDA3F12A650A9EB6C /* GULReachabilityChecker.h */, + D917722A29AD87DD5BD068621FBE6438 /* GULReachabilityChecker.m */, + 7657012FACCA8BEE19E8895F6814D0FE /* GULReachabilityChecker+Internal.h */, + 9B090B90FCBE6B0059AD53C263D1927D /* GULReachabilityMessageCode.h */, ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardToolbarManager"; + name = Reachability; sourceTree = ""; }; - 09F805ABD7A03D563627DCD34E7D6FCF /* Pods-Tests-NativeMessageExampleUITests */ = { + 217DF573F1C848B64FD063D239C3C5AC /* AdIdSupport */ = { isa = PBXGroup; children = ( - 2DEBB1FFE8E70FD83CC1E5697E8A7D50 /* Pods-Tests-NativeMessageExampleUITests.modulemap */, - 4343EC7089D74DDC80E6AFD2047A3942 /* Pods-Tests-NativeMessageExampleUITests-acknowledgements.markdown */, - B0FB9D7152307E006BDF6F5C4CE9A9A1 /* Pods-Tests-NativeMessageExampleUITests-acknowledgements.plist */, - 13887FF5AE96C61A75493F453E51A166 /* Pods-Tests-NativeMessageExampleUITests-dummy.m */, - 9526B810DA94A28F937F48E17CC1F5C9 /* Pods-Tests-NativeMessageExampleUITests-Info.plist */, - 379542535146E00C9B0A63990E7B5E0C /* Pods-Tests-NativeMessageExampleUITests-resources.sh */, - 1BE46900BF8CBA13050460771A8DD7DD /* Pods-Tests-NativeMessageExampleUITests-umbrella.h */, - 8F1B2B1E2EA16E8AA8C6A4E3DB461D04 /* Pods-Tests-NativeMessageExampleUITests.debug.xcconfig */, - 994E32106A3E483B71224175EE751364 /* Pods-Tests-NativeMessageExampleUITests.release.xcconfig */, + DC360D8F1596DF9E86A05E63396F0477 /* Frameworks */, ); - name = "Pods-Tests-NativeMessageExampleUITests"; - path = "Target Support Files/Pods-Tests-NativeMessageExampleUITests"; + name = AdIdSupport; sourceTree = ""; }; - 0A3DD4BD794503E0A0CB1988A01BD03C /* Products */ = { + 257C1FDD51726E9BFAD26CC2971EDAE6 /* tvOS */ = { isa = PBXGroup; children = ( - 380358C9A223FE55A10AC25127FF1410 /* ConsentViewController-iOS */, - 4BEAC88AF84CC484F55B8A6C048444D9 /* ConsentViewController-iOS-ConsentViewController */, - 5DC2E71595175144336387BD6D2DE6BD /* ConsentViewController-tvOS */, - 20A4710BBD2EE3CFC496E3AF134BD4FD /* ConsentViewController-tvOS-ConsentViewController */, - E0BC8BB0FE4725CF87EB0A9F5D400FD6 /* CwlCatchException */, - 220D1365CED5CB83C4C0CE1E3DABD3B0 /* CwlCatchExceptionSupport */, - E1176A8E7C8F4162FFCA404BE6EEBB1C /* CwlMachBadInstructionHandler */, - D2AD834000B280096FEB80FBEBD9A414 /* CwlPosixPreconditionTesting */, - CC56497384E780278F916D6C57EA4951 /* CwlPreconditionTesting */, - E2B63D462DB7F827C4B11FD51E4F8E2D /* FirebaseCore */, - 8BB937B1C0DFFCF92F41861C2BC54DDA /* FirebaseCore-FirebaseCore_Privacy */, - 148D0F9E8C7373FEAF40D800FC5F1BAA /* FirebaseCoreInternal */, - 4DB03FD262B678178A44272143846563 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */, - 13C8C8B254851998F9289F71229B28A2 /* FirebaseInstallations */, - 47C581450CDB4A6111CB97EEE0711A8C /* FirebaseInstallations-FirebaseInstallations_Privacy */, - B43874C6CBB50E7134FBEC24BABFE14F /* GoogleUtilities */, - 44E291D18340EAC3F761346198515323 /* GoogleUtilities-GoogleUtilities_Privacy */, - FC7F0CF2EA5DF59C59D9995890DA5C47 /* IQKeyboardCore */, - 6E897F35E5E27028AC58B14B552FBC8D /* IQKeyboardCore-IQKeyboardCore */, - A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */, - 8D8069D3964814114ACEC3084C010B59 /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */, - FEF9AC89E9C4BD37AC0AB78B535D1CFC /* IQKeyboardNotification */, - 120BD4C670EF00F4D5A40AA4B863A7AE /* IQKeyboardNotification-IQKeyboardNotification */, - 15848DEC7727A809830E7F6FC1B6CE0F /* IQKeyboardReturnManager */, - 110BD425B6CAD6801539E2C6AB6E0662 /* IQKeyboardReturnManager-IQKeyboardReturnManager */, - B4B1A58096F15199A14069C5D6AA1C99 /* IQKeyboardToolbar */, - A16FD016E18EACCF6B23F219F2E236FE /* IQKeyboardToolbar-IQKeyboardToolbar */, - FA727BF5D9541C98C22C9ECC911576E2 /* IQKeyboardToolbarManager */, - 80A40EDA3AF0499BDBCFF09467BB49AD /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */, - 06E5B413FEA5A600D76636DA132F8FB9 /* IQTextInputViewNotification */, - F956E149F5B195BB7833F97FC6211AE8 /* IQTextInputViewNotification-IQTextInputViewNotification */, - 0DFD4541FF9DAA31A2FC2A7F6D03ED22 /* IQTextView */, - 847044E56CBBCE1235A6F3CEF3F9F607 /* IQTextView-IQTextView */, - 437B791FEDC5C4B595D6D29500E11197 /* JSONView */, - 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */, - 3227F3FC45681D7CEE5D1355A532398A /* nanopb-nanopb_Privacy */, - C2FCA34B3522D944BAA3DC6A57D99686 /* Nimble-iOS */, - 0D68F2DD4656E2DC0F28ED037671461F /* Nimble-tvOS */, - 8009AFA883EF36EED39CC47F36FE7E69 /* Pods-Examples-AuthExample */, - 55908634686A3DF6ECCEE78419BBA7A9 /* Pods-Examples-ConsentViewController_Example */, - C7D0A4151C95D4FBAD32B247F044F933 /* Pods-Examples-NativeMessageExample */, - 197865AE4C919C97C7E5CE23CE9253D9 /* Pods-Examples-ObjC-ExampleApp */, - 28D5EA4BB4CA750310C6328A9F1F15D9 /* Pods-Examples-SourcepointFirebaseDemo */, - 0215672A26243634BDD3066654D7E3D6 /* Pods-Examples-SourcePointMetaApp */, - 3E88639B1919779EA4D947458F865C3F /* Pods-Tests-AuthExampleUITests */, - FC93A0989C42FA19D96552F13D5FE50C /* Pods-Tests-ConsentViewController_ExampleTests */, - 534D623ADD013C7F78FFE22047E69951 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests */, - F9444BEB61B4B9D850FF5A2216A3C8DF /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests */, - 2701FF4C96D98F0B29DFA47632CB59B0 /* Pods-Tests-NativeMessageExampleUITests */, - F04688DB063193CB7C0D050E87ACE1FE /* Pods-Tests-ObjC-ExampleAppUITests */, - 945767455B6DDF8DBEAADC2013CD7C86 /* Pods-Tests-SourcePointMetaAppUITests */, - 4B52B86C338468857F2E798179EBEC53 /* Pods-Tests-SPGDPRExampleAppUITests */, - C3D163ED35F95B184B10CF3222D35768 /* Pods-TVOSExampleApp */, - 8FAD4B2C2A4A9820171E0345B3BFF0D7 /* Pods-TVOSExampleAppUITests */, - 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */, - 3F238BB22C5201CE689CAF2F766AED95 /* PromisesObjC-FBLPromises_Privacy */, - C8E0F49D3F9CF6715FD8D2D98638F20F /* Quick-iOS */, - 73F566CFB5F21F61AC2FA68F08AA0B2D /* Quick-tvOS */, - 2530BC414137FF7A53A0368B476547B9 /* Wormholy */, - AA92ED38E716E03D3FC758C810953B95 /* Wormholy-Wormholy */, + C5475206DB01997D3420C2A46A0228B1 /* NativePrivacyManager */, ); - name = Products; + name = tvOS; + path = tvOS; sourceTree = ""; }; - 0A9A8E9926E1430185FD7C07279BFA30 /* Resources */ = { + 2A0099753035281A40116839883FCBDC /* Support Files */ = { isa = PBXGroup; children = ( - D0E78647084792E4319064B21AE398EC /* PrivacyInfo.xcprivacy */, + D3053C506293A41E84988669393AA2E2 /* Nimble-iOS.modulemap */, + 5CA07F5CA74B6366B6A8E3530806101D /* Nimble-iOS-dummy.m */, + 12446BBFC9CD0B4516B5D20B15FF7F95 /* Nimble-iOS-Info.plist */, + 38595C9ED20726799552B03E4954EAD1 /* Nimble-iOS-prefix.pch */, + 2D5DCEDDB5C007CA5312467CF1B51625 /* Nimble-iOS-umbrella.h */, + D8ECA930C85EEF0681176E902707ADBA /* Nimble-iOS.debug.xcconfig */, + E7A6CA6E393D185DC7E955D806EE679D /* Nimble-iOS.release.xcconfig */, + 9A30C487B9A2772DE65AE0D504060C57 /* Nimble-tvOS.modulemap */, + 384DAB83724B1BE1C35D238F3DDE4E05 /* Nimble-tvOS-dummy.m */, + AC262B7D4F67BC132C52DC137C602EA6 /* Nimble-tvOS-Info.plist */, + 36F94BEF938C2DB39C9787CD7861BCE5 /* Nimble-tvOS-prefix.pch */, + B2FEB356A7C93226880DA2DF756BA51E /* Nimble-tvOS-umbrella.h */, + 9F566E49378EA375C6F422F15239AB7C /* Nimble-tvOS.debug.xcconfig */, + AB5A4EEB3FE0342A37DC1899604B72E8 /* Nimble-tvOS.release.xcconfig */, ); - name = Resources; + name = "Support Files"; + path = "../Target Support Files/Nimble-iOS"; sourceTree = ""; }; - 0C917E5469234F3315EB1ADF45CE09F3 /* images */ = { + 2A053BDCEF8AE93570DE0964F82A79BD /* Views */ = { isa = PBXGroup; children = ( - 87295588035B548CD735B7461612EFE9 /* Barcode.png */, - 3AC41A4E33416989A7D8796B73BA4A07 /* SP_Icon.png */, + E618051BCBE2BDF5EB953B3E37A09230 /* SPUIColor.swift */, + 82EED63E21C43BDE686776AB90EBABD7 /* iOS */, + 257C1FDD51726E9BFAD26CC2971EDAE6 /* tvOS */, ); - name = images; - path = ConsentViewController/Assets/images; + name = Views; + path = ConsentViewController/Classes/Views; sourceTree = ""; }; - 11011FD9F4782D95DDDEE835FF776E18 /* Support Files */ = { + 2C1753E6DA9D8942CC689C03CC649A1A /* Frameworks */ = { isa = PBXGroup; children = ( - 35117BB8160F1268BCD6A94B94FDEBCE /* IQKeyboardCore.modulemap */, - 588242DA939C771DAED4F4CAD87ADD5D /* IQKeyboardCore-dummy.m */, - 8DF68AC15D83B3F9C35B8D2D5F9E42DC /* IQKeyboardCore-Info.plist */, - 2BC6953410731876B3416D9A7D347B27 /* IQKeyboardCore-prefix.pch */, - 118D08AA25F5FBD2C0A9F1604960FCA7 /* IQKeyboardCore-umbrella.h */, - 64C1435AAFD0344CE9E34B6CFFB7E446 /* IQKeyboardCore.debug.xcconfig */, - 1B9F50AC0729A3A5253FB09DBB050D14 /* IQKeyboardCore.release.xcconfig */, - 6692BE461FE698493D4679C8B5A06CCD /* ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist */, + CF63470D49386BA6162426EA53A0F83C /* FirebaseAnalytics.xcframework */, ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardCore"; + name = Frameworks; + sourceTree = ""; + }; + 2D1DA76032427107669454ECF7099E7B /* Wormholy */ = { + isa = PBXGroup; + children = ( + 78FE85CA000CC0581969BAF127702A7B /* ActionableTableViewCell.swift */, + AFB5D523231D320697B390EB06021CD7 /* BodyDetailViewController.swift */, + 814F2E965DC27BC9302DA3ECBAFB8776 /* Colors.swift */, + E08341FF0B126BFD0CDD86637D32A455 /* Config.swift */, + 2F15E126851CF08C21163E34FBF00EA5 /* CustomActivity.swift */, + 862A201A42BB7940AEBE4698319FD1C2 /* CustomHTTPProtocol.swift */, + 6AE3AEE749B01825ACE3F44C1111B1BD /* FileHandler.swift */, + 6C267FC91FF61F8F6D959793E124C676 /* InputStream+Utils.swift */, + D71CFB19F614F66C807739A4ACAC4B87 /* NSURLSessionConfiguration+Wormholy.h */, + 869993B3F1B283128A1829968E05F145 /* NSURLSessionConfiguration+Wormholy.m */, + 6257BFEAB1C9D0C2CCE7BB18FD92A809 /* Postman.swift */, + F4B9EA609443DB5F58DD34CE79AE2AF4 /* RequestCell.swift */, + 9124FEEB4685049F8046B2467AFF4E75 /* RequestDetailViewController.swift */, + 82D50490D82F2D60AEB51580141F888C /* RequestModel.swift */, + 763F35265F75C8FE0232872A1279CFDC /* RequestModelBeautifier.swift */, + 8AC7AA50269FD2479DEA2A29C9EA1B21 /* RequestResponseExportOption.swift */, + D7507B788F32FE9B02E6244934902E18 /* RequestsViewController.swift */, + EFB58244D1F8C89ABA1C0612D57AAE64 /* RequestTitleSectionView.swift */, + 153CA418C4CCC84EB19B933C745D4B17 /* Section.swift */, + F6598E2BE5FA262A82F4610298F70426 /* ShareUtils.swift */, + 8D7D891703ECCCAA0B68299E77C25CCF /* Storage.swift */, + DC1CAFFD4AC820A8A8142758CD813CB2 /* TextTableViewCell.swift */, + 24787721563C702E5268B6ECBDB11450 /* WHBaseViewController.swift */, + 3CA75820FBF48DE87826D69A57262161 /* WHBundle.swift */, + 65BF46DF058D3DB05DE71CA21C424E7E /* WHCollectionView.swift */, + 5EB645812EBD9D147A583FF7C0B28BB6 /* WHDate.swift */, + 0943B78F6B0D4161F5619A122F59B8B3 /* WHLabel.swift */, + 1F7D49A81794ADD8454763219C1ADCDF /* WHNavigationController.swift */, + 0A045FC67B7EB96DFF872D6DE6A7ABAD /* WHString.swift */, + BDB6A301A140BD2B057989168E75356A /* WHTableView.swift */, + D99DC118D7CD8871838338516B16829C /* WHTextView.swift */, + 6D41EAEA49CE14A55CC390B800588B31 /* WHView.swift */, + 9BC98D6DF4705676BF8988BE3A0A16EA /* Wormholy.h */, + 78A7B19E05B6B311A80634B10A410A31 /* Wormholy.swift */, + D64B4937FDF3D8CF533E4EB877DF98EB /* WormholyConstructor.m */, + 8F41CA1D9D7ED36D50ED1AE1B3E24956 /* WormholyMethodSwizzling.h */, + 70F3E7DC5F6F33B6D6319849096FBAC8 /* WormholyMethodSwizzling.m */, + DB6FC5290BBF4EFDE5EE10C87FE20128 /* Resources */, + D7EBA3A15D2109E319BD8FEB5678665A /* Support Files */, + ); + name = Wormholy; + path = Wormholy; + sourceTree = ""; + }; + 2DB00FD69F92AF39BF48D8E591487549 /* Quick */ = { + isa = PBXGroup; + children = ( + 892A50298130B8D30A525A58BEC34A2B /* AsyncBehavior.swift */, + 9D900EC17E881A678C59B7767EBD5B75 /* AsyncDSL.swift */, + 6C348D8B81A15C7A514C7AAA3648FCEB /* AsyncExample.swift */, + 65E78853D1539A5677D5A62C8E79763E /* AsyncExampleGroup.swift */, + A7190225A20C7D20C3ADAB000F6661E5 /* AsyncExampleHooks.swift */, + B29FC7A662C599DB242209F2C703FE63 /* AsyncSpec.swift */, + 867F4EA1F4EF7ED1FE441EFF3B2BB4AF /* AsyncSpec+testMethodSelectors.m */, + 55B41B068310EFBB9FE1665C5A225DA2 /* AsyncWorld.swift */, + 19A515124D7AE6ED7F9E9FAB52BB9B77 /* AsyncWorld+DSL.swift */, + DFB523B22A88143D46E82779B32E65E1 /* Behavior.swift */, + 0A2339FBE3D2799180870D117A85A752 /* Callsite.swift */, + 960100516CBDC6A1EC54318B4AE3F1EB /* Closures.swift */, + 463C661070B6082D24D57F8E9811D312 /* CurrentSpec.swift */, + 2A1B50CD3FCE4EAB18498D1A2E13F542 /* DSL.swift */, + 84F0A664168C0FA18A594E170364CAC6 /* ErrorUtility.swift */, + 22D2ACDC9E8AA687B43986D8C061F861 /* Example.swift */, + 2735D11320E4C0B28753849CA0C4FADF /* ExampleGroup.swift */, + 06219E171DAD51821C073703A23B86D4 /* ExampleHooks.swift */, + C65C2ED9004D328F635411B8F061B410 /* ExampleMetadata.swift */, + D0F180EBC9B28335EC3432CA43ECDE7E /* Filter.swift */, + 24C57F1C49323CAC06C03B45CE4BF7C2 /* HooksPhase.swift */, + 90E96D417DE7D723D1BA3ADBADAD43DB /* NSBundle+CurrentTestBundle.swift */, + D3BFE607791EA4E77DEB5B25B86F53D6 /* QCKConfiguration.swift */, + 3E23243F3244D77153C241B89D588965 /* QCKDSL.h */, + 82721DF39766E6031B3B3B8EEDE27221 /* QCKDSL.m */, + 0A380CBD6CD24A6B43504FFCAE32570F /* Quick.h */, + B2FE4B691CB15849C8C7B4A67D90FC16 /* QuickConfiguration.h */, + 0430733BA910250764FA4BE20EF237D1 /* QuickConfiguration.m */, + 00EB5256D8D2065D33FBDFBB317F6160 /* QuickConfiguration.swift */, + 05DDD82571D76F1B6040FDB80E243218 /* QuickObjCRuntime.h */, + 5A22DFECEFEB682092C9E0A7176FD7E1 /* QuickSelectedTestSuiteBuilder.swift */, + B6CCD8475E6BA243257119339E4DBD54 /* QuickSpec.h */, + 32D32B79D6DC04E1E545D20DE4AA6381 /* QuickSpec.m */, + 9D8EA074341EE61DC353AE3358913322 /* QuickSpecBase.h */, + B3A41EB6CC90A415A6C846DAE29F994A /* QuickSpecBase.m */, + 619C06FAEA3D53A2B1550217D5321839 /* QuickTestObservation.swift */, + 8AF2E5AAA653C6DCE825A0FF0F7C425C /* QuickTestSuite.swift */, + 87E898681CF454A1619068162EFD8563 /* StopTest.swift */, + 7FD3BBDAAF1F07D0A59E3F98DBC9264E /* String+C99ExtendedIdentifier.swift */, + FCB584E83AF057F9A589843EF7C3B147 /* SubclassDetection.swift */, + 9279BC8901C9D4808E6F89B206E0EA14 /* SuiteHooks.swift */, + 142C0A4A62EFBA47B4794D0362C2D63B /* TestSelectorNameProvider.swift */, + 7E6C776AB7AD85BFFD9E04FE1A6A838F /* TestState.swift */, + C25A919CE660D5F6D792682A4F31D41E /* URL+FileName.swift */, + BF61B9BC5870DBCF5759758E0AEF470A /* World.swift */, + F07C3D01FFA070062D9EC8A369BDB030 /* World+DSL.swift */, + AF70F6C06F30ADCDB7F323D2D97C770A /* XCTestSuite+QuickTestSuiteBuilder.m */, + 576973B5622BAA25C096D24CA45A68D0 /* Support Files */, + ); + name = Quick; + path = Quick; sourceTree = ""; }; - 1883F273E9CC9D50D48578E4D3CD140A /* Pods-Examples-AuthExample */ = { + 2E265220A8259B5896D750B184F4472A /* Pods-Examples-ConsentViewController_Example */ = { isa = PBXGroup; children = ( - FFA2CE5D89698BA9D6FFE87F26CDA2D1 /* Pods-Examples-AuthExample.modulemap */, - 91856F66BE2DECF62F1F9EE807018C94 /* Pods-Examples-AuthExample-acknowledgements.markdown */, - FEB3469995AD06E9930DFD048DEE190D /* Pods-Examples-AuthExample-acknowledgements.plist */, - B462B473A535B8124B294EBC6A4A8902 /* Pods-Examples-AuthExample-dummy.m */, - 7E051A6FB6BB8CE52354DC9EFBC6BD82 /* Pods-Examples-AuthExample-Info.plist */, - 86CDA7941153CD6098183D28A6424BF8 /* Pods-Examples-AuthExample-resources.sh */, - CB3BEA64D4C9043A08F3A930EDD0E944 /* Pods-Examples-AuthExample-umbrella.h */, - 408D31239F9070332AFEAD914F96DFFF /* Pods-Examples-AuthExample.debug.xcconfig */, - 5D31896522ED33BA384049E391718EA8 /* Pods-Examples-AuthExample.release.xcconfig */, + 394AF961A6DEF53D7C9DD696528D846F /* Pods-Examples-ConsentViewController_Example.modulemap */, + 2C2E83B4ABF1D645511C7D7DF84AFB38 /* Pods-Examples-ConsentViewController_Example-acknowledgements.markdown */, + 6F577EED3002B99FACC5F14F7C3582E0 /* Pods-Examples-ConsentViewController_Example-acknowledgements.plist */, + 61A8434CED8A5A96AEE10FEDB9AF07D5 /* Pods-Examples-ConsentViewController_Example-dummy.m */, + 2F151974035946F49D22D50CC2C1FA1F /* Pods-Examples-ConsentViewController_Example-Info.plist */, + DE390EE407C21DA6FF06705B4ACB0B8C /* Pods-Examples-ConsentViewController_Example-resources.sh */, + 9900566369968FB29D28C2EC2978C370 /* Pods-Examples-ConsentViewController_Example-umbrella.h */, + 9401E63DC925798D15C7ED576E634CFB /* Pods-Examples-ConsentViewController_Example.debug.xcconfig */, + F8F6444C5E803ADDC3C044E78B24027E /* Pods-Examples-ConsentViewController_Example.release.xcconfig */, ); - name = "Pods-Examples-AuthExample"; - path = "Target Support Files/Pods-Examples-AuthExample"; + name = "Pods-Examples-ConsentViewController_Example"; + path = "Target Support Files/Pods-Examples-ConsentViewController_Example"; sourceTree = ""; }; - 19D80967BF8D60AF17C2DE7AC7F1C1DD /* Support Files */ = { + 2E6D70D20289B4C54E2C4D4C089D7A80 /* Support Files */ = { isa = PBXGroup; children = ( - 6418E555DA5A4E396C2E2745514B6FAA /* FirebaseCoreInternal.modulemap */, - 44E39F8D18D1E7093CA122B1010CE382 /* FirebaseCoreInternal-dummy.m */, - 8B7EBFADDF04A200048C6D59F2E2C1CE /* FirebaseCoreInternal-Info.plist */, - 34D989935F30D00E606AE11B4B623E01 /* FirebaseCoreInternal-prefix.pch */, - E0A038CAFCE049FCCA2B19001A4C4C96 /* FirebaseCoreInternal-umbrella.h */, - 985E2F8DBB92E8FF07EB736106587CA2 /* FirebaseCoreInternal.debug.xcconfig */, - 57F011CBC15D2E26EA44927B4C29E325 /* FirebaseCoreInternal.release.xcconfig */, - 7F434422B10709D0CAFE05DFAECA3FCD /* ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist */, + 0696723B7967E1ECB7F653DE7029F161 /* CwlMachBadInstructionHandler.modulemap */, + B508B3D59EE122BA000258BE662F82C6 /* CwlMachBadInstructionHandler-dummy.m */, + 62C620711079DF8B44B622108BE304BC /* CwlMachBadInstructionHandler-Info.plist */, + 640843315170899821D4025D007D89D8 /* CwlMachBadInstructionHandler-prefix.pch */, + 8FD8C1A7CEA1C49D6CBDF4F352C2F2FB /* CwlMachBadInstructionHandler-umbrella.h */, + 7E1570CADFB386D0553E96EBC0C10F49 /* CwlMachBadInstructionHandler.debug.xcconfig */, + 853DF6D815EF025762106323111CAF85 /* CwlMachBadInstructionHandler.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/FirebaseCoreInternal"; + path = "../Target Support Files/CwlMachBadInstructionHandler"; sourceTree = ""; }; - 1D16A01DEF40E77973C9D793910ADA83 /* Pods-Examples-NativeMessageExample */ = { + 2F8A00A20A7D152CA4190448065C0ABF /* Pods-Tests-SPGDPRExampleAppUITests */ = { isa = PBXGroup; children = ( - 68FEC242A1E4E6AB8B33B184FC6149E6 /* Pods-Examples-NativeMessageExample.modulemap */, - EA6EBBDAFEAF9A267D8A8E92122DD4B2 /* Pods-Examples-NativeMessageExample-acknowledgements.markdown */, - 2176275B8B0729C9BE40F21BC680FF52 /* Pods-Examples-NativeMessageExample-acknowledgements.plist */, - 9A393314456FFB3E06800F9CD1A915F3 /* Pods-Examples-NativeMessageExample-dummy.m */, - DD709697921D84227DDB94894644BB1A /* Pods-Examples-NativeMessageExample-Info.plist */, - 2A13B1DF6C6AAAEE4F352F720D1D2599 /* Pods-Examples-NativeMessageExample-resources.sh */, - 8BABD3D93658A6438AE39E7CA356B0EE /* Pods-Examples-NativeMessageExample-umbrella.h */, - 0618BA28BDC28DE55C59EC817BEE6BC6 /* Pods-Examples-NativeMessageExample.debug.xcconfig */, - 921BD04D1137665DAA00C54FD7449ED3 /* Pods-Examples-NativeMessageExample.release.xcconfig */, + A5A404DB92DBD0B4D15E18791E819FB0 /* Pods-Tests-SPGDPRExampleAppUITests.modulemap */, + 6733421850C9E9063FEF14CDA37243C5 /* Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.markdown */, + 3611514331DF9FE26618CFDAD657B115 /* Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.plist */, + BCF3A705209693019C7BB757150DC006 /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m */, + 3ABE01118809F2CA207C48F5E7281F0E /* Pods-Tests-SPGDPRExampleAppUITests-Info.plist */, + 9BC1F94B4073DED6F7B7D77C3EAA1B3D /* Pods-Tests-SPGDPRExampleAppUITests-resources.sh */, + EE1E3EC8B1B1A3966495448B237ABC7C /* Pods-Tests-SPGDPRExampleAppUITests-umbrella.h */, + 3131C3F4A28AC13180C4E311131193C7 /* Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig */, + 1893E19DE84F2A0B6BC917DDB6462183 /* Pods-Tests-SPGDPRExampleAppUITests.release.xcconfig */, ); - name = "Pods-Examples-NativeMessageExample"; - path = "Target Support Files/Pods-Examples-NativeMessageExample"; + name = "Pods-Tests-SPGDPRExampleAppUITests"; + path = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests"; sourceTree = ""; }; - 1D1CF3CC7E8FFF89945456D8E537B80B /* IQKeyboardToolbarManager */ = { + 34EA5DF22B0AABF319606F7792AD4C13 /* Pods-Tests-ConsentViewController_ExampleTests */ = { isa = PBXGroup; children = ( - AD8A1623E24EBB185642DD871266F75A /* Array+Sort.swift */, - 790698D1907D96D40B94366B158B24F3 /* IQDeepResponderContainerView.swift */, - B1BEC02223C75794AFCD195F68ED8447 /* IQKeyboardToolbarConfiguration.swift */, - A0F162DFF0A4C069334782DC294C71FF /* IQKeyboardToolbarConstants.swift */, - DE7D597697731D9160062FDCF285D382 /* IQKeyboardToolbarManager.swift */, - D91F547B9A243B421B112EBB9E56482A /* IQKeyboardToolbarManager+Action.swift */, - C936250F69BC4E03BF6EFDD20C6E0449 /* IQKeyboardToolbarManager+Debug.swift */, - BED36662D4F72A2E1B9DA8B9823EA686 /* IQKeyboardToolbarManager+Deprecated.swift */, - 32273C3579DDC80A0E04B464513AEC00 /* IQKeyboardToolbarManager+Internal.swift */, - E65AF204BB83B541A6F7685A67A74FE2 /* IQKeyboardToolbarManager+Toolbar.swift */, - 7FEA1A4EC31069946A09F155DF282C30 /* UIView+Responders.swift */, - 9A357AC195864E56D2592C1979BBAF05 /* UIView+RespondersObjc.swift */, - 3D1AD1D3E22F073249D1FE792F6254C9 /* Resources */, - 09A35AF98906B6C1E6707AAA5A1057F7 /* Support Files */, - ); - name = IQKeyboardToolbarManager; - path = IQKeyboardToolbarManager; + 33854AECA097DE4EB2C754E023B31DB3 /* Pods-Tests-ConsentViewController_ExampleTests.modulemap */, + 1A3EBF27C9D405872A61C7ED5BC39FFD /* Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.markdown */, + 3227DFD6305744C97AF950D7466F5F85 /* Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.plist */, + 8BF5032FC7D514BFE613B06681A02593 /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m */, + 980FCF9168B743F15FC5FD49B056B497 /* Pods-Tests-ConsentViewController_ExampleTests-Info.plist */, + 02E84178DE3F0322D6F01D55C48EA66E /* Pods-Tests-ConsentViewController_ExampleTests-resources.sh */, + 4D7246DDC44ED9E5CF7F0DE1BD77AEB3 /* Pods-Tests-ConsentViewController_ExampleTests-umbrella.h */, + D027DCACE4D142B20B4BD5E6E6D432C2 /* Pods-Tests-ConsentViewController_ExampleTests.debug.xcconfig */, + 79911075C9BA537C7A595057F5C998F3 /* Pods-Tests-ConsentViewController_ExampleTests.release.xcconfig */, + ); + name = "Pods-Tests-ConsentViewController_ExampleTests"; + path = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests"; sourceTree = ""; }; - 22BE5F8EFBEFE7051095B9FF6E32F829 /* Resources */ = { + 35B0FF1B424BBFD1B4DAB2704E5BCF58 /* JSONView */ = { isa = PBXGroup; children = ( - 8A82B370762440F79B82E09400A57C80 /* PrivacyInfo.xcprivacy */, + 4526DBFFDE56165E758EA42C2C6B6F0A /* JSONCell.swift */, + 30605FC513754B9EB9A34AB92CCFC7B3 /* JSONTreeView.swift */, + 58D7D30A9A0EBC74CFB29C0DC69DB058 /* JSONView.swift */, + C147B287A9BC1A773432766F120C3097 /* Support Files */, ); - name = Resources; + name = JSONView; + path = JSONView; sourceTree = ""; }; - 22DBA654D4DDD75434776617D876E9FB /* Frameworks */ = { + 381BE5E8A8BBE7C3494A26172BFE4492 /* CCPA */ = { isa = PBXGroup; children = ( - 6D63C3BE8B1B77C639E6C8E1329CF3FC /* GoogleAppMeasurement.xcframework */, + 2E2C94A9C6126684EC34738AA8F7AB87 /* CCPAPMConsentSnapshot.swift */, + EDF69D30CA3D2B0C488942CB6B5D247E /* SPCCPACategoryDetailsViewController.swift */, + 95CE5BA6845C27259E5E75FF90D770CF /* SPCCPACategoryDetailsViewController.xib */, + 7C86F91CE1DB8CBB4F20B3FB5198EF7B /* SPCCPAManagePreferenceViewController.swift */, + D407B14424BEC0F39C5A5519E9569AAB /* SPCCPAManagePreferenceViewController.xib */, + A7FC119477F460006B723993FA489467 /* SPCCPANativePrivacyManagerViewController.swift */, + FBD0C3FE4BCECF88927C3C5C450B34C6 /* SPCCPANativePrivacyManagerViewController.xib */, + 0BBCE35A0421461965EDB0E1835692D8 /* SPCCPAPartnersViewController.swift */, + F69850BE0942AAF7569973E18927CB8F /* SPCCPAPartnersViewController.xib */, + 1375173E8D5512B9BFD64EDD2FCA6C13 /* SPCCPAVendorDetailsViewController.swift */, + DC7D803B015186A369CD4EEDDEA702D5 /* SPCCPAVendorDetailsViewController.xib */, ); - name = Frameworks; + name = CCPA; + path = CCPA; sourceTree = ""; }; - 22EEDA251E43AFCE2C52615E980F08CD /* Placeholderable */ = { + 38F4315A83C1C928C88E024323AEFA3D /* Pods-Tests-ObjC-ExampleAppUITests */ = { isa = PBXGroup; children = ( - 53F00746A713E8D3E29D36852B7F2A61 /* IQPlaceholderable.swift */, + A6B6FC4A63EF725AE0EE5E8A28DA9B89 /* Pods-Tests-ObjC-ExampleAppUITests.modulemap */, + BFC4F70BA0E025FABF8AE4EBFA8D67EC /* Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.markdown */, + 0FC5269CEE6B854EBFC220F83DCC1FC6 /* Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.plist */, + 2B1D2F924103347BE5C2A45C1BA29C54 /* Pods-Tests-ObjC-ExampleAppUITests-dummy.m */, + 7CC6F483F2401D89545DA4673098F155 /* Pods-Tests-ObjC-ExampleAppUITests-Info.plist */, + 952DB85CE1543168029213CE8B042B9A /* Pods-Tests-ObjC-ExampleAppUITests-resources.sh */, + CAFC8EAFF3ABC5EA268F6B493C20AE6B /* Pods-Tests-ObjC-ExampleAppUITests-umbrella.h */, + 9F881E818A129CDB4DD5CEAB85319E59 /* Pods-Tests-ObjC-ExampleAppUITests.debug.xcconfig */, + C5BF5F4E462DBE0E23350DE73012B8AB /* Pods-Tests-ObjC-ExampleAppUITests.release.xcconfig */, ); - name = Placeholderable; + name = "Pods-Tests-ObjC-ExampleAppUITests"; + path = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests"; sourceTree = ""; }; - 257C1FDD51726E9BFAD26CC2971EDAE6 /* tvOS */ = { + 3931C72CF1A1DF4194625A57CFFB9C40 /* encode */ = { isa = PBXGroup; children = ( - C5475206DB01997D3420C2A46A0228B1 /* NativePrivacyManager */, ); - name = tvOS; - path = tvOS; + name = encode; sourceTree = ""; }; - 269BF36CB13C34482BD73539FEB074D7 /* Resources */ = { + 3A8B8BE661BDD59E961607EC4653C98D /* FirebaseAnalytics */ = { isa = PBXGroup; children = ( - BAC9703CCCA66DA53EEA0A439C70ABA9 /* ActionableTableViewCell.xib */, - EA5173EB199F9C06632F1D554BFEA535 /* Flow.storyboard */, - 10F2EEC527F6E7935FFABF0983620715 /* RequestCell.xib */, - 1CF9482DF9831CCB3E533ACFE2AACC24 /* RequestTitleSectionView.xib */, - D594C81A655ECF45EF32CF2373208F47 /* TextTableViewCell.xib */, + FB5C930C81EB106F03F9B28F321F6567 /* AdIdSupport */, + 03A9307DDC38CF1BC912D1C643314E54 /* Support Files */, ); - name = Resources; + name = FirebaseAnalytics; + path = FirebaseAnalytics; sourceTree = ""; }; - 28843EDE171A71C72B6346EE461BEF2E /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests */ = { - isa = PBXGroup; - children = ( - 08EFFFAFE6B8C843DE416183FF42EB61 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.modulemap */, - 45CCAA33B4BD0BAAF99B43138097D414 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.markdown */, - 5CE996234BE50E6434DA4D63813370B8 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.plist */, - 0938054FF37292F241D2F03657DCA974 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m */, - E3F2C0FF7F6DD89E6D8730E213E8BEC2 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-Info.plist */, - 68F9CE8B1DE4A57B713F219E82E214CA /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-resources.sh */, - 0C65EE1CE46F0EF23C89F969024E6B02 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h */, - E74D488FAB1BF71E1683399DE24561E3 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.debug.xcconfig */, - 5F0BAEF807330D071BABE9BE7ADD3BE3 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.release.xcconfig */, + 403D207585F3A34BBE9E29D6BB4B61CC /* FirebaseInstallations */ = { + isa = PBXGroup; + children = ( + DF7B281A35B5856FA4C77079544EB4E8 /* FIRAppInternal.h */, + 60E64396CA6F5B577F400C5C6A72A474 /* FIRComponent.h */, + 969040CA3C0768B3AAAB1099AA402018 /* FIRComponentContainer.h */, + 4F68489EC6CE03CD58D1D4DE0C761653 /* FIRComponentType.h */, + BAFB6978A553EB71DE67714445835E93 /* FIRCurrentDateProvider.h */, + 7E7489FE0B5548F7792286FF53D8AC5A /* FIRCurrentDateProvider.m */, + 8BF7C624218E90B94B9531ADDB73AF37 /* FirebaseCoreInternal.h */, + 7D5FC13DE2F0DC1B3EF8C65E8074CD50 /* FirebaseInstallations.h */, + E1DF5F3530E33B4156A15DA05CA96AB7 /* FirebaseInstallationsInternal.h */, + AD846BCD8B155D1F9888DE2E55C38968 /* FIRHeartbeatLogger.h */, + 60BDF6F81E1BB8325DF5E00FB38DD512 /* FIRInstallations.h */, + 83442322BA283D78CE937831AD163F9D /* FIRInstallations.m */, + FF6B07A257C9B6FD90A471FE0E8FD9A1 /* FIRInstallationsAPIService.h */, + 7911E69EF4CECB5DAF09A91C4530D33C /* FIRInstallationsAPIService.m */, + EA63672DF60F28265DFD1420B99A70EB /* FIRInstallationsAuthTokenResult.h */, + 0CA355AA07CBD101CDEF5AE097726279 /* FIRInstallationsAuthTokenResult.m */, + 8E973547B432A3EFF7F1FA52CCE419B7 /* FIRInstallationsAuthTokenResultInternal.h */, + A85F098A5EA0C8981B9079D72A717721 /* FIRInstallationsBackoffController.h */, + DB0C46F79E0A712FEA40799F37A7DE9A /* FIRInstallationsBackoffController.m */, + BB101BC37B0AEBB225E41DC9E97C6A6F /* FIRInstallationsErrors.h */, + 6E89B513CEE32822C3678F04BC0D9F27 /* FIRInstallationsErrorUtil.h */, + D3BF6FB346A9AD9E836AE089E154841A /* FIRInstallationsErrorUtil.m */, + E747AFEEEAD893ED40EDE94A046B4EB1 /* FIRInstallationsHTTPError.h */, + 4571B1E59B818C137F7B607D94E42743 /* FIRInstallationsHTTPError.m */, + CA6535141BCB8E8D4DB2324E57E4F9EC /* FIRInstallationsIDController.h */, + 22E7A0FEE44B392FEDDAA42328B91CE9 /* FIRInstallationsIDController.m */, + 37546AE7AC44D9CF6B90FB1F1D2BD9CC /* FIRInstallationsIIDStore.h */, + A07C28D654656DF66B982CFE159BEC71 /* FIRInstallationsIIDStore.m */, + 84A959D14CEA8B891E4C930622E1576B /* FIRInstallationsIIDTokenStore.h */, + AC058DD843488186AED951EB40621CF0 /* FIRInstallationsIIDTokenStore.m */, + 5F39B530F0DBEB88C60FBF6759CD229C /* FIRInstallationsItem.h */, + D29A7FD24890BA441D55198AF549DAEF /* FIRInstallationsItem.m */, + EB27448A9BC9AA7F27CE7651E27BD1CD /* FIRInstallationsItem+RegisterInstallationAPI.h */, + 6F0355A2C3AE0635078DFFDEBF53FE29 /* FIRInstallationsItem+RegisterInstallationAPI.m */, + 9A39C86C44AAD0F5C04D1C710474ECE7 /* FIRInstallationsLogger.h */, + 7C11A750AE50BB969297173FD07551F4 /* FIRInstallationsLogger.m */, + E20F080CF4726774171AFD81E7651852 /* FIRInstallationsSingleOperationPromiseCache.h */, + F6C9F063562098F1CE8683FCCBF9937F /* FIRInstallationsSingleOperationPromiseCache.m */, + 5A4A014DF823D4524181C26472988F59 /* FIRInstallationsStatus.h */, + 04AD62417A5D802049729AF441E69456 /* FIRInstallationsStore.h */, + 96E5FE8E889EA13EE21821B1544C29CF /* FIRInstallationsStore.m */, + 694614A059CDC801BC904A72925A021E /* FIRInstallationsStoredAuthToken.h */, + 73B4CB67E390E11A2014EB32CA0E286E /* FIRInstallationsStoredAuthToken.m */, + 623117FF974FB0FB1E6BCE68FA255F07 /* FIRInstallationsStoredItem.h */, + C335C633B66ABF1FB3447451876F0D3C /* FIRInstallationsStoredItem.m */, + 51CD3C7D17AABA82467F35AF824AD67F /* FIRLibrary.h */, + 4535635A06F1DFFEA38591BF903BAAB6 /* FIRLogger.h */, + F91D6CF9083FB22DFD5441F1DD49C2A0 /* Resources */, + D41366D3B796E3D7F29E29F4BDDA0ED8 /* Support Files */, ); - name = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests"; - path = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests"; + name = FirebaseInstallations; + path = FirebaseInstallations; sourceTree = ""; }; - 29B2090CCDCCE6569FE67BEF5EA55EB0 /* Support Files */ = { + 4472BAD9F787B8693F72EB2EB5312FAA /* Support Files */ = { isa = PBXGroup; children = ( - F66C852B103CF039C0B2B16B131E3FD5 /* IQKeyboardToolbar.modulemap */, - 4F93C65D23B8F7BDEB501077294DE0F0 /* IQKeyboardToolbar-dummy.m */, - EE841CFFC5421051274500BC8FF6A8DB /* IQKeyboardToolbar-Info.plist */, - 9596493F419E94FDD1890E1D05FB9DE8 /* IQKeyboardToolbar-prefix.pch */, - 0BD568D6A51A5409CB41FA9C1F9A6146 /* IQKeyboardToolbar-umbrella.h */, - 19E8DF962E12F5CD09F0C1D4AE5F54AB /* IQKeyboardToolbar.debug.xcconfig */, - A11B05957DEC3AB840DA74DE56267828 /* IQKeyboardToolbar.release.xcconfig */, - 78BB1E0EE2F9E90FAB93CF0A968AFF8D /* ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist */, + 530FA7D14A5579E848ABE3248570CF88 /* CwlPosixPreconditionTesting.modulemap */, + CAF9E07A7A6305EFFE2EB288673EB511 /* CwlPosixPreconditionTesting-dummy.m */, + CCFA7062CDE08145A77DA166FC7002D3 /* CwlPosixPreconditionTesting-Info.plist */, + B540828AC5D3B9A1032F0539B651D5F8 /* CwlPosixPreconditionTesting-prefix.pch */, + D07E3BCB34DC26117B3D73571E14C719 /* CwlPosixPreconditionTesting-umbrella.h */, + ED8F27718291C15FD0831F6D68CC99D6 /* CwlPosixPreconditionTesting.debug.xcconfig */, + 4EBB725AC5BF7E0F77E625A5DA4315CA /* CwlPosixPreconditionTesting.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/IQKeyboardToolbar"; - sourceTree = ""; - }; - 2A053BDCEF8AE93570DE0964F82A79BD /* Views */ = { - isa = PBXGroup; - children = ( - E618051BCBE2BDF5EB953B3E37A09230 /* SPUIColor.swift */, - 82EED63E21C43BDE686776AB90EBABD7 /* iOS */, - 257C1FDD51726E9BFAD26CC2971EDAE6 /* tvOS */, - ); - name = Views; - path = ConsentViewController/Classes/Views; - sourceTree = ""; - }; - 369243027836E4EC9DA0DEEC9F6D277B /* AdIdSupport */ = { - isa = PBXGroup; - children = ( - 82127B752DF4FC3944F40F4B63242F6C /* Frameworks */, - ); - name = AdIdSupport; - sourceTree = ""; - }; - 36A5456068B47948179B9B259C57591C /* Support Files */ = { - isa = PBXGroup; - children = ( - 3C04865CFD01F89FBBABA7275A2A7AFA /* FirebaseAnalytics-xcframeworks.sh */, - 7B173ED8DF89128C483E3884E1F880C4 /* FirebaseAnalytics.debug.xcconfig */, - DEB7328BDFB8614EAD2EAD799824C0FE /* FirebaseAnalytics.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseAnalytics"; - sourceTree = ""; - }; - 36EDC9C87AA25C00588569FB9643B2A7 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3D1B346805890BCF6AC4E96655693FCC /* JSONView.modulemap */, - 9486C1AFBFBCE9306650338B9FBFB1AD /* JSONView-dummy.m */, - 5336E0A0BE79D766683D1D4907760DD4 /* JSONView-Info.plist */, - 34F831AA769E614261D410BF227A2838 /* JSONView-prefix.pch */, - 4E0C55A5303CFB5640DC3BDA91663E33 /* JSONView-umbrella.h */, - A9F239EB342CD33668E7657BEF9023C2 /* JSONView.debug.xcconfig */, - 8308C54DE95C976F10FACAADA52D2C28 /* JSONView.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/JSONView"; - sourceTree = ""; - }; - 381BE5E8A8BBE7C3494A26172BFE4492 /* CCPA */ = { - isa = PBXGroup; - children = ( - 2E2C94A9C6126684EC34738AA8F7AB87 /* CCPAPMConsentSnapshot.swift */, - EDF69D30CA3D2B0C488942CB6B5D247E /* SPCCPACategoryDetailsViewController.swift */, - 95CE5BA6845C27259E5E75FF90D770CF /* SPCCPACategoryDetailsViewController.xib */, - 7C86F91CE1DB8CBB4F20B3FB5198EF7B /* SPCCPAManagePreferenceViewController.swift */, - D407B14424BEC0F39C5A5519E9569AAB /* SPCCPAManagePreferenceViewController.xib */, - A7FC119477F460006B723993FA489467 /* SPCCPANativePrivacyManagerViewController.swift */, - FBD0C3FE4BCECF88927C3C5C450B34C6 /* SPCCPANativePrivacyManagerViewController.xib */, - 0BBCE35A0421461965EDB0E1835692D8 /* SPCCPAPartnersViewController.swift */, - F69850BE0942AAF7569973E18927CB8F /* SPCCPAPartnersViewController.xib */, - 1375173E8D5512B9BFD64EDD2FCA6C13 /* SPCCPAVendorDetailsViewController.swift */, - DC7D803B015186A369CD4EEDDEA702D5 /* SPCCPAVendorDetailsViewController.xib */, - ); - name = CCPA; - path = CCPA; - sourceTree = ""; - }; - 3A727D29E409E0E3470D214CF4621B78 /* Support Files */ = { - isa = PBXGroup; - children = ( - ADB4F88912D4C5E25D8BE4F0B806CE78 /* CwlMachBadInstructionHandler.modulemap */, - E34D926F7527B1A43827738B3FA8609C /* CwlMachBadInstructionHandler-dummy.m */, - A0D10B995612504994DB04DEEBB0138E /* CwlMachBadInstructionHandler-Info.plist */, - 7074851D2482EE864C5FB2FAEB4F10E7 /* CwlMachBadInstructionHandler-prefix.pch */, - 85DCA40AD37456BE4FA02979143B558D /* CwlMachBadInstructionHandler-umbrella.h */, - 58E0351200843A0258ABD52F8867F39C /* CwlMachBadInstructionHandler.debug.xcconfig */, - C9391B97E8AE9BB43422D8C5BC9536AC /* CwlMachBadInstructionHandler.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/CwlMachBadInstructionHandler"; - sourceTree = ""; - }; - 3AEF6B422FB2024554579B356386595B /* Pods-Examples-SourcePointMetaApp */ = { - isa = PBXGroup; - children = ( - C2ED87FF684D4E49C5ED31ABB13C38AC /* Pods-Examples-SourcePointMetaApp.modulemap */, - 156AAA0B72E382123D7BA1BCBEE845C3 /* Pods-Examples-SourcePointMetaApp-acknowledgements.markdown */, - 0CDEFA47A2822954ABE2E1E4C57CBA20 /* Pods-Examples-SourcePointMetaApp-acknowledgements.plist */, - 4424C873A8239E14D307C7649C328BDF /* Pods-Examples-SourcePointMetaApp-dummy.m */, - B38087A49120AF6988F87CAD1193D2EE /* Pods-Examples-SourcePointMetaApp-Info.plist */, - 78C3F3C49789002B4A6B013FBF3C4F02 /* Pods-Examples-SourcePointMetaApp-resources.sh */, - 0F30A2BF8247E3B49846E08BF91D6D6F /* Pods-Examples-SourcePointMetaApp-umbrella.h */, - 983BDF8D0A591D54CB03F4ACB6E58CDA /* Pods-Examples-SourcePointMetaApp.debug.xcconfig */, - 526CB7DD55C46C5D61E56736B270451E /* Pods-Examples-SourcePointMetaApp.release.xcconfig */, - ); - name = "Pods-Examples-SourcePointMetaApp"; - path = "Target Support Files/Pods-Examples-SourcePointMetaApp"; - sourceTree = ""; - }; - 3BEB57409E4A314C344417D59646691E /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests */ = { - isa = PBXGroup; - children = ( - 103B95F4ED3B3A1D7926D743F2923250 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.modulemap */, - E4B024DDAEF0A1292C4585B5E4480C09 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.markdown */, - 25AE189B10793A7146D998D676725888 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.plist */, - 5D52CD7197ACC1E43E8550270796A4CE /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m */, - B035E0A9C9B2061E23E37637991AF18F /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-Info.plist */, - 91D62181605594F9BA432C86AB828AD0 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-resources.sh */, - 309C0270C20A21A240AC4C4C13ACF54D /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h */, - 02A196CEB3DFD80618F39736B5983336 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig */, - 1FEFC5DF623E0B735C831F197EB46676 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig */, - ); - name = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests"; - path = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests"; - sourceTree = ""; - }; - 3D1AD1D3E22F073249D1FE792F6254C9 /* Resources */ = { - isa = PBXGroup; - children = ( - F4717DE3C7C32C18CA230DEF9AE3D3FE /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 409CB7576D3AB13E8219CC44C76B491B /* Frameworks */ = { - isa = PBXGroup; - children = ( - 5015B13471ACDFF298E6E6397EF432D4 /* GoogleAppMeasurementIdentitySupport.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 40D1E9AA7AF11058D10FD2FDB4D7D1C3 /* Resources */ = { - isa = PBXGroup; - children = ( - EFFB42EBA6B36A4E257D3F51EF9DC7DC /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 42E9F38CB980D5547A7912A6A66F17CE /* Core */ = { - isa = PBXGroup; - children = ( - 2187FE9772F1A9A746A83A16204EDB91 /* IQBarButtonItem.swift */, - 9E054BBC07794A97A72D7F5FD34898FF /* IQBarButtonItemConfiguration.swift */, - 7A022E1234424683435C80940388BE00 /* IQInvocation.swift */, - E96E350596132C3A65B58D48E75232FE /* IQKeyboardToolbar.swift */, - 8DE645F2294DF573039679935A89494B /* IQKeyboardToolbarPlaceholderConfiguration.swift */, - 14250D74426E3F8CEAA313072076355C /* IQTitleBarButtonItem.swift */, - 44D7A9D4428EC8819191D61354C9DDD3 /* UIView+IQKeyboardExtension.swift */, - D1EF5C57CF95EEDFB6147F92D19FD6F7 /* UIView+IQKeyboardExtensionDeprecated.swift */, - 79E7601A02651FAC7415EEBCB49C9F6B /* UIView+IQKeyboardExtensionObjc.swift */, - ); - name = Core; - sourceTree = ""; - }; - 44A32A0A4B4603F67AA213DDE71B2430 /* Quick */ = { - isa = PBXGroup; - children = ( - 5FF007DE16FC76B92D2B471ADE891BED /* AsyncBehavior.swift */, - 95F0052081268DFDBE4A0120A806FDDD /* AsyncDSL.swift */, - CDE29F7E2C2B8181BDC86D8BC3C43A2F /* AsyncExample.swift */, - D5B09BA535863D4B01B71BFC5473DBC4 /* AsyncExampleGroup.swift */, - A5CF58C2980FC8C6E33960F8257583AD /* AsyncExampleHooks.swift */, - E97532B3008EAD598A48D9E01B06B2B7 /* AsyncSpec.swift */, - E0A060E5DA1F12147B39CB28131FA6D2 /* AsyncSpec+testMethodSelectors.m */, - 629C5CA2DE65A4802EEBB04934FE67CE /* AsyncWorld.swift */, - B3B7F216AFAC272B8A629EBC12FA2E0A /* AsyncWorld+DSL.swift */, - 259EFEA7087E5468175533431A8057F5 /* Behavior.swift */, - CE61A8CA9758CA1D4AA14AA0909D6F4A /* Callsite.swift */, - 14EE15EE2D21740716E29AC2EE0A6076 /* Closures.swift */, - B1B783765AFDBBC9FF7903D64E5A39B0 /* CurrentSpec.swift */, - 3427A27AC38028C5399CAE2BCF841D6E /* DSL.swift */, - C5A307F97B8D4D230351B1E3803B356C /* ErrorUtility.swift */, - 03A4E26FDAB2812977B49469A6B6B561 /* Example.swift */, - 4839977FE2F318D830B3611AAC7E0B07 /* ExampleGroup.swift */, - F63D0B2446F40712AA7AD3941D1BCB53 /* ExampleHooks.swift */, - 627553C3D560EA9D715BD1548B0CF3D7 /* ExampleMetadata.swift */, - ED6272CCA83508A3A34BA111C6A513BB /* Filter.swift */, - B6CFFBFD33C80AE18D03D79100AF8558 /* HooksPhase.swift */, - BAC7A0B37A8D91FE55F50A479F14B44C /* NSBundle+CurrentTestBundle.swift */, - 6C1F4501D14ACE8C725D24BAED9BA31E /* QCKConfiguration.swift */, - AB8A4A9B4157CDAA3D994D9F0DAA5886 /* QCKDSL.h */, - A633DBE772E554D5D84ED42635A8334C /* QCKDSL.m */, - 547430F6B989F18B64D86FFC4646F10D /* Quick.h */, - 219CC0CD56FC97926EFEFCDCCC9999F7 /* QuickConfiguration.h */, - 754BEF92020F4A1FC09E103BB777106A /* QuickConfiguration.m */, - CBE8437615205B25F5BEF35B3A81EDEE /* QuickConfiguration.swift */, - 39521561A3A1D050295F964A5391C69E /* QuickObjCRuntime.h */, - A65D69CB88594A9705501AF0677C3716 /* QuickSelectedTestSuiteBuilder.swift */, - 97C08F366011ABF5B61B5D428C2A32B0 /* QuickSpec.h */, - 698B6323D03AD253DEAE782E65E107E7 /* QuickSpec.m */, - 80A9DB66AE8726E0CB5FC058EDC77670 /* QuickSpecBase.h */, - 1927DE642808C0399D8EC4D6EEBFFA2C /* QuickSpecBase.m */, - 01A004F916AE721171E411659CD37E18 /* QuickTestObservation.swift */, - 8193AC37D693F05389BC7EE7817E74E2 /* QuickTestSuite.swift */, - 20BCCE3D8FFE4752339823149D7C43EF /* StopTest.swift */, - BF374197388716B739DB5B8C30DAD6A0 /* String+C99ExtendedIdentifier.swift */, - AA0F831F10B5385C15685F1BE6EEC902 /* SubclassDetection.swift */, - F3F02076DF398AB04994F86592D2A03B /* SuiteHooks.swift */, - 26484551773621D3B85EA2980BF9C36E /* TestSelectorNameProvider.swift */, - 054F7CF39326FC823FD090254AC82F87 /* TestState.swift */, - 72C7F44C43C5690DC0B883678B1A6DCB /* URL+FileName.swift */, - 7B08161A2B63C49591A4C21B2AEC49EC /* World.swift */, - 46DC532A2458C8E24116BF023C0C228D /* World+DSL.swift */, - C9A9B7E43BDAD2F718FFD17A863D0A84 /* XCTestSuite+QuickTestSuiteBuilder.m */, - 85704370643F51B0C3B7A03351A362AC /* Support Files */, - ); - name = Quick; - path = Quick; - sourceTree = ""; - }; - 484E1F6477F672CA693D5EAABDA5F284 /* Privacy */ = { - isa = PBXGroup; - children = ( - 0A9A8E9926E1430185FD7C07279BFA30 /* Resources */, - ); - name = Privacy; - sourceTree = ""; - }; - 4E613DC09C39D9B78147F2F30A4CD5F5 /* Support Files */ = { - isa = PBXGroup; - children = ( - 6EDD57EFE9FBA0B26CF75D4E1FDFE042 /* FirebaseInstallations.modulemap */, - 2EFFD7A3CE87229F9775E2437AB22494 /* FirebaseInstallations-dummy.m */, - 3B85D4D2A37FA5B427857CDF7DE0C356 /* FirebaseInstallations-Info.plist */, - 0B248C61C89B02A8A25F332705053C87 /* FirebaseInstallations-umbrella.h */, - 41BAC8F250BD7588F95DD766836F4A64 /* FirebaseInstallations.debug.xcconfig */, - D900D75BBBD137EE15A051E0E5E8234A /* FirebaseInstallations.release.xcconfig */, - A24EBA1A48811A82E9E39B985421398F /* ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseInstallations"; + path = "../Target Support Files/CwlPosixPreconditionTesting"; sourceTree = ""; }; 4FB72CF436D00C693AFB64B05CD71461 /* Development Pods */ = { @@ -4273,124 +3540,26 @@ name = "Development Pods"; sourceTree = ""; }; - 5102D610AAA35199D6E1B4C6E16D406D /* IQKeyboardToolbar */ = { - isa = PBXGroup; - children = ( - 42E9F38CB980D5547A7912A6A66F17CE /* Core */, - 22EEDA251E43AFCE2C52615E980F08CD /* Placeholderable */, - 22BE5F8EFBEFE7051095B9FF6E32F829 /* Resources */, - 29B2090CCDCCE6569FE67BEF5EA55EB0 /* Support Files */, - ); - name = IQKeyboardToolbar; - path = IQKeyboardToolbar; - sourceTree = ""; - }; - 5373C20618240CC7759E5C2528A4C84C /* CwlCatchException */ = { - isa = PBXGroup; - children = ( - BE46FD2C9A2945C44977ED7FFF75B5ED /* CwlCatchException.swift */, - 93EB688CD00F1369BA81DB4071B33B2F /* Support Files */, - ); - name = CwlCatchException; - path = CwlCatchException; - sourceTree = ""; - }; - 57E3C67E8BF67A4809E92DDB74E883A7 /* IQKeyboardCore */ = { - isa = PBXGroup; - children = ( - E62B48AD78A8199016E9CC780B0C438D /* IQKeyboardConstants.swift */, - 5074B22265EA17DA123B92F5460B22F8 /* IQKeyboardExtended.swift */, - EE0739C1018CA17711EA54F49417946B /* IQTextInputView.swift */, - AA8CD736A98F2741BD96AF9CFB0498E4 /* UIView+Hierarchy.swift */, - AF3591EDAF8540C3143276C4ACC5FAC7 /* Resources */, - 11011FD9F4782D95DDDEE835FF776E18 /* Support Files */, - ); - name = IQKeyboardCore; - path = IQKeyboardCore; - sourceTree = ""; - }; - 580204531A8DBDCDA937D9A87A7D1DA6 /* FirebaseInstallations */ = { - isa = PBXGroup; - children = ( - EF6900942D6C588E3E56535DCCF82EFD /* FIRAppInternal.h */, - D0CF9E05F7A901F3CF7A759DA305AB77 /* FIRComponent.h */, - 2B3054F657B97EEC597FB71FB7EEBA1C /* FIRComponentContainer.h */, - 00760845D8B0C5DA675FA4CC4DE50940 /* FIRComponentType.h */, - 377CC3E93DF4518F2B7A6637C33D243F /* FIRCurrentDateProvider.h */, - AE8A7BA9F0275B149E1D0749B53CDD49 /* FIRCurrentDateProvider.m */, - C92509E734A6C345C96274A3E981A6A6 /* FirebaseCoreInternal.h */, - 6CAEFCC3380710EA276C557B6B0F987F /* FirebaseInstallations.h */, - A9AFE904771B568A4754C58702BBFAA9 /* FirebaseInstallationsInternal.h */, - D292C84B70317E9D64F83924C0B422A0 /* FIRHeartbeatLogger.h */, - D0A20F94BAC0F3868916549EF7807042 /* FIRInstallations.h */, - 80FD0F0830832A49BBFE269D8A0848E1 /* FIRInstallations.m */, - BF4E19260113E31B01ACC4A40F06CC32 /* FIRInstallationsAPIService.h */, - 4E3AF0B8A81D565A7E4CFA7B9C4B5154 /* FIRInstallationsAPIService.m */, - 76CC76A46ED220FD18DEEF5E13F03F04 /* FIRInstallationsAuthTokenResult.h */, - E60E9F9CA7724A87FB2F40B32C5FF349 /* FIRInstallationsAuthTokenResult.m */, - 0C468EBD52C660B829A9EF5CA0D838CD /* FIRInstallationsAuthTokenResultInternal.h */, - C0FDE3CA87B3E93E97F2DB41CA742521 /* FIRInstallationsBackoffController.h */, - 62965629485AC3CF2814EC22328196BD /* FIRInstallationsBackoffController.m */, - 1789C906329962E5457BC43ADCAB742A /* FIRInstallationsErrors.h */, - E2EAA97E201B165642B004876504B27A /* FIRInstallationsErrorUtil.h */, - 9C74BF65952CA34C7E7E7CE246246DDE /* FIRInstallationsErrorUtil.m */, - E750A7087DBD3C4BACD13CFF8ED23007 /* FIRInstallationsHTTPError.h */, - 82C724D20EAC54F77E63A4B052CF0253 /* FIRInstallationsHTTPError.m */, - BE6574F64FA1EA3700CF64D22C778856 /* FIRInstallationsIDController.h */, - DCF101A454E3B6E2A06629217D2236D8 /* FIRInstallationsIDController.m */, - 0D1F27E8DDEE1C92CB890B2A34DA28DF /* FIRInstallationsIIDStore.h */, - 8F9BD032C6101EBB566A7C72079A9F6E /* FIRInstallationsIIDStore.m */, - F7FC3DF3EC50F2594E30DE7CD391DC34 /* FIRInstallationsIIDTokenStore.h */, - 9710C155F41476AE899A9061EAEEA7E2 /* FIRInstallationsIIDTokenStore.m */, - EF9D8ACBD90B202ED7671AED491D5F28 /* FIRInstallationsItem.h */, - 7707BD7F05AEAD109DFAD1DC98CC9229 /* FIRInstallationsItem.m */, - C3BA0948AE51327AA64A49BFFC847D66 /* FIRInstallationsItem+RegisterInstallationAPI.h */, - 8689BBFFCE916282306018B8C16C73A4 /* FIRInstallationsItem+RegisterInstallationAPI.m */, - 62E9A3917CEA0826634BC756095B0CED /* FIRInstallationsLogger.h */, - A29A933877C4A42745B22A0407B169CF /* FIRInstallationsLogger.m */, - 080544185156D8EFB4F8B2735F21B295 /* FIRInstallationsSingleOperationPromiseCache.h */, - B4FC1CAC1404126C258F956D45F9CCC6 /* FIRInstallationsSingleOperationPromiseCache.m */, - BF930FF66C57169A442D8B8AE1758951 /* FIRInstallationsStatus.h */, - 374E98AEF6664423828FD8464896DD0C /* FIRInstallationsStore.h */, - 2311834C46257E5B983935E8AF97B346 /* FIRInstallationsStore.m */, - F12B154BCE2F829B35E14B1572A6A11B /* FIRInstallationsStoredAuthToken.h */, - 41D24BF5A5CF5980FC9E5A5AAB880EA9 /* FIRInstallationsStoredAuthToken.m */, - BE60272E11ADB724C93010B2B4936F82 /* FIRInstallationsStoredItem.h */, - 676E1BBA57754C7536CA90B5739F2021 /* FIRInstallationsStoredItem.m */, - 9B9096FD1A4F1C96E2829FA42428F04D /* FIRLibrary.h */, - FF7F0ED12041FA1C08C401A7D0DD29A1 /* FIRLogger.h */, - 96C7517DF2173BCDB7405055A95FA8E7 /* Resources */, - 4E613DC09C39D9B78147F2F30A4CD5F5 /* Support Files */, - ); - name = FirebaseInstallations; - path = FirebaseInstallations; - sourceTree = ""; - }; - 590599D8E0DB9BEC05AC05031BF54279 /* Pods-Tests-SourcePointMetaAppUITests */ = { - isa = PBXGroup; - children = ( - 14A475CA99F08B3863C3A7BD25B54750 /* Pods-Tests-SourcePointMetaAppUITests.modulemap */, - 3826A2DF56DF42D8FE85E480068DB1CA /* Pods-Tests-SourcePointMetaAppUITests-acknowledgements.markdown */, - 72E1118582C658FBC578564882E082E5 /* Pods-Tests-SourcePointMetaAppUITests-acknowledgements.plist */, - 6526F67316636BAA3D3F8C518F0864BF /* Pods-Tests-SourcePointMetaAppUITests-dummy.m */, - 811DBEF851FD2262E20E4FD6A0478DFF /* Pods-Tests-SourcePointMetaAppUITests-Info.plist */, - 566DC6D20B0F5F351EB9C44333DFC8B7 /* Pods-Tests-SourcePointMetaAppUITests-resources.sh */, - 49550D844E07013FA3B4314D5FFDDFD2 /* Pods-Tests-SourcePointMetaAppUITests-umbrella.h */, - 27F52904F8E2C67669D2B25113119F8C /* Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig */, - 3AB123675C504DBA426F7267B79D3ACD /* Pods-Tests-SourcePointMetaAppUITests.release.xcconfig */, - ); - name = "Pods-Tests-SourcePointMetaAppUITests"; - path = "Target Support Files/Pods-Tests-SourcePointMetaAppUITests"; - sourceTree = ""; - }; - 5A57AF3A082A2E95453F373286BA9E95 /* FirebaseAnalytics */ = { + 576973B5622BAA25C096D24CA45A68D0 /* Support Files */ = { isa = PBXGroup; children = ( - 369243027836E4EC9DA0DEEC9F6D277B /* AdIdSupport */, - 36A5456068B47948179B9B259C57591C /* Support Files */, + FCBBE1E4393FA72336B9E5D427A7C654 /* Quick-iOS.modulemap */, + 0A84ED188AE9D9360213A34BABA41E5F /* Quick-iOS-dummy.m */, + 4FF57620216205DA4788783F34D8BA0F /* Quick-iOS-Info.plist */, + AB3CECF6573B851E4EB6D183408E0E11 /* Quick-iOS-prefix.pch */, + C1D5825FE9414179562E255A3A503F29 /* Quick-iOS-umbrella.h */, + 53BCCF0731509F7CF340D2763034DFD5 /* Quick-iOS.debug.xcconfig */, + EB79275C499218CB1DBD03A24EAE9C04 /* Quick-iOS.release.xcconfig */, + C78C12C555DBA32B65B55FCB7B7BB282 /* Quick-tvOS.modulemap */, + D83242959F1092E99F2EA14C32C81CAF /* Quick-tvOS-dummy.m */, + 12E16585AABAF4CF443A2D047A873BB3 /* Quick-tvOS-Info.plist */, + 1F3CE490844E9112C095B66E7A737CF4 /* Quick-tvOS-prefix.pch */, + DEBF8915560F7B496A8793AE2D5C3EED /* Quick-tvOS-umbrella.h */, + F5FF509FBD88B953E54C764F9C69301D /* Quick-tvOS.debug.xcconfig */, + 367F0B37BA4F6AC11F3828F7FF5FCB69 /* Quick-tvOS.release.xcconfig */, ); - name = FirebaseAnalytics; - path = FirebaseAnalytics; + name = "Support Files"; + path = "../Target Support Files/Quick-iOS"; sourceTree = ""; }; 5C8715D76281D0575A7802E59ECC7A62 /* Consents */ = { @@ -4411,22 +3580,6 @@ path = ConsentViewController/Classes/Consents; sourceTree = ""; }; - 5D00C196FC7E8A6DEA529DA07FD40B84 /* Support Files */ = { - isa = PBXGroup; - children = ( - B54E6D465C609652566C8D907BE245FC /* IQKeyboardManagerSwift.modulemap */, - 2ADBB2CD10893D2F7B56CAC45C2BC96A /* IQKeyboardManagerSwift-dummy.m */, - 979E2831984CEF3CD1981DFB1DAFFB79 /* IQKeyboardManagerSwift-Info.plist */, - 70D58BFE0C7816707CA6F1007755392E /* IQKeyboardManagerSwift-prefix.pch */, - 6FB1C98E910F1E6D0DACA28CF05FA08E /* IQKeyboardManagerSwift-umbrella.h */, - 2BA16E167D6EF79C689CE7ECBC63430C /* IQKeyboardManagerSwift.debug.xcconfig */, - 72C7BE65FE543570C043A81113E9833F /* IQKeyboardManagerSwift.release.xcconfig */, - 554E73FAC9498CC927F625583063183E /* ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardManagerSwift"; - sourceTree = ""; - }; 5D199CA79328798A9CC193A612BC5CAC /* tvOS */ = { isa = PBXGroup; children = ( @@ -4435,51 +3588,6 @@ name = tvOS; sourceTree = ""; }; - 5D66C6743C9B54D8F6D497CB16FFC607 /* FirebaseCore */ = { - isa = PBXGroup; - children = ( - AAC3007A68D81AA5A7DD2C0D79C5DA30 /* FIRAnalyticsConfiguration.h */, - E0043707CF07D44F9220C7CF087E2D95 /* FIRAnalyticsConfiguration.m */, - 2AB648CCEE84EE032BC3748305CA25FA /* FIRApp.h */, - 9203BA4D6A6B272DBF889E011390B373 /* FIRApp.m */, - 291EEE38749CE6E0C73E407A8D0EB77E /* FIRAppInternal.h */, - 0EDFC6CE0261D0B8565F3190CEE48BC0 /* FIRBundleUtil.h */, - B1C3C5D363C62E3B2674821C53520683 /* FIRBundleUtil.m */, - E5F243977118F9FF7014EFBD618CBCBD /* FIRComponent.h */, - 1EB1E29251A4E8016DF94D588688631D /* FIRComponent.m */, - 32266AE7F761B56C2F69BA2BE77054A0 /* FIRComponentContainer.h */, - E78C616233D5D9825EB073523F0DC62C /* FIRComponentContainer.m */, - A5B85C33CEAEF1D6C35FD328C4D76F4F /* FIRComponentContainerInternal.h */, - 7408933D9B881924358ABEB56C6EB596 /* FIRComponentType.h */, - 8551B96649DC518FEB10BEB47FFC4585 /* FIRComponentType.m */, - A6FFF671D060417A9CF24E8B6B67ADB7 /* FIRConfiguration.h */, - AA4F27E44DABBCD644F5EAFC786B157F /* FIRConfiguration.m */, - 9DC8945AB452F2860FCC5CBB94324624 /* FIRConfigurationInternal.h */, - FCC4D7BA5D8ACEC8567D676494521B19 /* FirebaseCore.h */, - C86E7B7B7BB35A919A914A174E125A7A /* FirebaseCoreInternal.h */, - D03736E44507497FC9B090CBB6B354E3 /* FIRFirebaseUserAgent.h */, - 81333C8E5279606026C2964759B6A72B /* FIRFirebaseUserAgent.m */, - 9A627BAB9445B7F348964DCEC0316670 /* FIRHeartbeatLogger.h */, - 8AB47EF0B0C5748A52E14C8D16EB9DDC /* FIRHeartbeatLogger.m */, - 6715E66DF7F9EDC350EE746E15E38141 /* FIRLibrary.h */, - E18ABD7A97D4F0D64B0819C191C35E84 /* FIRLogger.h */, - 983369F50E07F986B7B75FE69228C2EC /* FIRLogger.m */, - B1BEE24BA36FDA58A106C56809C0610C /* FIRLoggerLevel.h */, - A188CBEBC676609F35A63D53BA78950B /* FIROptions.h */, - E9434B13D13532D911BB386151B42943 /* FIROptions.m */, - D9587A31540199F76B2B124FE2554006 /* FIROptionsInternal.h */, - 50EAF75774A8D0D95B92DB43E3CDD6AE /* FIRTimestamp.h */, - 3E2B729B4FD4E54F4503424700745941 /* FIRTimestamp.m */, - 2745E6AA21573E8CFA72AE7E87509F44 /* FIRTimestampInternal.h */, - 998AE9A12896605E4272EBD27415F0DF /* FIRVersion.h */, - 8E74DCAC75D8463E2BFEEDA549A0D38F /* FIRVersion.m */, - 64815C2A0353F7ACB27C0BFA2F9CF11D /* Resources */, - 60C79D356CFD0695DA43ADB306A92F9D /* Support Files */, - ); - name = FirebaseCore; - path = FirebaseCore; - sourceTree = ""; - }; 5D7EFB261FC634402731AF33A9B39683 /* Common */ = { isa = PBXGroup; children = ( @@ -4511,135 +3619,145 @@ path = Data; sourceTree = ""; }; - 604E1FC04342F8E68EE46D9ACC571770 /* IQKeyboardNotification */ = { + 625E8983546A1B9308C3BD9A42113BE3 /* Support Files */ = { isa = PBXGroup; children = ( - C7C2329C3E94A50D0854E8A86D2E0C27 /* IQKeyboardInfo.swift */, - 2CE43E3E5A772279ABD0387A237DCDE0 /* IQKeyboardNotification.swift */, - AFA350F651E3623D475234566E3EA0F7 /* Resources */, - 021575100EBA18055CADF4DC909E6662 /* Support Files */, + D18C0CC2FE7220451E248FFC07FF119A /* GoogleAppMeasurement-xcframeworks.sh */, + BEF1D61F07EF0C0AB2768503E58792D6 /* GoogleAppMeasurement.debug.xcconfig */, + 415C4BB5DAE6607D35A2E9687629F147 /* GoogleAppMeasurement.release.xcconfig */, ); - name = IQKeyboardNotification; - path = IQKeyboardNotification; + name = "Support Files"; + path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; - 60C79D356CFD0695DA43ADB306A92F9D /* Support Files */ = { + 64BE637DB43F61E84EF95ACE293F7F6C /* Support Files */ = { isa = PBXGroup; children = ( - D760B0C71322AB916F76ED1A91FFAACB /* FirebaseCore.modulemap */, - F6C453108D1D255C879A6DF690CA1097 /* FirebaseCore-dummy.m */, - 07E0AD456E2983D293E4F77517365BB4 /* FirebaseCore-Info.plist */, - 72D4405C2F944B049C66D49781005AD6 /* FirebaseCore-umbrella.h */, - A0CA2E223EE61D297A117842655ACF18 /* FirebaseCore.debug.xcconfig */, - 0ECA7FAF11E033462E93DA53335F86BB /* FirebaseCore.release.xcconfig */, - B32B6C183B012436F99263A2CAB137F1 /* ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist */, + DDF59D6FA714C844C8EC0838634D62C3 /* FirebaseCoreInternal.modulemap */, + 53C5E3DDD7DDA5B0CD1064A160144E2F /* FirebaseCoreInternal-dummy.m */, + D50AF45438D95797AE19B1E06FAF46E6 /* FirebaseCoreInternal-Info.plist */, + 2161E148A94DD5E001D3DE84FC48C59B /* FirebaseCoreInternal-prefix.pch */, + 165938F62D31D350A961EE4E77FFC1A2 /* FirebaseCoreInternal-umbrella.h */, + C53DBBA1DC9C863531606F0AB932A772 /* FirebaseCoreInternal.debug.xcconfig */, + 6B25EA86E763C785603219CE4563ED76 /* FirebaseCoreInternal.release.xcconfig */, + 55A5D4083D8DBB3CCE07AEC45843B7A7 /* ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/FirebaseCore"; + path = "../Target Support Files/FirebaseCoreInternal"; sourceTree = ""; }; - 61050816E063812DD7861EDB337FE984 /* Resources */ = { + 656150E1A379CF55D8AAF482124D1799 /* GoogleConsentMode */ = { isa = PBXGroup; children = ( - 8B53BBE2A0D25B5C8D58832F4D0ACE1F /* PrivacyInfo.xcprivacy */, + 00BA232A188CE8CB8BE0617C8DD20B4C /* SPGCMData.swift */, ); - name = Resources; + name = GoogleConsentMode; + path = GoogleConsentMode; sourceTree = ""; }; - 64815C2A0353F7ACB27C0BFA2F9CF11D /* Resources */ = { + 67137078160C226E615712212F0E8231 /* SwiftLint */ = { isa = PBXGroup; children = ( - 6AF8199B31DC2D2E5AE8824F52F6D311 /* PrivacyInfo.xcprivacy */, + BC3837EF2578972D6E7D0FBA1287AC2C /* Support Files */, ); - name = Resources; + name = SwiftLint; + path = SwiftLint; sourceTree = ""; }; - 656150E1A379CF55D8AAF482124D1799 /* GoogleConsentMode */ = { + 67A52338A461E0E442B1C961135072B7 /* Pods-TVOSExampleAppUITests */ = { isa = PBXGroup; children = ( - 00BA232A188CE8CB8BE0617C8DD20B4C /* SPGCMData.swift */, + A32FDBB161427B904280A26A67FE7B69 /* Pods-TVOSExampleAppUITests.modulemap */, + 6861750A198D84D3DB0A4CC1D6D29E06 /* Pods-TVOSExampleAppUITests-acknowledgements.markdown */, + 8B7E7307B814D419B581B43C19830E7D /* Pods-TVOSExampleAppUITests-acknowledgements.plist */, + 02B20C61B978171B1DCAF75051241949 /* Pods-TVOSExampleAppUITests-dummy.m */, + F01BF3CD43E2CFBD57230C09C9A17E79 /* Pods-TVOSExampleAppUITests-Info.plist */, + 7FF3A4F79F1A916C9F666486DBDF4784 /* Pods-TVOSExampleAppUITests-resources.sh */, + C4EEBEF62B306E80B295B20921DE6CB7 /* Pods-TVOSExampleAppUITests-umbrella.h */, + 3FC642299C8549A1C8CE4D110E7882CE /* Pods-TVOSExampleAppUITests.debug.xcconfig */, + 834E5228A2C3747EDD8DF0071E59F403 /* Pods-TVOSExampleAppUITests.release.xcconfig */, ); - name = GoogleConsentMode; - path = GoogleConsentMode; + name = "Pods-TVOSExampleAppUITests"; + path = "Target Support Files/Pods-TVOSExampleAppUITests"; sourceTree = ""; }; - 65B0EFF27DF57C4C1A31FBC51044AE01 /* NSData+zlib */ = { + 6D47C9E55E5900CFF93CB87D0F55FD7F /* Pods-Tests-NativeMessageExampleUITests */ = { isa = PBXGroup; children = ( - EE54C9146230FA28D06FA1D85664BB37 /* GULNSData+zlib.h */, - 7D9F63656FB06F22F2595187B0848068 /* GULNSData+zlib.m */, + 58785B1FBB704D46B0A37BD1962EB421 /* Pods-Tests-NativeMessageExampleUITests.modulemap */, + BC914464C5ED1FDF17767C9CA6FE3BFA /* Pods-Tests-NativeMessageExampleUITests-acknowledgements.markdown */, + 5C32F6686B90756776B4F02AE6AD2CFB /* Pods-Tests-NativeMessageExampleUITests-acknowledgements.plist */, + 2E318DA7978616F50FA62B9D3A7B922F /* Pods-Tests-NativeMessageExampleUITests-dummy.m */, + FA5ACA0DADFFCD0AC6C4B7718FB81B74 /* Pods-Tests-NativeMessageExampleUITests-Info.plist */, + F3B493D0637A76D11CAF5E42F5A25D6E /* Pods-Tests-NativeMessageExampleUITests-resources.sh */, + 12F67E88CF7BC55AF98D085113C07958 /* Pods-Tests-NativeMessageExampleUITests-umbrella.h */, + 9F461C95909B4A46AA6D1E7A464B3BE0 /* Pods-Tests-NativeMessageExampleUITests.debug.xcconfig */, + A5D06178309AA95C57E8B9B24E7D9D2C /* Pods-Tests-NativeMessageExampleUITests.release.xcconfig */, ); - name = "NSData+zlib"; + name = "Pods-Tests-NativeMessageExampleUITests"; + path = "Target Support Files/Pods-Tests-NativeMessageExampleUITests"; sourceTree = ""; }; - 66797DC6A5554AD8015245801D386EC2 /* FirebaseCoreInternal */ = { + 6E93C0FAD99700BCEA600B9B0C5C5DFA /* AppDelegateSwizzler */ = { isa = PBXGroup; children = ( - CA8395F2E2F83FAF9D50EF21F95C710A /* _ObjC_HeartbeatController.swift */, - 8A5A90AC4FB990424A1D8841F30954D2 /* _ObjC_HeartbeatsPayload.swift */, - 6958407BC993A53D89D27E4AA038B74E /* AtomicBox.swift */, - 6048C9C73410A27C6B4FEACDFD819DF9 /* Heartbeat.swift */, - 54A470A44EDE551DA0AFA256D2C5D4FF /* HeartbeatController.swift */, - E32F4479E29DABAF7BF872B9AAAF4A6C /* HeartbeatLoggingTestUtils.swift */, - 9098FE4D7D58067AE284C8C5FFAC0C68 /* HeartbeatsBundle.swift */, - C8B93BF6FE9F9C181C11A80BA91A4930 /* HeartbeatsPayload.swift */, - 7C776DCB2265A3C66F6F085B02E6B99C /* HeartbeatStorage.swift */, - 135F15712F2E26302AF7A1B3321C1933 /* RingBuffer.swift */, - 56E21CE4558584557CD31CE1F28B1AC1 /* Storage.swift */, - 68D160079C28255B1CFB259E7055E78C /* StorageFactory.swift */, - D3626ADBB3B7D16166250CB83C71FD62 /* WeakContainer.swift */, - 40D1E9AA7AF11058D10FD2FDB4D7D1C3 /* Resources */, - 19D80967BF8D60AF17C2DE7AC7F1C1DD /* Support Files */, + A8D67D2C3FAFFE22ADCB1544D4F42E24 /* GULAppDelegateSwizzler.h */, + 07C24E523543E182C93A229FB8B1C35D /* GULAppDelegateSwizzler.m */, + 674377EB7069465775ED50BAA4102EAF /* GULAppDelegateSwizzler_Private.h */, + 843F089C220B0DDFACC5EE067C0C2779 /* GULApplication.h */, + E9AF1DD8800EC7667D9FEE526017EBA6 /* GULLoggerCodes.h */, + 8911D20B2CAA8F3A5BD8EFC39DABFF36 /* GULSceneDelegateSwizzler.h */, + 71483518E5968E4B02F21A14E2E29860 /* GULSceneDelegateSwizzler.m */, + 18C6007DB93E43DEB892827FF8ED2389 /* GULSceneDelegateSwizzler_Private.h */, ); - name = FirebaseCoreInternal; - path = FirebaseCoreInternal; + name = AppDelegateSwizzler; sourceTree = ""; }; - 6845EC220D12C598485618C2CBF24068 /* Support Files */ = { + 6F68ADAF33BC8F8448B2882A0A5E9216 /* CwlCatchException */ = { isa = PBXGroup; children = ( - EA79E967714FB4D90542038839E9CB94 /* PromisesObjC.modulemap */, - 4C60DC2B63ACF15C0A2D4E186A8D9450 /* PromisesObjC-dummy.m */, - D192A166EAE8C2745ED41DCC1E40295A /* PromisesObjC-Info.plist */, - ADC01D3509458F80B420EA447786BB2C /* PromisesObjC-umbrella.h */, - CEEF2772E3AD8AFE9DAE3F2083371D77 /* PromisesObjC.debug.xcconfig */, - E4269C979DF800C248CEE4EF6E553E03 /* PromisesObjC.release.xcconfig */, - 11B7F14A38E0CD1E7F2BDF3415BA40F3 /* ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist */, + B36BCE928386EB3470BF61C8DB7B3F31 /* CwlCatchException.swift */, + BFEE40B740117810D030B77B17BED5BB /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/PromisesObjC"; + name = CwlCatchException; + path = CwlCatchException; sourceTree = ""; }; - 6AF00912D0A719EB985650DBD635E4D2 /* encode */ = { + 70B8F6BA51682425D42C1002C4F2CF69 /* Resources */ = { isa = PBXGroup; children = ( + CE47FFAFB9C6F6775EDA79A36AC2D3B6 /* PrivacyInfo.xcprivacy */, ); - name = encode; + name = Resources; sourceTree = ""; }; - 6B732B375ED57CEFA5B2F9E083724A68 /* decode */ = { + 72561DACDBEA2EB68FB784932DC195A2 /* GoogleUtilities */ = { isa = PBXGroup; children = ( + 6E93C0FAD99700BCEA600B9B0C5C5DFA /* AppDelegateSwizzler */, + 91C40991F30728EC15DCAC1CAD8F375F /* Environment */, + F95F3CD601D51C7F9D3D96796A1C02B1 /* Logger */, + DEF2AE730C18EB525004A13880AB49C5 /* MethodSwizzler */, + F366EF9CC83096FA74379B16CAA08BD9 /* Network */, + 7D83CCE7FED6C03A693CF9B3AFE1B1A8 /* NSData+zlib */, + C98BD15F89688A7D6EB1B8290FC6A719 /* Privacy */, + 1D1954054AE72C19086CA0AB090AD9EA /* Reachability */, + AA9A8A72123C7EC3741A6B666E3E9575 /* Support Files */, + F6C9E7F67E582A90D97D242B98AC0D1A /* UserDefaults */, ); - name = decode; + name = GoogleUtilities; + path = GoogleUtilities; sourceTree = ""; }; - 7392291FF241C3FAAF7EF065186E4ABB /* GoogleUtilities */ = { + 75C8E2847D3B7105A31B844F3792D4E0 /* CwlCatchExceptionSupport */ = { isa = PBXGroup; children = ( - F618B83A6553A10D06CD6345535C8E3E /* AppDelegateSwizzler */, - DCC0B2F8F8097FEA3466BFC790B59E32 /* Environment */, - CFFDD80D32B8224492FCD6A63AC45193 /* Logger */, - A13428F8354C61C8488326687C89A569 /* MethodSwizzler */, - C63018EC5D7A3DE886A6A3F46A32507A /* Network */, - 65B0EFF27DF57C4C1A31FBC51044AE01 /* NSData+zlib */, - 484E1F6477F672CA693D5EAABDA5F284 /* Privacy */, - 792F07B4E33FCE68E4B51839A339DEBB /* Reachability */, - BC5276800188993D24CF15610537ABDD /* Support Files */, - 8F6E1A5C14799048645B6C600DC64AB6 /* UserDefaults */, + 58076705F607BB2F4741F98BA11EEA4D /* CwlCatchException.h */, + 2ED47E86C7D30719C58666B0B3445BA7 /* CwlCatchException.m */, + AC2E65E285F95561DBB128D93113322D /* Support Files */, ); - name = GoogleUtilities; - path = GoogleUtilities; + name = CwlCatchExceptionSupport; + path = CwlCatchExceptionSupport; sourceTree = ""; }; 760EEE4E9E58DDDC58B7FCABA4651753 /* javascript */ = { @@ -4653,175 +3771,104 @@ path = ConsentViewController/Assets/javascript; sourceTree = ""; }; - 792F07B4E33FCE68E4B51839A339DEBB /* Reachability */ = { - isa = PBXGroup; - children = ( - 405145A208D170668343E2B587091B94 /* GULReachabilityChecker.h */, - 30F24B2C15D59F40D98C16A0F0F912AE /* GULReachabilityChecker.m */, - CBF89707947635E807790F88B0A8BD10 /* GULReachabilityChecker+Internal.h */, - 20AD96D8D079F854B147064F9599EAC6 /* GULReachabilityMessageCode.h */, - ); - name = Reachability; - sourceTree = ""; - }; - 79889954ED35204ED773E3F4F90394D9 /* Pods-TVOSExampleAppUITests */ = { + 7A531243EACFC31D5A46751FC7AEEC37 /* Pods-Examples-AuthExample */ = { isa = PBXGroup; children = ( - 57F6A38A715E840F139F01FC9CDAA272 /* Pods-TVOSExampleAppUITests.modulemap */, - 4786F1528AEAFE22B0990AE56086BF38 /* Pods-TVOSExampleAppUITests-acknowledgements.markdown */, - D68B5CCB4312B3C7ABA7A6A77426DA41 /* Pods-TVOSExampleAppUITests-acknowledgements.plist */, - 3D1BB9353EDDE03C354A5641DD350250 /* Pods-TVOSExampleAppUITests-dummy.m */, - 57C8639AECBE3039B06E1D4F4950AF83 /* Pods-TVOSExampleAppUITests-Info.plist */, - 7CA189AE1D392490F0D8DE7E8A2DA829 /* Pods-TVOSExampleAppUITests-resources.sh */, - 2A64CC7844FE6E230D1CFD0D3797B19C /* Pods-TVOSExampleAppUITests-umbrella.h */, - 7B39D983F41A2F4973CCFC6C189B8AD3 /* Pods-TVOSExampleAppUITests.debug.xcconfig */, - CF2874772D1FCD934DCD53213E94B8D6 /* Pods-TVOSExampleAppUITests.release.xcconfig */, + 6BE4CD616643D0E5833455E97C4AC2F5 /* Pods-Examples-AuthExample.modulemap */, + BC7F7A76B3310BA85822EE10D3E3109C /* Pods-Examples-AuthExample-acknowledgements.markdown */, + B45A298ADF7E352EAA440F8905BCF90C /* Pods-Examples-AuthExample-acknowledgements.plist */, + 03AC08D6BD3BFE3ADF9A6C5E640BAA21 /* Pods-Examples-AuthExample-dummy.m */, + 6018EA50182C45CA561E789B98841942 /* Pods-Examples-AuthExample-Info.plist */, + B2398311DBB7D7D746E561991F158143 /* Pods-Examples-AuthExample-resources.sh */, + 3F50CDEE330B16E77A1C15B13074A67F /* Pods-Examples-AuthExample-umbrella.h */, + D3718492951C5A3E540D015C422E4101 /* Pods-Examples-AuthExample.debug.xcconfig */, + 75EB5850E036D875B645903BA7A6A854 /* Pods-Examples-AuthExample.release.xcconfig */, ); - name = "Pods-TVOSExampleAppUITests"; - path = "Target Support Files/Pods-TVOSExampleAppUITests"; + name = "Pods-Examples-AuthExample"; + path = "Target Support Files/Pods-Examples-AuthExample"; sourceTree = ""; }; - 7BC28D7E71C6754BBEEDD4EEF73DF4CB /* Nimble */ = { + 7C0297FD392CFAF103A37624B597F75B /* CwlMachBadInstructionHandler */ = { isa = PBXGroup; children = ( - 26934FCB04DA419CDDC98A0054B0722A /* AdapterProtocols.swift */, - 7006A5366815E0D1A1AC0BC96AF85400 /* AllPass.swift */, - F62081B5872B4B4CA6605D0C45EC6AA5 /* AssertionDispatcher.swift */, - 0C925C17E276718B3B82E1F218B59371 /* AssertionRecorder.swift */, - AA26FA80CF19C1376665161D157B339A /* AssertionRecorder+Async.swift */, - 9FFDDD271BD34C9D86E1125AE8EADE30 /* AsyncAllPass.swift */, - 32BA42082EECC00B012859960BF28406 /* AsyncAwait.swift */, - 0874D5D0DB5A4E30D92632B7FA3AB3CE /* AsyncExpression.swift */, - 0D7754507C4F4A1D871BB0E2791C1968 /* AsyncMatcher.swift */, - 475D9F18CAAD368552304C5852F05426 /* AsyncTimerSequence.swift */, - C3DE70D4B74186544DE35040F08B1F68 /* BeAKindOf.swift */, - DEC7E2308BBA2F7476024112C8965575 /* BeAnInstanceOf.swift */, - BE7F6B22DDE3192E0442A82C559D5836 /* BeCloseTo.swift */, - 73B841F3C3994F9FB5964CFADC739D15 /* BeEmpty.swift */, - AF2760999E9505C542C43463DA33C683 /* BeginWith.swift */, - DB2C05762A801FB522FBCB138FF1441E /* BeginWithPrefix.swift */, - CE4C5BB8F7EA63BD8D6D7AA25EF08757 /* BeGreaterThan.swift */, - 2C7F93F7CFF13C43FCDDF68AC3D6522C /* BeGreaterThanOrEqualTo.swift */, - 957ECFCEB95A78EED2F84236B2271846 /* BeIdenticalTo.swift */, - AA1ADE3868CD5346F4F2BAA26B8668B3 /* BeLessThan.swift */, - 58C9FAAE4EC65C106EE35B0F9CB1D07F /* BeLessThanOrEqual.swift */, - F5E901D6799A4080D3DA5DE97F41AB72 /* BeLogical.swift */, - FDA0BEEBE00BD74FC0487862440E6BFC /* BeNil.swift */, - CCE82D92BB4A30E93E343AE451E79C32 /* BeResult.swift */, - 18C8FD65ACC0A1178BF37AB4EC3186DB /* BeVoid.swift */, - B0E65EFCCCF70977E03B71E52395AD11 /* BeWithin.swift */, - B07C103C97EA779BB2E3F8418929E9EF /* Contain.swift */, - 5C6E0A6079652131BBD0DBAEEAC0EFAA /* ContainElementSatisfying.swift */, - FD17AB599D447FDD7701ECCA77D1AD28 /* DSL.h */, - A26BBC7E4321F39E52EB7D529A6C5E94 /* DSL.m */, - 51933828D8851062D12D91760880D827 /* DSL.swift */, - E1E7F1F0F821C28473F4A86C41B25AB7 /* DSL+AsyncAwait.swift */, - 4C1D1AC22D8A04C1B881C008DB0F7CC7 /* DSL+Require.swift */, - F1491DC45BF249A59AD8CC59BC57813D /* DSL+Wait.swift */, - 1B143EBC1966C88F868E06AAC74D1677 /* ElementsEqual.swift */, - 7D4924F4ABCA937EF78C6D630F046064 /* EndWith.swift */, - 0D542779C488CF8ED5AD479BF0B8FB1A /* Equal.swift */, - F440B4F75146FD828851926CEEE43163 /* Equal+Tuple.swift */, - 18F6047FB83FFEC12D6F0FE6CE4703E5 /* Equal+TupleArray.swift */, - 5E0FDE098C322191908278E338777DB8 /* Errors.swift */, - 9F6BB2423C69F99EEAC09C7C9E7B6E66 /* Expectation.swift */, - DF194C25B34AEA58DDC39968922E81AC /* ExpectationMessage.swift */, - AEED0B0D8119723149D7E468C5282C0B /* Expression.swift */, - 2B12C2B2013EFCA0F1FEB1D5379405A8 /* FailureMessage.swift */, - 18FC2954F1FB2A2E4820D10D9B873A50 /* HaveCount.swift */, - ED4C44088D195E59E09E786F41DAD355 /* Map.swift */, - 833828B6DA0C15775334C4481526CC58 /* Match.swift */, - 3A27B524BCCE68381BE0D1E3D5FEA7A6 /* Matcher.swift */, - 36F2B7CBA2ADF7578C1336DE88F9EDCA /* MatcherProtocols.swift */, - 7BFD36A5C928AC017F56C1D85904E4BA /* MatchError.swift */, - 77C1460EBE5ED2EA5DA2743DF370336D /* Negation.swift */, - E04746FC82CB76AC1DA809F7843EAF6C /* Nimble.h */, - EA5D8EF50A7F32B84EBC90AF394CB7C8 /* NimbleEnvironment.swift */, - E72C75729C5B0D555147F8E096CDF979 /* NimbleSwiftTestingHandler.swift */, - 54D129B0FF00E96ADA5E985D90AEB12D /* NimbleTimeInterval.swift */, - 29978296061A1207DEE8CAB87764F0DA /* NimbleXCTestHandler.swift */, - 72A3F91679C52A3A821136E6505DD539 /* NMBExceptionCapture.h */, - 87D5ABE9F3D08E0E9D3B6E428A17FA0B /* NMBExceptionCapture.m */, - 8DE8448FA1AE310E2375710837E256E9 /* NMBExpectation.swift */, - 29EAF25F21EE50C142118D7F65D0141E /* NMBStringify.h */, - 050F9B9E655D48CD28778AA2297DA7BB /* NMBStringify.m */, - 3EC6888F5775C185C1CDDABBBDBBA30D /* PollAwait.swift */, - 0227A01D4F0BD28AF391B3A9DB204D03 /* Polling.swift */, - 43244700C4FEBF5415C1C05108E62092 /* Polling+AsyncAwait.swift */, - E93B05AB7F2D74755F556BEFA27ABDB6 /* Polling+Require.swift */, - 46DECD16C4B5D1902DD9C67D4E8B0D99 /* PostNotification.swift */, - 4E616169FBC8240945FC48D592274B4A /* RaisesException.swift */, - 288EEEA8AEE2176ED91869E38426DC17 /* Requirement.swift */, - E28183BA96EE0DB449E61EDB2A843AFE /* SatisfyAllOf.swift */, - 5632689C6FB84E1275F7312AAC7B9057 /* SatisfyAnyOf.swift */, - 6D48730791EE2DDBFAF504114702BBC1 /* SourceLocation.swift */, - 67957B9E77D349FDBA49CD741DA313D2 /* Stringers.swift */, - 9EFDF09D136087E961C24BA4E9EE1CD8 /* ThrowAssertion.swift */, - A1AE3F717FE3E0E66C2B39495FB5A811 /* ThrowError.swift */, - 81DFF5B09AFDDA41E61A9BC5AEDDC6FD /* ToSucceed.swift */, - 83D9F90000E5510FE177292A21D0DB03 /* utils.swift */, - 1131771154A5D4CFBC4918DB50DAFEB2 /* XCTestObservationCenter+Register.m */, - A4B2231032C52860B1DFA3F8CB4F3F67 /* Support Files */, + 16C677CD1015D10A96B8FA6AD1AB6416 /* CwlMachBadInstructionHandler.h */, + 34C34399E24890F70D21E7D034B47D66 /* CwlMachBadInstructionHandler.m */, + 835BCC70DDE2D7D5B4D6EA77DFB13651 /* mach_excServer.c */, + 71F5620491EDEF774D02716DE77B69FC /* mach_excServer.h */, + 2E6D70D20289B4C54E2C4D4C089D7A80 /* Support Files */, ); - name = Nimble; - path = Nimble; + name = CwlMachBadInstructionHandler; + path = CwlMachBadInstructionHandler; sourceTree = ""; }; - 82127B752DF4FC3944F40F4B63242F6C /* Frameworks */ = { + 7D83CCE7FED6C03A693CF9B3AFE1B1A8 /* NSData+zlib */ = { isa = PBXGroup; children = ( - AA30F8B79734070F28F2685338C219C8 /* FirebaseAnalytics.xcframework */, + 1ECE275F580D55BF3195B81188B4C978 /* GULNSData+zlib.h */, + E3DF9797CB7081636075297C5AD03C8F /* GULNSData+zlib.m */, ); - name = Frameworks; + name = "NSData+zlib"; sourceTree = ""; }; - 82EED63E21C43BDE686776AB90EBABD7 /* iOS */ = { + 7DDC879D612993AF99F48D8D509655EB /* Pods-Examples-SourcepointFirebaseDemo */ = { isa = PBXGroup; children = ( - 0ED1B8267B071DB6AB0389823D4B50E9 /* SPWebMessageViewController.swift */, - 617D70F6D92E44183B59218BA5F565AB /* SPWebViewExtensions.swift */, + D6764DB860D448AB09B0EB126443C70C /* Pods-Examples-SourcepointFirebaseDemo.modulemap */, + 87CAA40ECB07946DEE14A5B6351CE5AC /* Pods-Examples-SourcepointFirebaseDemo-acknowledgements.markdown */, + 3B484537A42667D240FE51C500AFD04B /* Pods-Examples-SourcepointFirebaseDemo-acknowledgements.plist */, + 8C5372E3E5742A34B8CB1A8B2D0C6C32 /* Pods-Examples-SourcepointFirebaseDemo-dummy.m */, + 13AFCD582CD7DD92033D3B98E64825E2 /* Pods-Examples-SourcepointFirebaseDemo-Info.plist */, + 828D57D152F7CD50083432B6E7BE9D30 /* Pods-Examples-SourcepointFirebaseDemo-resources.sh */, + 3B47AB36861159884CBB56FCE30C6F4C /* Pods-Examples-SourcepointFirebaseDemo-umbrella.h */, + CCF3F09B4E16EEF6FD42841B31F72458 /* Pods-Examples-SourcepointFirebaseDemo.debug.xcconfig */, + B7D57265727F12753BFA0A851204AE57 /* Pods-Examples-SourcepointFirebaseDemo.release.xcconfig */, ); - name = iOS; - path = iOS; + name = "Pods-Examples-SourcepointFirebaseDemo"; + path = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo"; sourceTree = ""; }; - 84E7A678BE6FDED3A06303ABE8B034E6 /* Resources */ = { + 7E3103A6E30865EACDAF36683466F1D3 /* Pods-Examples-NativeMessageExample */ = { isa = PBXGroup; children = ( - B5139508753F2B17003FEED9C0AF3641 /* PrivacyInfo.xcprivacy */, + 709C4FA6B5D55768897DFA8D968B4F93 /* Pods-Examples-NativeMessageExample.modulemap */, + ACCB281B36D2F76B33BFBB84971D74CD /* Pods-Examples-NativeMessageExample-acknowledgements.markdown */, + A12BB83023A3CCEA01B3F8BC16337515 /* Pods-Examples-NativeMessageExample-acknowledgements.plist */, + 1B2D93B546613CD1183082319D60D0B1 /* Pods-Examples-NativeMessageExample-dummy.m */, + A54355672029201D4EA8CFADBF2AF25D /* Pods-Examples-NativeMessageExample-Info.plist */, + 657D9E02B58C822009DAB46B470667C3 /* Pods-Examples-NativeMessageExample-resources.sh */, + E1950C06292EF70F37F928D0221C45BC /* Pods-Examples-NativeMessageExample-umbrella.h */, + 4E9C5FB6628EC9A3D3E2F9BBC5760F25 /* Pods-Examples-NativeMessageExample.debug.xcconfig */, + 60CBFED711348A6A95F7BE9194E67B4A /* Pods-Examples-NativeMessageExample.release.xcconfig */, ); - name = Resources; + name = "Pods-Examples-NativeMessageExample"; + path = "Target Support Files/Pods-Examples-NativeMessageExample"; sourceTree = ""; }; - 85704370643F51B0C3B7A03351A362AC /* Support Files */ = { + 82EED63E21C43BDE686776AB90EBABD7 /* iOS */ = { isa = PBXGroup; children = ( - 2CFE12B6F3C7C740E68CAE4F9245E695 /* Quick-iOS.modulemap */, - A85E92CAEEEDC4C630593857225DA065 /* Quick-iOS-dummy.m */, - ABABF808BCAB1D58E18BC75EC35A5A1F /* Quick-iOS-Info.plist */, - E0918FFEBF892D4F27789FC8F1E3DA1D /* Quick-iOS-prefix.pch */, - C27FE6E8099EFAE616C0117F0A94461C /* Quick-iOS-umbrella.h */, - A94D32980FE8EEFD4BF3C5D8AB171AFC /* Quick-iOS.debug.xcconfig */, - B3A3D24201B2F1A39E6787ECA7D65505 /* Quick-iOS.release.xcconfig */, - 2266B6960BA5D00602AED11707DDCE85 /* Quick-tvOS.modulemap */, - A109023FCA68FDE015141DD67DC29755 /* Quick-tvOS-dummy.m */, - 521BC1A6E8948B3E5D58D3B8625D825E /* Quick-tvOS-Info.plist */, - F22C32C8E37A2E81C19E81D115A7CD82 /* Quick-tvOS-prefix.pch */, - 969FE37988516D4F7FCD8175873C3FD7 /* Quick-tvOS-umbrella.h */, - C61F8B32B14E4029D7A1CA2DE208A5A5 /* Quick-tvOS.debug.xcconfig */, - A70A5FFB77406837B331831AFA067EA9 /* Quick-tvOS.release.xcconfig */, + 0ED1B8267B071DB6AB0389823D4B50E9 /* SPWebMessageViewController.swift */, + 617D70F6D92E44183B59218BA5F565AB /* SPWebViewExtensions.swift */, ); - name = "Support Files"; - path = "../Target Support Files/Quick-iOS"; + name = iOS; + path = iOS; sourceTree = ""; }; - 85AC22B4433B3CE027E3E08658904B56 /* IQKeyboardToolbarManager */ = { + 83989A70222AC186DF420941E12B105C /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests */ = { isa = PBXGroup; children = ( - F5C59B4ED524ABF6D2C2622A2C3CF9CE /* IQKeyboardManager+ToolbarManager.swift */, - C9293F38470C63C2962F16E019C59547 /* IQKeyboardManager+ToolbarManagerDeprecated.swift */, + 8FA1FB42AB7E9F539B082431B47D5234 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.modulemap */, + 96FFC679363B7DC6A7AFBCB09D7E8128 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.markdown */, + DCF5B1B54F9B06E847A0B60092820090 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-acknowledgements.plist */, + FAD532F54DED27FD9BD341DB8CA8F1A3 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-dummy.m */, + FCD3694BB47B79F76D34B73567A3700F /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-Info.plist */, + 9F048C1EFE55979081AB964ED51CDD3C /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-resources.sh */, + BE2CC69216CFE42540DBE68FCA0B4ED2 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h */, + 0CBA7F63620C7799E7A2100BEDC5443D /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.debug.xcconfig */, + C201D0FBA20B4E61D6C6EB4E437F2437 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.release.xcconfig */, ); - name = IQKeyboardToolbarManager; + name = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests"; + path = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests"; sourceTree = ""; }; 8910DE18F4068EE7F2F8E36E5101A369 /* Frameworks */ = { @@ -4833,65 +3880,52 @@ name = Frameworks; sourceTree = ""; }; - 8C0CC5D75F0C94D2B7BE7E0FD0A11336 /* Appearance */ = { - isa = PBXGroup; - children = ( - 35C4A9F0DF15C70F4B42FA46D3195906 /* IQKeyboardAppearanceConfiguration.swift */, - B2B165934E9839F38ACCAC3155B9E1AD /* IQKeyboardAppearanceManager.swift */, - 284792F06F89CA62D3E6123581FBA927 /* IQKeyboardAppearanceManager+Internal.swift */, - 6B9ACFD5AA593AE2F9E646FAD249CCAA /* IQKeyboardManager+Appearance.swift */, - 1A76BD3D2B474131A34604EF2865963E /* IQKeyboardManager+Appearance_Deprecated.swift */, - ); - name = Appearance; - sourceTree = ""; - }; - 8C1D547DF185348D67B214235FE76FE5 /* Support Files */ = { - isa = PBXGroup; - children = ( - B6A755999186782F65061F41046B284E /* CwlCatchExceptionSupport.modulemap */, - AE99FBCE8B8C83A93A6C33D9D5723514 /* CwlCatchExceptionSupport-dummy.m */, - CFAC1713790B2F45ED9DFC538B41EAF1 /* CwlCatchExceptionSupport-Info.plist */, - 565B305791378E3B5B9A4BC25591AFD5 /* CwlCatchExceptionSupport-prefix.pch */, - 11296EDFC129EA0521F51D9161E5136D /* CwlCatchExceptionSupport-umbrella.h */, - CF03731063A8BCF7639F74A1880DBAEF /* CwlCatchExceptionSupport.debug.xcconfig */, - D40DAEECEA07B34CD1EA6C66DCEB2C6C /* CwlCatchExceptionSupport.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/CwlCatchExceptionSupport"; - sourceTree = ""; - }; - 8E72C09569BCEFDC73BEB7C218395BC6 /* Pods-Examples-SourcepointFirebaseDemo */ = { + 8D3915A84A5D97F0482D34C3171C18F9 /* CwlPreconditionTesting */ = { isa = PBXGroup; children = ( - 95BACE7612A4E8F4F0567A9AA60CA729 /* Pods-Examples-SourcepointFirebaseDemo.modulemap */, - 774A94659F0BAD34ABD2D60D339BB3CB /* Pods-Examples-SourcepointFirebaseDemo-acknowledgements.markdown */, - EA9FBE05AF82518F98FDD4F55F6BE908 /* Pods-Examples-SourcepointFirebaseDemo-acknowledgements.plist */, - EDCE60703B147513DEAC7E5E96A65154 /* Pods-Examples-SourcepointFirebaseDemo-dummy.m */, - 9C5C917A9D7FC2BFF33532D4FA9D3EBE /* Pods-Examples-SourcepointFirebaseDemo-Info.plist */, - 9BA34AE937DE44415845F1FA58BA63A1 /* Pods-Examples-SourcepointFirebaseDemo-resources.sh */, - F61D4ECE7209D921C3706D389D3DD21B /* Pods-Examples-SourcepointFirebaseDemo-umbrella.h */, - 19A3208713532FEB443BA6C90BF523BC /* Pods-Examples-SourcepointFirebaseDemo.debug.xcconfig */, - C5AE4F2FE6962D2D5782A193601217D4 /* Pods-Examples-SourcepointFirebaseDemo.release.xcconfig */, + D61761FAED1678EBE49D655704D4D852 /* CwlBadInstructionException.swift */, + 58F593C0F96BE561B1E740AEFF450B5E /* CwlCatchBadInstruction.swift */, + CDFF982F9613E3FB4A5C215E93103634 /* CwlDarwinDefinitions.swift */, + 951CC769E5452DAE3DFF6ECB81E3AD12 /* Support Files */, ); - name = "Pods-Examples-SourcepointFirebaseDemo"; - path = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo"; + name = CwlPreconditionTesting; + path = CwlPreconditionTesting; sourceTree = ""; }; - 8F326894FBE38FCFA26890F77F11C789 /* Resources */ = { + 90D5D8787535262AB2734528FF921ABF /* nanopb */ = { isa = PBXGroup; children = ( - 09760B2CDB70F77EDBE597061083AB98 /* PrivacyInfo.xcprivacy */, + 7222A2484A3654D879E80317B612EEC6 /* pb.h */, + 8F3A84E62621BA59A7CD3B10E88F2A63 /* pb_common.c */, + 03EF3D5078569C167DFEA8F2078A351C /* pb_common.h */, + F9F7EF137340DA46E15DCAD51DA529E1 /* pb_decode.c */, + D58925843ACD2530DB031D3F4A88210E /* pb_decode.h */, + 4458D1091D559C633515A51150C0DEE0 /* pb_encode.c */, + 7AC531B7441C332B2FF950C6C46A2709 /* pb_encode.h */, + AEDE0EF8207105CBBE72AC3F7355495E /* decode */, + 3931C72CF1A1DF4194625A57CFFB9C40 /* encode */, + D097DA327CF6BB546F3AB11D823008C9 /* Resources */, + FC6AAF0D0A3FE28CCC7617A96ACC8131 /* Support Files */, ); - name = Resources; + name = nanopb; + path = nanopb; sourceTree = ""; }; - 8F6E1A5C14799048645B6C600DC64AB6 /* UserDefaults */ = { + 91C40991F30728EC15DCAC1CAD8F375F /* Environment */ = { isa = PBXGroup; children = ( - 06CDCF1DEF066100C9A8DA515BF0F69F /* GULUserDefaults.h */, - AD32F2285581C5240F786F49CA8C33E4 /* GULUserDefaults.m */, + CECFB29FFF56FB9A2B1A4DA99BD7C4F2 /* GULAppEnvironmentUtil.h */, + 702C31205742BE62A8C78DBF33C59E18 /* GULAppEnvironmentUtil.m */, + 3368D779A4F10DA753FD551B5E1CD67B /* GULKeychainStorage.h */, + 53A96ADB84F50B33405CB597E3C56835 /* GULKeychainStorage.m */, + DC4F0B29B237736C39F7DD8FDBB18F9B /* GULKeychainUtils.h */, + BCD0C75321A1C0BF2B9B5D8D662A5D14 /* GULKeychainUtils.m */, + 5BCA4F64161C9021E4F22D08E1E88F63 /* GULNetworkInfo.h */, + 1E7EF4FBBE64D7A0C659CC1AA72FDAC3 /* GULNetworkInfo.m */, + 07BB747336C89F95DC3278F260D10594 /* IsAppEncrypted.h */, + B9277DA07B11FB505DEAC060BD00D239 /* IsAppEncrypted.m */, ); - name = UserDefaults; + name = Environment; sourceTree = ""; }; 93A1093EC8CEFC9B685566A71CE5FF2E /* Support Files */ = { @@ -4918,19 +3952,19 @@ path = "Example/Pods/Target Support Files/ConsentViewController-iOS"; sourceTree = ""; }; - 93EB688CD00F1369BA81DB4071B33B2F /* Support Files */ = { + 951CC769E5452DAE3DFF6ECB81E3AD12 /* Support Files */ = { isa = PBXGroup; children = ( - FEA8166E0B3BDC5149E48354C4FFF351 /* CwlCatchException.modulemap */, - EBB21CCD209327E78352F268FE5D05DD /* CwlCatchException-dummy.m */, - 69A957A19A6ADF826C4DD252DA689504 /* CwlCatchException-Info.plist */, - 07A8CFAAC606B196E05540BE99D4F78B /* CwlCatchException-prefix.pch */, - E1B76FB29EA8F4A3A6137D51D23FADEF /* CwlCatchException-umbrella.h */, - A25E299620E4156A2638D0F3DE5EC583 /* CwlCatchException.debug.xcconfig */, - 88E5A68E490D25730B9530B224AC6B05 /* CwlCatchException.release.xcconfig */, + A33A0CFE6ED5CCD4A530BEB6C9A3AF35 /* CwlPreconditionTesting.modulemap */, + 7780FE6908644DB0276CB8EF63E29492 /* CwlPreconditionTesting-dummy.m */, + 97EF23591EEB5F215DE3A63E27114254 /* CwlPreconditionTesting-Info.plist */, + F81843E693175365B045CE212267EDB0 /* CwlPreconditionTesting-prefix.pch */, + 094D4FA6F3FD48FAE143D5024AEB60FA /* CwlPreconditionTesting-umbrella.h */, + FF25A8B95A82598D7E2E4A0A8E1B2E97 /* CwlPreconditionTesting.debug.xcconfig */, + 4A320257F794218399DCB0A09D36339A /* CwlPreconditionTesting.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/CwlCatchException"; + path = "../Target Support Files/CwlPreconditionTesting"; sourceTree = ""; }; 9591BEDAE4413FBBE53CB1FEC8BFA6B4 /* Extensions */ = { @@ -4947,139 +3981,7 @@ path = ConsentViewController/Classes/Extensions; sourceTree = ""; }; - 96C7517DF2173BCDB7405055A95FA8E7 /* Resources */ = { - isa = PBXGroup; - children = ( - 48083DE72EF8FFB2C009AEF98D922690 /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - 96DFD57D39A8539CB5EB6381899F689D /* SwiftLint */ = { - isa = PBXGroup; - children = ( - C2D31F9B8526D321FFA688C37BFAEE5D /* Support Files */, - ); - name = SwiftLint; - path = SwiftLint; - sourceTree = ""; - }; - 9B4CB2CFEBCCB812A34692DEAC323D51 /* Pods-Tests-AuthExampleUITests */ = { - isa = PBXGroup; - children = ( - 34965BE65DC9DDC12BA274BB3D89E801 /* Pods-Tests-AuthExampleUITests.modulemap */, - 090FB5D206322F3D4116DCB9537BA768 /* Pods-Tests-AuthExampleUITests-acknowledgements.markdown */, - 11AB65E223FBA66F8387F04ADD5C44C7 /* Pods-Tests-AuthExampleUITests-acknowledgements.plist */, - 27768312B574C1C195B5DA118542D5DA /* Pods-Tests-AuthExampleUITests-dummy.m */, - 029CCFBD6A8A98AAEB3CBBB0A107E20F /* Pods-Tests-AuthExampleUITests-Info.plist */, - 67D9BC63BA17B76B1576E38C7A1D0B96 /* Pods-Tests-AuthExampleUITests-resources.sh */, - 8F409AB3D85FB173A94C05F8560AEF6E /* Pods-Tests-AuthExampleUITests-umbrella.h */, - F4A7C470969D8D9C13E2AC186A25DCCD /* Pods-Tests-AuthExampleUITests.debug.xcconfig */, - 6E031F91F1F99C88F5C25D358A8C2080 /* Pods-Tests-AuthExampleUITests.release.xcconfig */, - ); - name = "Pods-Tests-AuthExampleUITests"; - path = "Target Support Files/Pods-Tests-AuthExampleUITests"; - sourceTree = ""; - }; - 9D7B1B269AE981E9DC976866D803A67B /* Core */ = { - isa = PBXGroup; - children = ( - 76384906EF776A77A37571DC6C520E41 /* IQActiveConfiguration.swift */, - 11F290A7274F920B01D24B662A5E5E88 /* IQKeyboardManager.swift */, - B7DA271879C5545FA95AC3A9F8807B2B /* IQKeyboardManager+ActiveConfiguration.swift */, - 3C720A34C11B645F17B554825FB8C54C /* IQKeyboardManager+Debug.swift */, - 5E08F59C00ADC343B643B1AE5B682C34 /* IQKeyboardManager+Deprecated.swift */, - 5A89F671C269C20114AD5CEEF81E691E /* IQKeyboardManager+Internal.swift */, - AFAFBCA4CA46B7789F68E77AD06F489E /* IQKeyboardManager+Position.swift */, - 9AE3C37AC143AA6187DAA70513DB82D2 /* IQRootControllerConfiguration.swift */, - F43C191D5EFD4AA4564971E2F3E68FCF /* IQScrollViewConfiguration.swift */, - 26EA509F93874431C5DA3886A8BF2C86 /* UICollectionView+IndexPaths.swift */, - E58DF34CA22A58EAA384996DA0161FAB /* UIScrollView+IQKeyboardManagerExtension.swift */, - 105CE05DE7CD3B0A74D93C6AD4B5EA00 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift */, - F99A847226F1CB64296C8D40579E77BF /* UITableView+IndexPaths.swift */, - BB6932AE55EA481CF1AAF28D724E19F9 /* UIView+IQKeyboardManagerExtension.swift */, - B29E4356D1D410280B2A1E1567FCD00D /* UIView+IQKeyboardManagerExtensionObjc.swift */, - B4D63D4847FC55FF58BB4A31235A0BF9 /* UIView+Parent.swift */, - 237601B38F13A3670A4070C1CAC6862D /* UIView+ParentObjc.swift */, - D1C32D73EB2B645FC9BF38D9365ECCEA /* UIViewController+ParentContainer.swift */, - ); - name = Core; - sourceTree = ""; - }; - 9E451D85DC6C0F5FC084083BD939E89E /* Support Files */ = { - isa = PBXGroup; - children = ( - 4AFBE8FB5A27028CAA743C0E5513B480 /* SPMobileCore-iOS-xcframeworks.sh */, - 2BE18B625D19EDDBF19C786FA9C4CD23 /* SPMobileCore-iOS.debug.xcconfig */, - 15984851E2434A1A83C71AEAED338F2E /* SPMobileCore-iOS.release.xcconfig */, - 0A615B8FEA4BB77F6D10C31025414773 /* SPMobileCore-tvOS-xcframeworks.sh */, - FC706AD81CC3AB9974F689DF1937213B /* SPMobileCore-tvOS.debug.xcconfig */, - B2E8B7E8BA00F2628706C0AA85E4F5BB /* SPMobileCore-tvOS.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/SPMobileCore-iOS"; - sourceTree = ""; - }; - A13428F8354C61C8488326687C89A569 /* MethodSwizzler */ = { - isa = PBXGroup; - children = ( - 48A552628325A8E063430D78445EB2F1 /* GULOriginalIMPConvenienceMacros.h */, - B9B245DECDD24C9AC0F75E7898CAEF76 /* GULSwizzler.h */, - D81FFB2F47CA4FE79FA032EFB71FA53C /* GULSwizzler.m */, - ); - name = MethodSwizzler; - sourceTree = ""; - }; - A4B2231032C52860B1DFA3F8CB4F3F67 /* Support Files */ = { - isa = PBXGroup; - children = ( - 45B6A9569AD616EB3333C41F956D0139 /* Nimble-iOS.modulemap */, - 68AD33968E37713F30DBAD66C6AD3933 /* Nimble-iOS-dummy.m */, - 31153087896082D206A4FB09F2A31C65 /* Nimble-iOS-Info.plist */, - 5A317EFAAAB1C79D69C0D7B97455B293 /* Nimble-iOS-prefix.pch */, - 4CF88DAEFC6154DED003F3A02E3B6AF3 /* Nimble-iOS-umbrella.h */, - 0EDDE07DCB417401246AED370804DA0C /* Nimble-iOS.debug.xcconfig */, - 477405BF4D1FBDEDBF1A82AD3DE52801 /* Nimble-iOS.release.xcconfig */, - 0E798ACA8739273EF6705B2F619E7748 /* Nimble-tvOS.modulemap */, - 8F94E40F9C47186B9C90B58C1FDA12EC /* Nimble-tvOS-dummy.m */, - B2020A4EA56E58DF9051225B6ED4D89B /* Nimble-tvOS-Info.plist */, - C5F0138D0FEA2195D7B1FCB1DF1496C8 /* Nimble-tvOS-prefix.pch */, - 271B9303BE698648CA3470649FD280CD /* Nimble-tvOS-umbrella.h */, - 5393C11706FE1D32CACED7EBDE82926B /* Nimble-tvOS.debug.xcconfig */, - F9DA5DD14F328DC15C1B8894F9EBE99A /* Nimble-tvOS.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/Nimble-iOS"; - sourceTree = ""; - }; - A52E5A716833DBEFD72089C4A4300CCE /* Support Files */ = { - isa = PBXGroup; - children = ( - D8DECABB4D3F288EE625E49E0AFF6EC0 /* IQTextInputViewNotification.modulemap */, - F00A310658C463AD2E3C33FB171EC9F8 /* IQTextInputViewNotification-dummy.m */, - 393EA51584D351873633CE98B99B94F5 /* IQTextInputViewNotification-Info.plist */, - D8540E8DFF7E9730C196553A9FDCC15B /* IQTextInputViewNotification-prefix.pch */, - 01B7A0F12119250D0C87E0712F834199 /* IQTextInputViewNotification-umbrella.h */, - CC14A8A1A0D472EF58D5491F0B14547E /* IQTextInputViewNotification.debug.xcconfig */, - 312BF46E4E318C049EFD24288B49F860 /* IQTextInputViewNotification.release.xcconfig */, - 61660CEC35D64BE67CB8E7393659FE56 /* ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/IQTextInputViewNotification"; - sourceTree = ""; - }; - A53746BAE8FD81EF35886154C4190E15 /* GoogleAppMeasurement */ = { - isa = PBXGroup; - children = ( - C40C0E558BD2429F02635BF238D08F3B /* AdIdSupport */, - AF295A37AC9BD033F540F7F2CD2999CE /* Support Files */, - C9E0AF00EFE4DF089E6554FD21B13FE1 /* WithoutAdIdSupport */, - ); - name = GoogleAppMeasurement; - path = GoogleAppMeasurement; - sourceTree = ""; - }; - A5C85DEC71D0A8549FD03EC499B23E6C /* GDPR */ = { + A5C85DEC71D0A8549FD03EC499B23E6C /* GDPR */ = { isa = PBXGroup; children = ( E5D6584C89A476EAB14E471673012300 /* GDPRPMConsentSnapshot.swift */, @@ -5098,140 +4000,98 @@ path = GDPR; sourceTree = ""; }; - A6D4BAEAF12AFE719A388999C8970A09 /* CwlCatchExceptionSupport */ = { - isa = PBXGroup; - children = ( - 1D1EF07B4074C5D3B21D293539E811B4 /* CwlCatchException.h */, - CA51FBC8E872CD7ACAD950A44AB5F027 /* CwlCatchException.m */, - 8C1D547DF185348D67B214235FE76FE5 /* Support Files */, - ); - name = CwlCatchExceptionSupport; - path = CwlCatchExceptionSupport; - sourceTree = ""; - }; - AC48372B1A9FEE0FE5FAB353A93B28ED /* PromisesObjC */ = { - isa = PBXGroup; - children = ( - A8539471500A9065B1DF8CED74E86479 /* FBLPromise.h */, - 9854D1AA61EDBCC8C7F3C964FA9AC3FD /* FBLPromise.m */, - 1AF548F201A5ECBD867F8B7FE2F0B358 /* FBLPromise+All.h */, - 8F6021C9C3B57896D77C989E22147F4F /* FBLPromise+All.m */, - BDC87B2DDE2EA8F037A768043509C7DC /* FBLPromise+Always.h */, - CE860B2EA5C79C372454DCB7851C091C /* FBLPromise+Always.m */, - 18F9E19CA9D917CB5655F5450578C723 /* FBLPromise+Any.h */, - E2129BA7BCD8B648B9FB349C176DA621 /* FBLPromise+Any.m */, - 2EAF80D436E8A7F00E434A770B74AD91 /* FBLPromise+Async.h */, - 3F9C078C5139CC0543A765E2FF230C90 /* FBLPromise+Async.m */, - 0FDD93343FCF19CFFE387161EBDBA43B /* FBLPromise+Await.h */, - 99E2520C737AC3324E6D8537F4FE3F34 /* FBLPromise+Await.m */, - 6950705DDFFFB2F3B1FE714BEF549C3C /* FBLPromise+Catch.h */, - 37BFCC7EAC8AA0681464CFDE2CF66640 /* FBLPromise+Catch.m */, - 11B372D0279EAB990E3BD615FFDBB958 /* FBLPromise+Delay.h */, - 784E78149BB92433D5D2BB064AEB14AF /* FBLPromise+Delay.m */, - 69211393A493FE597E264D3C509449FE /* FBLPromise+Do.h */, - FBE547F9D281008A40E7EBF35CB5799A /* FBLPromise+Do.m */, - 2AA1E8B56C1C4BB8239C7A2E5838E478 /* FBLPromise+Race.h */, - B38761F6B536F6512B2550EEFADD6366 /* FBLPromise+Race.m */, - F3AA96C6D3CC2339D41DFCCA064AE221 /* FBLPromise+Recover.h */, - 008E3704D3829052945409F16538B160 /* FBLPromise+Recover.m */, - AABE37F8C23C6D9E87B16B75F451798C /* FBLPromise+Reduce.h */, - 341749C73A9DDC03BBFCB8BF4C77838B /* FBLPromise+Reduce.m */, - 29AE751FC0F120611D3A1462E52CDDCC /* FBLPromise+Retry.h */, - 81B2DCD6F80D84C042CB7FA5F1C8FBCE /* FBLPromise+Retry.m */, - 7ADDC9DE53F9B7E1A134155B9342EECE /* FBLPromise+Testing.h */, - AEFE0B8AB65CAA06ADCEC1AC92FB08CF /* FBLPromise+Testing.m */, - B5DE92BBC442B76678390B2150C0ED58 /* FBLPromise+Then.h */, - 90C4D664CCFC0EC8EB09816FA8633A75 /* FBLPromise+Then.m */, - 59C79470037DDC297119D5F6E19B71ED /* FBLPromise+Timeout.h */, - 79B5DEFDD954FFD119B8D63652978BD1 /* FBLPromise+Timeout.m */, - 166CE685B045446FB8D256E1CCB7BB31 /* FBLPromise+Validate.h */, - 3125E0AEF4C07B3C967DB0A1D09ED6E0 /* FBLPromise+Validate.m */, - E302764BB6FE971DF646B352FF0DE874 /* FBLPromise+Wrap.h */, - 08F357DF6D86BCE1B955CCA6588B08ED /* FBLPromise+Wrap.m */, - 4B2F037708CF295D855EFDAD564C8EB8 /* FBLPromiseError.h */, - 9576D8FB03AEE9AC0CBDD7F29B35CAA8 /* FBLPromiseError.m */, - 24C58E8D9EEFDCDCAA11A3C5873FCF26 /* FBLPromisePrivate.h */, - 2ECFAAFC62A2DFE367B301D75F04E4EE /* FBLPromises.h */, - DF6AB525C283093E9829340DDFBCE086 /* Resources */, - 6845EC220D12C598485618C2CBF24068 /* Support Files */, + A9EA3948EDC3D4FCD9E4D39510AE69B9 /* Pods */ = { + isa = PBXGroup; + children = ( + 6F68ADAF33BC8F8448B2882A0A5E9216 /* CwlCatchException */, + 75C8E2847D3B7105A31B844F3792D4E0 /* CwlCatchExceptionSupport */, + 7C0297FD392CFAF103A37624B597F75B /* CwlMachBadInstructionHandler */, + 0F925EB3A63B2026C7C2CB4384D86EA0 /* CwlPosixPreconditionTesting */, + 8D3915A84A5D97F0482D34C3171C18F9 /* CwlPreconditionTesting */, + 3A8B8BE661BDD59E961607EC4653C98D /* FirebaseAnalytics */, + 041DBADBEC90203C7E0289F55F907DF4 /* FirebaseCore */, + B0DF8E268D5AEFF73FBC41D949DCAAC8 /* FirebaseCoreInternal */, + 403D207585F3A34BBE9E29D6BB4B61CC /* FirebaseInstallations */, + DE742B03AF197C61C97B9C4343C9B202 /* GoogleAppMeasurement */, + 72561DACDBEA2EB68FB784932DC195A2 /* GoogleUtilities */, + 35B0FF1B424BBFD1B4DAB2704E5BCF58 /* JSONView */, + 90D5D8787535262AB2734528FF921ABF /* nanopb */, + F7C23E6BC042E53485E0DA7F93406885 /* Nimble */, + 156CA730787880C7110751B09EDEAA0E /* PromisesObjC */, + 2DB00FD69F92AF39BF48D8E591487549 /* Quick */, + F381F6841238DD0537E8191187F7BD81 /* SPMobileCore */, + 67137078160C226E615712212F0E8231 /* SwiftLint */, + 2D1DA76032427107669454ECF7099E7B /* Wormholy */, ); - name = PromisesObjC; - path = PromisesObjC; + name = Pods; sourceTree = ""; }; - AE85A89DCB62C2FEEF4BF005021B41BB /* Pods-Examples-ObjC-ExampleApp */ = { + AA9A8A72123C7EC3741A6B666E3E9575 /* Support Files */ = { isa = PBXGroup; children = ( - 1915207E5A90DCA82E26FBBCA2E23E5F /* Pods-Examples-ObjC-ExampleApp.modulemap */, - 217B5479C6892998368ABCC3F23A430D /* Pods-Examples-ObjC-ExampleApp-acknowledgements.markdown */, - 16A6B86A230015B27E8C491D716DA32C /* Pods-Examples-ObjC-ExampleApp-acknowledgements.plist */, - 70206F4AE991E4A6C241291B45B51CDA /* Pods-Examples-ObjC-ExampleApp-dummy.m */, - 648DE500AC655E43506E8FFC34CB1A68 /* Pods-Examples-ObjC-ExampleApp-Info.plist */, - E3A9EBD09DA6CFE051E1666471870367 /* Pods-Examples-ObjC-ExampleApp-resources.sh */, - 5076611C4673EEC7B845A13EEDAABDCD /* Pods-Examples-ObjC-ExampleApp-umbrella.h */, - 885466C2B2B8F648EFA1950A9EB8426C /* Pods-Examples-ObjC-ExampleApp.debug.xcconfig */, - C0957EB8E218AD92A68D3B9545B310B8 /* Pods-Examples-ObjC-ExampleApp.release.xcconfig */, + DBB9E3F0C98632796EF5E60F1397F9F8 /* GoogleUtilities.modulemap */, + 457AA5FBD8CFE8D85E466205678726EE /* GoogleUtilities-dummy.m */, + 2D0F76D5E6B071D974B130FD0DD47351 /* GoogleUtilities-Info.plist */, + 9265DF8855FE08DA921EBCBD5AD606A4 /* GoogleUtilities-umbrella.h */, + C48A26F1C27CB3218255C545C1804A12 /* GoogleUtilities.debug.xcconfig */, + 4780B3F7DD14B0085A2095F9BFCE0154 /* GoogleUtilities.release.xcconfig */, + 322DEE5FB71A9E96A341B511BF0403BB /* ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist */, ); - name = "Pods-Examples-ObjC-ExampleApp"; - path = "Target Support Files/Pods-Examples-ObjC-ExampleApp"; + name = "Support Files"; + path = "../Target Support Files/GoogleUtilities"; sourceTree = ""; }; - AF295A37AC9BD033F540F7F2CD2999CE /* Support Files */ = { + AC2E65E285F95561DBB128D93113322D /* Support Files */ = { isa = PBXGroup; children = ( - 91F1F5EFD9F5B257BA971B8237B0B65E /* GoogleAppMeasurement-xcframeworks.sh */, - 546A5C96B214B4119CD401BBE32E8356 /* GoogleAppMeasurement.debug.xcconfig */, - B87338A60396DC7C8B9E9C14E50D1517 /* GoogleAppMeasurement.release.xcconfig */, + DCC5179190EFCF46F0138C082D59336A /* CwlCatchExceptionSupport.modulemap */, + C0029DE294E83BFBB84C2887A08C25E0 /* CwlCatchExceptionSupport-dummy.m */, + B1F7CA6F11475CA449C60355702B3010 /* CwlCatchExceptionSupport-Info.plist */, + 3B68109EAF2294448189C91ADD66FA41 /* CwlCatchExceptionSupport-prefix.pch */, + 3A6656A9D08DB2DAFE2F1319CCCECF1C /* CwlCatchExceptionSupport-umbrella.h */, + E961EDCCDDC00D8E1CE5B2C8E47AD6B6 /* CwlCatchExceptionSupport.debug.xcconfig */, + 55D3A53AAEA41B111E5221B41BDDCD65 /* CwlCatchExceptionSupport.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/GoogleAppMeasurement"; + path = "../Target Support Files/CwlCatchExceptionSupport"; sourceTree = ""; }; - AF3591EDAF8540C3143276C4ACC5FAC7 /* Resources */ = { + AEDE0EF8207105CBBE72AC3F7355495E /* decode */ = { isa = PBXGroup; children = ( - 96BEBF5B770103D49A6779BB3F23B618 /* PrivacyInfo.xcprivacy */, ); - name = Resources; + name = decode; sourceTree = ""; }; - AFA350F651E3623D475234566E3EA0F7 /* Resources */ = { + B0DF8E268D5AEFF73FBC41D949DCAAC8 /* FirebaseCoreInternal */ = { isa = PBXGroup; children = ( - A8B5754E3D9CF0928319A37F8D4D281A /* PrivacyInfo.xcprivacy */, + 67B74403F1DB0E06D2843B6A0BFAE5FA /* _ObjC_HeartbeatController.swift */, + 18325BDC645A79CAF2819AB2F78A76BE /* _ObjC_HeartbeatsPayload.swift */, + E6D81D324A45B00A21917B41DC00EE14 /* AtomicBox.swift */, + CFAAC5718A6E521F52D0B41C1066DA89 /* Heartbeat.swift */, + 7165F4339A1D7754C68B727150F09DB5 /* HeartbeatController.swift */, + FB7D5F2CF370AFE78ABDA48E5399A4D7 /* HeartbeatLoggingTestUtils.swift */, + 0099ABEFFA46E52853778824E09A231E /* HeartbeatsBundle.swift */, + 8D32366DEB6715D89BF41684226E71F5 /* HeartbeatsPayload.swift */, + C2978BD4281FF6471CEF1AA8DD6A3747 /* HeartbeatStorage.swift */, + E12C628F8A6E37A9B41D172C026E089C /* RingBuffer.swift */, + 9BC0DE89605B7D52422F12AD2D02F4C1 /* Storage.swift */, + 5C4233608E03838BD18EB394195E9253 /* StorageFactory.swift */, + E0BE513955A6A8F454A160C86672A1AF /* WeakContainer.swift */, + B420515F1A79C239E30CA9B826BBE857 /* Resources */, + 64BE637DB43F61E84EF95ACE293F7F6C /* Support Files */, ); - name = Resources; + name = FirebaseCoreInternal; + path = FirebaseCoreInternal; sourceTree = ""; }; - B028CBCDB60A882751B903CA8487923B /* Pods-TVOSExampleApp */ = { + B0E6072676328B7A0633B17AB2972F0F /* Resources */ = { isa = PBXGroup; children = ( - 5BBD1E205379B81F63953505E8DB604D /* Pods-TVOSExampleApp.modulemap */, - B81BEE3865FF627CB1446B33E244F3B9 /* Pods-TVOSExampleApp-acknowledgements.markdown */, - 94888D4B141708E955BD94A3E24F2560 /* Pods-TVOSExampleApp-acknowledgements.plist */, - 3B11A9FF20684FE5D4B69A774C992D8C /* Pods-TVOSExampleApp-dummy.m */, - D021AFCDBBA61E7E3DD77F234D1D5B43 /* Pods-TVOSExampleApp-Info.plist */, - 200889D4597F4832345C529B808EFFB3 /* Pods-TVOSExampleApp-resources.sh */, - 1E88480B61ACCAA0F2621AB2B749F2E6 /* Pods-TVOSExampleApp-umbrella.h */, - 5CA7BC50BD57C2265DA3CD531E6B596A /* Pods-TVOSExampleApp.debug.xcconfig */, - 213D4ECBFA7309B07DF2DEED0D23AC9E /* Pods-TVOSExampleApp.release.xcconfig */, + 7361308DA9F98C418C9DDDDEEFCCEF58 /* PrivacyInfo.xcprivacy */, ); - name = "Pods-TVOSExampleApp"; - path = "Target Support Files/Pods-TVOSExampleApp"; - sourceTree = ""; - }; - B1657F6FA04E159BDE42700B4881E88A /* IQKeyboardReturnManager */ = { - isa = PBXGroup; - children = ( - 4847673071B546336221625AD9A94683 /* IQKeyboardReturnManager.swift */, - CA61691E97C846F19ADB7C40FD2B4ADB /* IQKeyboardReturnManager+UITextFieldDelegate.swift */, - E5DBC71098660DE5B08E3F9DDD5A97F8 /* IQKeyboardReturnManager+UITextViewDelegate.swift */, - F63F06A3984BCA7D29B059A0408A9A12 /* IQTextInputViewInfoModel.swift */, - 84E7A678BE6FDED3A06303ABE8B034E6 /* Resources */, - F0462B38B1FF62E33276E34FE89082B3 /* Support Files */, - ); - name = IQKeyboardReturnManager; - path = IQKeyboardReturnManager; + name = Resources; sourceTree = ""; }; B2BA0B6513ED1D81F809F2BAFFB64848 /* LocalStorage */ = { @@ -5244,189 +4104,109 @@ path = ConsentViewController/Classes/LocalStorage; sourceTree = ""; }; - B55E9F57510998789047B8CECFA3EDCC /* Pods */ = { - isa = PBXGroup; - children = ( - 5373C20618240CC7759E5C2528A4C84C /* CwlCatchException */, - A6D4BAEAF12AFE719A388999C8970A09 /* CwlCatchExceptionSupport */, - BB373674298C34B41EFE451C773B9028 /* CwlMachBadInstructionHandler */, - 06F8FDC643D67A98CE8F1A821D6747A3 /* CwlPosixPreconditionTesting */, - F16DDB092264A61A89EF183DF210FE37 /* CwlPreconditionTesting */, - 5A57AF3A082A2E95453F373286BA9E95 /* FirebaseAnalytics */, - 5D66C6743C9B54D8F6D497CB16FFC607 /* FirebaseCore */, - 66797DC6A5554AD8015245801D386EC2 /* FirebaseCoreInternal */, - 580204531A8DBDCDA937D9A87A7D1DA6 /* FirebaseInstallations */, - A53746BAE8FD81EF35886154C4190E15 /* GoogleAppMeasurement */, - 7392291FF241C3FAAF7EF065186E4ABB /* GoogleUtilities */, - 57E3C67E8BF67A4809E92DDB74E883A7 /* IQKeyboardCore */, - E809236B600B842E22E7791A58C95DC8 /* IQKeyboardManagerSwift */, - 604E1FC04342F8E68EE46D9ACC571770 /* IQKeyboardNotification */, - B1657F6FA04E159BDE42700B4881E88A /* IQKeyboardReturnManager */, - 5102D610AAA35199D6E1B4C6E16D406D /* IQKeyboardToolbar */, - 1D1CF3CC7E8FFF89945456D8E537B80B /* IQKeyboardToolbarManager */, - 0709C87B50985F726D3BE2DE95A4CA60 /* IQTextInputViewNotification */, - CB6FA79F05DDAD1F97B78B8A5706D3EB /* IQTextView */, - FC4D71F9EF8B319BF8CD7E33A8085E8A /* JSONView */, - D2F72BC93BF065CACCA270E08EED1F73 /* nanopb */, - 7BC28D7E71C6754BBEEDD4EEF73DF4CB /* Nimble */, - AC48372B1A9FEE0FE5FAB353A93B28ED /* PromisesObjC */, - 44A32A0A4B4603F67AA213DDE71B2430 /* Quick */, - FC7047C29B9BD46EF9BD02EE171A09BB /* SPMobileCore */, - 96DFD57D39A8539CB5EB6381899F689D /* SwiftLint */, - B9CF9DEA4BD544E0847DA750F876C239 /* Wormholy */, - ); - name = Pods; - sourceTree = ""; - }; - B63DBD40AB978D17B1FD97634A682619 /* Pods-Tests-SPGDPRExampleAppUITests */ = { - isa = PBXGroup; - children = ( - 752106479E76D0DD3449754C03EAB9D5 /* Pods-Tests-SPGDPRExampleAppUITests.modulemap */, - 46367C53AA7BD8F5B1CD21B4DD263A0F /* Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.markdown */, - EAABE4CA58AFE687902C3F3C7046A681 /* Pods-Tests-SPGDPRExampleAppUITests-acknowledgements.plist */, - DFAD2755DFADA501DCDEE7481708E60D /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m */, - 00F2D35E2F16C07A688E80092C83C827 /* Pods-Tests-SPGDPRExampleAppUITests-Info.plist */, - 7450C79D8367028E8750FBD28FFB9EFF /* Pods-Tests-SPGDPRExampleAppUITests-resources.sh */, - 759D3EA383B901D142D2FC3A8CB640DB /* Pods-Tests-SPGDPRExampleAppUITests-umbrella.h */, - 42DDA6EA4552D7101BA8815109178F18 /* Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig */, - 1209EA6EBCF62A05EE4AF10A38C73B9C /* Pods-Tests-SPGDPRExampleAppUITests.release.xcconfig */, - ); - name = "Pods-Tests-SPGDPRExampleAppUITests"; - path = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests"; - sourceTree = ""; - }; - B9CF9DEA4BD544E0847DA750F876C239 /* Wormholy */ = { - isa = PBXGroup; - children = ( - 1AF44F0431C5517FC97624B819A93234 /* ActionableTableViewCell.swift */, - 43EAE0D413F9625D75E608495B1CD93E /* BodyDetailViewController.swift */, - A36B888EBDB6ED11E7C0692FE5AAC0E7 /* Colors.swift */, - 1AEFF9CB21CFE2C6E9CABE1E8FC2049E /* Config.swift */, - 7DB9104337224F469F02FE1CFA054D8E /* CustomActivity.swift */, - D648943AD1475644A64F5CB20717192A /* CustomHTTPProtocol.swift */, - 39AB7954D02DC29058E83B73A6DD1E61 /* FileHandler.swift */, - 30FA3D98286D1A49ADE17B7E8C9C5E77 /* InputStream+Utils.swift */, - 236DE9F22C6527027547CC5C4DD8596D /* NSURLSessionConfiguration+Wormholy.h */, - 426F5B92361AD6E50C2720924378BBBD /* NSURLSessionConfiguration+Wormholy.m */, - 611A4150162221DA6ED1C214A3384D0B /* Postman.swift */, - 1B2A085592270AF5DD5E13A64ED858F7 /* RequestCell.swift */, - 8900858EF8CA1647169B147D2791DF67 /* RequestDetailViewController.swift */, - 1EB98EC760A9900E08B973CADE03FE11 /* RequestModel.swift */, - CA8B0499887AFBE40464AD6F5DDA6C5F /* RequestModelBeautifier.swift */, - 27037CC61C19580FDD56C28682478E85 /* RequestResponseExportOption.swift */, - EE38E7D54FBC5FA87D165B5A4FA59EC9 /* RequestsViewController.swift */, - C5D7A3F73EF1C63F9610263E2A3C4EBA /* RequestTitleSectionView.swift */, - E6B6055780BBF42CF95D5E9937FA4B31 /* Section.swift */, - 8FA4E06192FBBD2D464EEB4AB46FCC50 /* ShareUtils.swift */, - C3F0A86AF2E75FC5D43E56354F932455 /* Storage.swift */, - 63A5CD371E3230565E30896165B49380 /* TextTableViewCell.swift */, - A153645F2DDB19458FE1A4346444F6FE /* WHBaseViewController.swift */, - 3DC4E9EF6EB31ED585E5F26358A9AB74 /* WHBundle.swift */, - B789CF2E82183FA849B2EE1AE3EEB80A /* WHCollectionView.swift */, - F536C8567BCC74900C15620A5D873D25 /* WHDate.swift */, - C5E73C9325537856D0BFC3E891FCC1C0 /* WHLabel.swift */, - 9DC76871304CCDFD3A1D21BF050D3177 /* WHNavigationController.swift */, - 4E02A55905C0BF2681E14D8456919ADA /* WHString.swift */, - 7A031FC6E352E7051CA493D7D23896D3 /* WHTableView.swift */, - 2EBA88DFA4CE4EECE2EB0957F3BC9427 /* WHTextView.swift */, - 4751DD6B17333E933F4633D6E698BA65 /* WHView.swift */, - 6BEE253B425B0AFC6BE08AEB7A374D86 /* Wormholy.h */, - ED1FC96C6EDA99EF67C2DA3C4A33582A /* Wormholy.swift */, - A2413C25A1E9B1773F4BB7C4A9918225 /* WormholyConstructor.m */, - B050097AE422BC05C6098DCF057DB272 /* WormholyMethodSwizzling.h */, - 1A1D82294C81ACF02E022ECA02DFE5FF /* WormholyMethodSwizzling.m */, - 269BF36CB13C34482BD73539FEB074D7 /* Resources */, - E7D4A8FBE19E8672A3E41AEBF6391AF5 /* Support Files */, - ); - name = Wormholy; - path = Wormholy; - sourceTree = ""; - }; - BB373674298C34B41EFE451C773B9028 /* CwlMachBadInstructionHandler */ = { - isa = PBXGroup; - children = ( - BB96A1C01235D2DB104ABB1DC2A63E21 /* CwlMachBadInstructionHandler.h */, - 79613E4C842C69EAE38E095B7F90BD86 /* CwlMachBadInstructionHandler.m */, - 018C7D6DA1414FA7FD58A494AA74FAF0 /* mach_excServer.c */, - 0C82904C58AECE94225849CD3382BF5E /* mach_excServer.h */, - 3A727D29E409E0E3470D214CF4621B78 /* Support Files */, - ); - name = CwlMachBadInstructionHandler; - path = CwlMachBadInstructionHandler; - sourceTree = ""; - }; - BC5276800188993D24CF15610537ABDD /* Support Files */ = { + B420515F1A79C239E30CA9B826BBE857 /* Resources */ = { isa = PBXGroup; children = ( - 68FEF837542AF3581D997EC32A409228 /* GoogleUtilities.modulemap */, - 369624BF24186412CC06088709AEE3CF /* GoogleUtilities-dummy.m */, - 4204D4D8DE29AC6CFE2054942CA4F4F7 /* GoogleUtilities-Info.plist */, - E8B44AA61F315BDAD17181D9386F5FB4 /* GoogleUtilities-umbrella.h */, - DC2639B1E829A5F90E03607464AF4414 /* GoogleUtilities.debug.xcconfig */, - 119BF7600B4B48D0FAF2C547AC752308 /* GoogleUtilities.release.xcconfig */, - 4D134D185F0A1280D1156DE4DE30993C /* ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist */, + 9A64100D6D8B95759BA717510E45BAB3 /* PrivacyInfo.xcprivacy */, ); - name = "Support Files"; - path = "../Target Support Files/GoogleUtilities"; + name = Resources; sourceTree = ""; }; - BE799588116A2146D06229578EBA6F13 /* Frameworks */ = { + B8894C07D8AFDCF91F3CD83F6FA7154C /* Resources */ = { isa = PBXGroup; children = ( - A4610644C7B0109D328649CBEC1527DC /* SPMobileCore.xcframework */, + ED8C9B31D02EC3666D7EFD9158616F3C /* PrivacyInfo.xcprivacy */, ); - name = Frameworks; + name = Resources; sourceTree = ""; }; - BF4BB0F324DD2223F68D21A3EDB34248 /* Pods-Tests-ObjC-ExampleAppUITests */ = { + BBF6C909C2420054F2AD057CE9A64992 /* Products */ = { isa = PBXGroup; children = ( - 4ADDA488291A6D529F8E8EB01E2DABB9 /* Pods-Tests-ObjC-ExampleAppUITests.modulemap */, - EA0D26720A72EBD5E2B83B2AAB765B08 /* Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.markdown */, - DC502882CA19E12678FC23F8D01856B7 /* Pods-Tests-ObjC-ExampleAppUITests-acknowledgements.plist */, - FC6FA136BB9434E8C85E93ED49F4B26A /* Pods-Tests-ObjC-ExampleAppUITests-dummy.m */, - 5A441555053329B1FD92D1D576E2E73C /* Pods-Tests-ObjC-ExampleAppUITests-Info.plist */, - 4F53645178AE07E277B7D5E4578CA33A /* Pods-Tests-ObjC-ExampleAppUITests-resources.sh */, - 70AAF1737DA93EA12FCC90DF925BEB8B /* Pods-Tests-ObjC-ExampleAppUITests-umbrella.h */, - 7E3030523C1A187A0F7FB9046B6FD01B /* Pods-Tests-ObjC-ExampleAppUITests.debug.xcconfig */, - 40902E1C1B82C32A82C26838C74E00BD /* Pods-Tests-ObjC-ExampleAppUITests.release.xcconfig */, + 380358C9A223FE55A10AC25127FF1410 /* ConsentViewController-iOS */, + 4BEAC88AF84CC484F55B8A6C048444D9 /* ConsentViewController-iOS-ConsentViewController */, + 5DC2E71595175144336387BD6D2DE6BD /* ConsentViewController-tvOS */, + 20A4710BBD2EE3CFC496E3AF134BD4FD /* ConsentViewController-tvOS-ConsentViewController */, + E0BC8BB0FE4725CF87EB0A9F5D400FD6 /* CwlCatchException */, + 220D1365CED5CB83C4C0CE1E3DABD3B0 /* CwlCatchExceptionSupport */, + E1176A8E7C8F4162FFCA404BE6EEBB1C /* CwlMachBadInstructionHandler */, + D2AD834000B280096FEB80FBEBD9A414 /* CwlPosixPreconditionTesting */, + CC56497384E780278F916D6C57EA4951 /* CwlPreconditionTesting */, + E2B63D462DB7F827C4B11FD51E4F8E2D /* FirebaseCore */, + 8BB937B1C0DFFCF92F41861C2BC54DDA /* FirebaseCore-FirebaseCore_Privacy */, + 148D0F9E8C7373FEAF40D800FC5F1BAA /* FirebaseCoreInternal */, + 4DB03FD262B678178A44272143846563 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */, + 13C8C8B254851998F9289F71229B28A2 /* FirebaseInstallations */, + 47C581450CDB4A6111CB97EEE0711A8C /* FirebaseInstallations-FirebaseInstallations_Privacy */, + B43874C6CBB50E7134FBEC24BABFE14F /* GoogleUtilities */, + 44E291D18340EAC3F761346198515323 /* GoogleUtilities-GoogleUtilities_Privacy */, + 437B791FEDC5C4B595D6D29500E11197 /* JSONView */, + 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */, + 3227F3FC45681D7CEE5D1355A532398A /* nanopb-nanopb_Privacy */, + C2FCA34B3522D944BAA3DC6A57D99686 /* Nimble-iOS */, + 0D68F2DD4656E2DC0F28ED037671461F /* Nimble-tvOS */, + 8009AFA883EF36EED39CC47F36FE7E69 /* Pods-Examples-AuthExample */, + 55908634686A3DF6ECCEE78419BBA7A9 /* Pods-Examples-ConsentViewController_Example */, + C7D0A4151C95D4FBAD32B247F044F933 /* Pods-Examples-NativeMessageExample */, + 197865AE4C919C97C7E5CE23CE9253D9 /* Pods-Examples-ObjC-ExampleApp */, + 28D5EA4BB4CA750310C6328A9F1F15D9 /* Pods-Examples-SourcepointFirebaseDemo */, + 3E88639B1919779EA4D947458F865C3F /* Pods-Tests-AuthExampleUITests */, + FC93A0989C42FA19D96552F13D5FE50C /* Pods-Tests-ConsentViewController_ExampleTests */, + 534D623ADD013C7F78FFE22047E69951 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests */, + F9444BEB61B4B9D850FF5A2216A3C8DF /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests */, + 2701FF4C96D98F0B29DFA47632CB59B0 /* Pods-Tests-NativeMessageExampleUITests */, + F04688DB063193CB7C0D050E87ACE1FE /* Pods-Tests-ObjC-ExampleAppUITests */, + 4B52B86C338468857F2E798179EBEC53 /* Pods-Tests-SPGDPRExampleAppUITests */, + C3D163ED35F95B184B10CF3222D35768 /* Pods-TVOSExampleApp */, + 8FAD4B2C2A4A9820171E0345B3BFF0D7 /* Pods-TVOSExampleAppUITests */, + 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */, + 3F238BB22C5201CE689CAF2F766AED95 /* PromisesObjC-FBLPromises_Privacy */, + C8E0F49D3F9CF6715FD8D2D98638F20F /* Quick-iOS */, + 73F566CFB5F21F61AC2FA68F08AA0B2D /* Quick-tvOS */, + 2530BC414137FF7A53A0368B476547B9 /* Wormholy */, + AA92ED38E716E03D3FC758C810953B95 /* Wormholy-Wormholy */, ); - name = "Pods-Tests-ObjC-ExampleAppUITests"; - path = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests"; + name = Products; sourceTree = ""; }; - C2D31F9B8526D321FFA688C37BFAEE5D /* Support Files */ = { + BC3837EF2578972D6E7D0FBA1287AC2C /* Support Files */ = { isa = PBXGroup; children = ( - 9AB91992ADD70EED081100015CB5338E /* SwiftLint.debug.xcconfig */, - 285FA291E715D679D7FE0BA7CA91DB12 /* SwiftLint.release.xcconfig */, + 9D962A5A86A6D53EF95A7EBC61F981A8 /* SwiftLint.debug.xcconfig */, + 640199601037D9F58D130F079A21C25C /* SwiftLint.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/SwiftLint"; sourceTree = ""; }; - C314C7F33AC551D9A446104E17B8810B /* Support Files */ = { + BFEE40B740117810D030B77B17BED5BB /* Support Files */ = { isa = PBXGroup; children = ( - C46CFB8EF3CEB56EDF6712289A27A9C7 /* IQTextView.modulemap */, - 9F96E4D2386F493BE82DED195E2CF689 /* IQTextView-dummy.m */, - EADB2648A8FBA0C2EDBA5849395F04A1 /* IQTextView-Info.plist */, - 2B6C95C84D480808889C697012B352A4 /* IQTextView-prefix.pch */, - 7442995C363F851C85FE64B3A4B00C1B /* IQTextView-umbrella.h */, - C206E48C5FD72701093625C9FEDD1C14 /* IQTextView.debug.xcconfig */, - 1502E63A37330EBB5C1A73A5190D09F5 /* IQTextView.release.xcconfig */, - 739151E711190C1BE5B2133E10E9289C /* ResourceBundle-IQTextView-IQTextView-Info.plist */, + 448E9E77ED29977D713BCD92DE87AB2D /* CwlCatchException.modulemap */, + E63152537F06AB68D928373397496476 /* CwlCatchException-dummy.m */, + 0590F48D3BFC0131C79E88753F9B5423 /* CwlCatchException-Info.plist */, + 8EA80B8D118F421F43E74050ABFEA63B /* CwlCatchException-prefix.pch */, + FEC90213A94B03253A25DEB451734283 /* CwlCatchException-umbrella.h */, + 1E020A0CF5F17E3A232DECF3ABC8D0B9 /* CwlCatchException.debug.xcconfig */, + 876B81D97FF07E797985B21078D2BE11 /* CwlCatchException.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/IQTextView"; + path = "../Target Support Files/CwlCatchException"; sourceTree = ""; }; - C40C0E558BD2429F02635BF238D08F3B /* AdIdSupport */ = { + C147B287A9BC1A773432766F120C3097 /* Support Files */ = { isa = PBXGroup; children = ( - 409CB7576D3AB13E8219CC44C76B491B /* Frameworks */, + D6E9D4F9E424A0C80921487AD67769A6 /* JSONView.modulemap */, + CF5D725909ED7B31AFBF64914391A556 /* JSONView-dummy.m */, + 2CB3E6591499018B1DC9B2C332A559D3 /* JSONView-Info.plist */, + 38D58A401311D517AA1CC6ABBE502164 /* JSONView-prefix.pch */, + 50E8DD150C18816A42BAA6A0D9977D5B /* JSONView-umbrella.h */, + 6B1CB913D0C795005011229ABCA67947 /* JSONView.debug.xcconfig */, + 97EE33A24B21B28D02CA6FED3F00E565 /* JSONView.release.xcconfig */, ); - name = AdIdSupport; + name = "Support Files"; + path = "../Target Support Files/JSONView"; sourceTree = ""; }; C5475206DB01997D3420C2A46A0228B1 /* NativePrivacyManager */ = { @@ -5441,24 +4221,6 @@ path = NativePrivacyManager; sourceTree = ""; }; - C63018EC5D7A3DE886A6A3F46A32507A /* Network */ = { - isa = PBXGroup; - children = ( - A9E567C3801F77C6845784BC161E6AF0 /* GULMutableDictionary.h */, - CF5214681ADBB06F82221BD6E6C63ECF /* GULMutableDictionary.m */, - BBBB1C27BF4880E7D44DA1EA3A17A658 /* GULNetwork.h */, - D82C3C1195B47C222E0B307D98FBBBEA /* GULNetwork.m */, - 0E0FF0EB4ABF09B6C32D854A470072E8 /* GULNetworkConstants.h */, - 06AFB2FB1357339F642D525DD139645C /* GULNetworkConstants.m */, - AC6C453CD050FB5817AA3897D415B52C /* GULNetworkInternal.h */, - 3D861833DDD7FD6648C4077FAB6A45AD /* GULNetworkLoggerProtocol.h */, - 6F964FBA416ED6D27F11DAAA6C0D730B /* GULNetworkMessageCode.h */, - B51861A159CB213A49F54058AD763015 /* GULNetworkURLSession.h */, - 935EEF5E16FC6B7B0B0977DB05AE930A /* GULNetworkURLSession.m */, - ); - name = Network; - sourceTree = ""; - }; C98BB556806D9CD1B0D1DA8AFC6E1C9F /* ConsentViewController */ = { isa = PBXGroup; children = ( @@ -5503,39 +4265,29 @@ path = ../..; sourceTree = ""; }; - C9E0AF00EFE4DF089E6554FD21B13FE1 /* WithoutAdIdSupport */ = { + C98BD15F89688A7D6EB1B8290FC6A719 /* Privacy */ = { isa = PBXGroup; children = ( - 22DBA654D4DDD75434776617D876E9FB /* Frameworks */, + B0E6072676328B7A0633B17AB2972F0F /* Resources */, ); - name = WithoutAdIdSupport; - sourceTree = ""; - }; - CB6FA79F05DDAD1F97B78B8A5706D3EB /* IQTextView */ = { - isa = PBXGroup; - children = ( - 7161B5DCDFE49231562B55DAA6066E11 /* IQTextView.swift */, - 2B2C452C547F5C72A91AD191072AB706 /* IQTextView+Placeholderable.swift */, - 8F326894FBE38FCFA26890F77F11C789 /* Resources */, - C314C7F33AC551D9A446104E17B8810B /* Support Files */, - ); - name = IQTextView; - path = IQTextView; + name = Privacy; sourceTree = ""; }; - CF1140903D9BC2409B3D009493A73743 /* Support Files */ = { + CBE65C886AFAE0982B8F15BFB6666BC5 /* Pods-Examples-ObjC-ExampleApp */ = { isa = PBXGroup; children = ( - AD8AA25743B7DB5360A40AC1336ABBB0 /* CwlPreconditionTesting.modulemap */, - E3863FD1C556D54C3E982C50EA82E084 /* CwlPreconditionTesting-dummy.m */, - 78C9F0EE3838CBA627CC3583703B9766 /* CwlPreconditionTesting-Info.plist */, - D5A667FE13700AECFF9987CEE895483B /* CwlPreconditionTesting-prefix.pch */, - A361202B2E3C64A15E73F68BEB6EC838 /* CwlPreconditionTesting-umbrella.h */, - 75C4888BF100C27C1D9364F923E8C519 /* CwlPreconditionTesting.debug.xcconfig */, - 32F6B838E42284ACF0782FC442FFA5D9 /* CwlPreconditionTesting.release.xcconfig */, + 40A5A2BE696836FCB9F987E11753924A /* Pods-Examples-ObjC-ExampleApp.modulemap */, + A1B428B70E12D510C1731416917D2D10 /* Pods-Examples-ObjC-ExampleApp-acknowledgements.markdown */, + DA62B279A92A8086CEA576CE02994601 /* Pods-Examples-ObjC-ExampleApp-acknowledgements.plist */, + 0C88264884649EF7B51A7980BCD1AE39 /* Pods-Examples-ObjC-ExampleApp-dummy.m */, + 45D4ADE4A0A2CCDEDCC8D230EF26BC12 /* Pods-Examples-ObjC-ExampleApp-Info.plist */, + 0CA7A74493FD45351E647EDCB435AD30 /* Pods-Examples-ObjC-ExampleApp-resources.sh */, + 855AB738733A7A78AA95AD581A829FB1 /* Pods-Examples-ObjC-ExampleApp-umbrella.h */, + 966673C499A549AB91BE4CD6AB4B597A /* Pods-Examples-ObjC-ExampleApp.debug.xcconfig */, + 9723F96C65562CA6296D32D3BC624C1E /* Pods-Examples-ObjC-ExampleApp.release.xcconfig */, ); - name = "Support Files"; - path = "../Target Support Files/CwlPreconditionTesting"; + name = "Pods-Examples-ObjC-ExampleApp"; + path = "Target Support Files/Pods-Examples-ObjC-ExampleApp"; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { @@ -5544,39 +4296,35 @@ 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 4FB72CF436D00C693AFB64B05CD71461 /* Development Pods */, 8910DE18F4068EE7F2F8E36E5101A369 /* Frameworks */, - B55E9F57510998789047B8CECFA3EDCC /* Pods */, - 0A3DD4BD794503E0A0CB1988A01BD03C /* Products */, - DF91BF01731AAEF909E4C1B98FFE48F5 /* Targets Support Files */, + A9EA3948EDC3D4FCD9E4D39510AE69B9 /* Pods */, + BBF6C909C2420054F2AD057CE9A64992 /* Products */, + E1751EF4C114E105079AF84EF8B657FD /* Targets Support Files */, ); sourceTree = ""; }; - CFFDD80D32B8224492FCD6A63AC45193 /* Logger */ = { + D097DA327CF6BB546F3AB11D823008C9 /* Resources */ = { isa = PBXGroup; children = ( - 6CDEEE3D45A46E2F48CEEAC14CC08D22 /* GULLogger.h */, - 84B95C43D7B6F56248AD75135BE05088 /* GULLogger.m */, - 6AF12426E4EBBD9E1FDCCCB1D791C2B2 /* GULLoggerLevel.h */, + 66D8DAFD85A0B991DCA00D3CE2A35DAA /* PrivacyInfo.xcprivacy */, ); - name = Logger; + name = Resources; sourceTree = ""; }; - D2F72BC93BF065CACCA270E08EED1F73 /* nanopb */ = { + D288F58773F791948C5F98F99A5D2617 /* Pods-Tests-AuthExampleUITests */ = { isa = PBXGroup; children = ( - CEB05A5C3231DDF5CB5C7608FDAAED1A /* pb.h */, - A46E3B649881FB5DBD58A006029D4A9C /* pb_common.c */, - CE83326423A35E77F8489B85BACF722B /* pb_common.h */, - F6B816906F8A377175AF29FD385267AF /* pb_decode.c */, - 740097A017371498ADAAA1D0AB5B7F1C /* pb_decode.h */, - D1F15C0CB1373E0CDEC3585B63805043 /* pb_encode.c */, - A4CC809ED8B5AE51F38848C0F72698E0 /* pb_encode.h */, - 6B732B375ED57CEFA5B2F9E083724A68 /* decode */, - 6AF00912D0A719EB985650DBD635E4D2 /* encode */, - DB57A72A55E9D044ED5F8D3EBCC351DA /* Resources */, - 05E8229C67AF1627CAC71910A66FC3B0 /* Support Files */, + 09259172CEC3D446EF8B37620C530C65 /* Pods-Tests-AuthExampleUITests.modulemap */, + 5F4BBB95326DCB262CDC7D73C50D3518 /* Pods-Tests-AuthExampleUITests-acknowledgements.markdown */, + 2F40E3A2B34BF4A3903A120FE772F269 /* Pods-Tests-AuthExampleUITests-acknowledgements.plist */, + 05AA7123CC04038DD4EF794DF0FF1B0C /* Pods-Tests-AuthExampleUITests-dummy.m */, + 16E5C2D6E5ECFE61FD352A0D653DEB73 /* Pods-Tests-AuthExampleUITests-Info.plist */, + 7D15F26D990993E96CC0397D58B9E47F /* Pods-Tests-AuthExampleUITests-resources.sh */, + C64FE9E56AAF649C693189700CE9DEF6 /* Pods-Tests-AuthExampleUITests-umbrella.h */, + 3C8DBA703AA45E2CC3DB44A2D0C3CF84 /* Pods-Tests-AuthExampleUITests.debug.xcconfig */, + 40E481EFE0FFCF987FEAEBE638D68984 /* Pods-Tests-AuthExampleUITests.release.xcconfig */, ); - name = nanopb; - path = nanopb; + name = "Pods-Tests-AuthExampleUITests"; + path = "Target Support Files/Pods-Tests-AuthExampleUITests"; sourceTree = ""; }; D3279952C8CFF67294EB25A0742A522D /* SourcePointClient */ = { @@ -5599,130 +4347,136 @@ path = ConsentViewController/Classes/SourcePointClient; sourceTree = ""; }; - D946A136E9AFD3B95B56D33A427B0141 /* Resign */ = { + D41366D3B796E3D7F29E29F4BDDA0ED8 /* Support Files */ = { isa = PBXGroup; children = ( - 70098D87239066D9714D0F0671BF1C98 /* IQKeyboardManager+Resign.swift */, - 4B2ED71044E7761E480E636165D8EFC6 /* IQKeyboardManager+Resign_Deprecated.swift */, - E79685EF80A61FB64E0432F6162A1238 /* IQKeyboardResignHandler.swift */, - CA715F2887DD043810B1AFE30E508AC1 /* IQKeyboardResignHandler+Internal.swift */, - 135682E6BB9D8F99E34FEC9D5D0E744A /* UIView+Resign.swift */, - 684D5E952D1884720316846DA0045368 /* UIView+ResignObjc.swift */, - ); - name = Resign; + F4F8FBA68180851A1CF8AD12A3A282D1 /* FirebaseInstallations.modulemap */, + 58D58BA0B172E442BA8F040546731303 /* FirebaseInstallations-dummy.m */, + A19C5B05BB15A302B556684B99AF6EE6 /* FirebaseInstallations-Info.plist */, + A7DF8BB4329BC3D758A251886B6B41C7 /* FirebaseInstallations-umbrella.h */, + F06CECB781AD3E9067662A0AC7DE9DD4 /* FirebaseInstallations.debug.xcconfig */, + 6538B3C5263E056463EC7683F013E881 /* FirebaseInstallations.release.xcconfig */, + 13DA35017E67979A26DBEB45487D51EE /* ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseInstallations"; sourceTree = ""; }; - DB57A72A55E9D044ED5F8D3EBCC351DA /* Resources */ = { + D62DFB87843BB32BEF52F0A768FDF968 /* Support Files */ = { isa = PBXGroup; children = ( - E41CA8AA74470D540AF0516CAAB225AD /* PrivacyInfo.xcprivacy */, + 6B13D0E6D8BB71D977E2E46018CAC51F /* SPMobileCore-iOS-xcframeworks.sh */, + E56720F7641E6178548E80A357F58E29 /* SPMobileCore-iOS.debug.xcconfig */, + 267B71FD4B948D67BDBDE034F887089D /* SPMobileCore-iOS.release.xcconfig */, + 886409024BDF67E9EC65703A0E51E228 /* SPMobileCore-tvOS-xcframeworks.sh */, + 5F15BF8424C6F0A58016EFE91A450340 /* SPMobileCore-tvOS.debug.xcconfig */, + B4428C5E59EB334813064CCC47CA11DF /* SPMobileCore-tvOS.release.xcconfig */, ); - name = Resources; + name = "Support Files"; + path = "../Target Support Files/SPMobileCore-iOS"; sourceTree = ""; }; - DCC0B2F8F8097FEA3466BFC790B59E32 /* Environment */ = { + D7EBA3A15D2109E319BD8FEB5678665A /* Support Files */ = { isa = PBXGroup; children = ( - C407A54E017467BD3403FC613AFB7F1B /* GULAppEnvironmentUtil.h */, - 4C8B3DAC5F77F196D806BEFA672A46F3 /* GULAppEnvironmentUtil.m */, - 76CDC09AC51552BBFCCE41349F1AB612 /* GULKeychainStorage.h */, - 7AD5CBFF2CC535A21DC6948EDCDBE89C /* GULKeychainStorage.m */, - 480A6F751D5CC62587A6E70F578A7252 /* GULKeychainUtils.h */, - 250CCF39F870AE6F993E71E9CAC93BDD /* GULKeychainUtils.m */, - 07F7FDB058328900287FB0E998FBFE99 /* GULNetworkInfo.h */, - C0CA07D267FBD8C4220DECC3B0848D17 /* GULNetworkInfo.m */, - 05BA369063AB9F88199C725055C5F112 /* IsAppEncrypted.h */, - 98F6695DEAC1D13CB0C1ADEFC4FBCE58 /* IsAppEncrypted.m */, + D57EA1EC67ADFB8529E24D9BE5CBD196 /* ResourceBundle-Wormholy-Wormholy-Info.plist */, + E644160EE5572B4D70C122FC6C0030CA /* Wormholy.modulemap */, + D457B402B751C04F059255B73FCD3084 /* Wormholy-dummy.m */, + EFE9E108B5465D152CD48415ABA129C6 /* Wormholy-Info.plist */, + 6C3C3E7B367223C0D0BA2CE56A7CE629 /* Wormholy-prefix.pch */, + 6AFA73929A513224468A91EDB21C124E /* Wormholy-umbrella.h */, + CC123F1E84A44117353611B88C0097AC /* Wormholy.debug.xcconfig */, + FBCBC8108645B18CA20303D65BE535F2 /* Wormholy.release.xcconfig */, ); - name = Environment; + name = "Support Files"; + path = "../Target Support Files/Wormholy"; + sourceTree = ""; + }; + DA880D0A3398973D041D0E246B0DAB7B /* Support Files */ = { + isa = PBXGroup; + children = ( + 70F3F41435FE59FB06C0E827F63CA699 /* PromisesObjC.modulemap */, + 244880065A3393F54BFDAF677C86BCBF /* PromisesObjC-dummy.m */, + DEEF40DE698DE03CE61780B013801EC4 /* PromisesObjC-Info.plist */, + 9E2FFC8F2EF8C9D7411458644EAECFD7 /* PromisesObjC-umbrella.h */, + BC81E72BC721CDE1C69C15247B5A8D4E /* PromisesObjC.debug.xcconfig */, + 4393CF8AA70020C0E7F43105EC1DEEBF /* PromisesObjC.release.xcconfig */, + A27EDAE069E72FBA170CE86499E4F354 /* ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/PromisesObjC"; sourceTree = ""; }; - DF6AB525C283093E9829340DDFBCE086 /* Resources */ = { + DB6FC5290BBF4EFDE5EE10C87FE20128 /* Resources */ = { isa = PBXGroup; children = ( - FCE122F25E5F686A943505B92705B9FE /* PrivacyInfo.xcprivacy */, + 1A8BBB653B9F1324355A62F2B2E3B41B /* ActionableTableViewCell.xib */, + 6A1BEA3AA6DB7865E93A6268ECDCC5C2 /* Flow.storyboard */, + B3CA14E53E43E05EF19B6A7DF1A91D82 /* RequestCell.xib */, + 9A98A19B56EE2E7EA02EEF1E489037AB /* RequestTitleSectionView.xib */, + F489C6D8BF4D2897D5E6BDD18EB86725 /* TextTableViewCell.xib */, ); name = Resources; sourceTree = ""; }; - DF91BF01731AAEF909E4C1B98FFE48F5 /* Targets Support Files */ = { + DC360D8F1596DF9E86A05E63396F0477 /* Frameworks */ = { isa = PBXGroup; children = ( - 1883F273E9CC9D50D48578E4D3CD140A /* Pods-Examples-AuthExample */, - F277BA9BCD1382C98D792A85B9FB7C58 /* Pods-Examples-ConsentViewController_Example */, - 1D16A01DEF40E77973C9D793910ADA83 /* Pods-Examples-NativeMessageExample */, - AE85A89DCB62C2FEEF4BF005021B41BB /* Pods-Examples-ObjC-ExampleApp */, - 8E72C09569BCEFDC73BEB7C218395BC6 /* Pods-Examples-SourcepointFirebaseDemo */, - 3AEF6B422FB2024554579B356386595B /* Pods-Examples-SourcePointMetaApp */, - 9B4CB2CFEBCCB812A34692DEAC323D51 /* Pods-Tests-AuthExampleUITests */, - E8C006480E1336C99E83F7F93D9E9E43 /* Pods-Tests-ConsentViewController_ExampleTests */, - 28843EDE171A71C72B6346EE461BEF2E /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests */, - 3BEB57409E4A314C344417D59646691E /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests */, - 09F805ABD7A03D563627DCD34E7D6FCF /* Pods-Tests-NativeMessageExampleUITests */, - BF4BB0F324DD2223F68D21A3EDB34248 /* Pods-Tests-ObjC-ExampleAppUITests */, - 590599D8E0DB9BEC05AC05031BF54279 /* Pods-Tests-SourcePointMetaAppUITests */, - B63DBD40AB978D17B1FD97634A682619 /* Pods-Tests-SPGDPRExampleAppUITests */, - B028CBCDB60A882751B903CA8487923B /* Pods-TVOSExampleApp */, - 79889954ED35204ED773E3F4F90394D9 /* Pods-TVOSExampleAppUITests */, + 2EC2D69CA9A71B2934141340A6AE96F0 /* GoogleAppMeasurementIdentitySupport.xcframework */, ); - name = "Targets Support Files"; + name = Frameworks; sourceTree = ""; }; - E701B0A8EC8F7B434AE8AF25FDF19EDF /* Pod */ = { + DE742B03AF197C61C97B9C4343C9B202 /* GoogleAppMeasurement */ = { isa = PBXGroup; children = ( - 535E06755C3CD0BAF29EC6CCC440D468 /* ConsentViewController.podspec */, - 522F23E47E472ADB4AE7F2B949926F49 /* LICENSE */, - 77A72569939F05DD3E89F62FC4D9A0B5 /* README.md */, + 217DF573F1C848B64FD063D239C3C5AC /* AdIdSupport */, + 625E8983546A1B9308C3BD9A42113BE3 /* Support Files */, + F73F639A654AA51398AEF46AD2FA849A /* WithoutAdIdSupport */, ); - name = Pod; + name = GoogleAppMeasurement; + path = GoogleAppMeasurement; sourceTree = ""; }; - E7D4A8FBE19E8672A3E41AEBF6391AF5 /* Support Files */ = { + DEF2AE730C18EB525004A13880AB49C5 /* MethodSwizzler */ = { isa = PBXGroup; children = ( - 50141C4DB9D565A094540C8C0AB11EFA /* ResourceBundle-Wormholy-Wormholy-Info.plist */, - CEDE01BAA77F62D91DCA1484E7720CB7 /* Wormholy.modulemap */, - CFEF89211FE63A0A4B6ADD195A259172 /* Wormholy-dummy.m */, - 1F17A815B4C39DFD2BE71E8C85B46A1C /* Wormholy-Info.plist */, - A52ECA6E35D137500EB0D742A5100B58 /* Wormholy-prefix.pch */, - E75AE00E671306E9A58B2E5A5815D48F /* Wormholy-umbrella.h */, - 090867511CD2BA024093F61173297740 /* Wormholy.debug.xcconfig */, - C71513E560B1CB1D8E9A60A2D72233D9 /* Wormholy.release.xcconfig */, + 41F347D05F599B186CDF18BFC78AFC05 /* GULOriginalIMPConvenienceMacros.h */, + 544C1F5C16E391B7384639F660F07C21 /* GULSwizzler.h */, + 227D387BA824E9B3D189AD8F077911A7 /* GULSwizzler.m */, ); - name = "Support Files"; - path = "../Target Support Files/Wormholy"; + name = MethodSwizzler; sourceTree = ""; }; - E809236B600B842E22E7791A58C95DC8 /* IQKeyboardManagerSwift */ = { + E1751EF4C114E105079AF84EF8B657FD /* Targets Support Files */ = { isa = PBXGroup; children = ( - 8C0CC5D75F0C94D2B7BE7E0FD0A11336 /* Appearance */, - 9D7B1B269AE981E9DC976866D803A67B /* Core */, - 85AC22B4433B3CE027E3E08658904B56 /* IQKeyboardToolbarManager */, - D946A136E9AFD3B95B56D33A427B0141 /* Resign */, - 002B13B8086B166BE23A153BEB5D5CAA /* Resources */, - 5D00C196FC7E8A6DEA529DA07FD40B84 /* Support Files */, - ); - name = IQKeyboardManagerSwift; - path = IQKeyboardManagerSwift; + 7A531243EACFC31D5A46751FC7AEEC37 /* Pods-Examples-AuthExample */, + 2E265220A8259B5896D750B184F4472A /* Pods-Examples-ConsentViewController_Example */, + 7E3103A6E30865EACDAF36683466F1D3 /* Pods-Examples-NativeMessageExample */, + CBE65C886AFAE0982B8F15BFB6666BC5 /* Pods-Examples-ObjC-ExampleApp */, + 7DDC879D612993AF99F48D8D509655EB /* Pods-Examples-SourcepointFirebaseDemo */, + D288F58773F791948C5F98F99A5D2617 /* Pods-Tests-AuthExampleUITests */, + 34EA5DF22B0AABF319606F7792AD4C13 /* Pods-Tests-ConsentViewController_ExampleTests */, + 83989A70222AC186DF420941E12B105C /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests */, + F94ECFC58BCF28AD069AD044B96B72DF /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests */, + 6D47C9E55E5900CFF93CB87D0F55FD7F /* Pods-Tests-NativeMessageExampleUITests */, + 38F4315A83C1C928C88E024323AEFA3D /* Pods-Tests-ObjC-ExampleAppUITests */, + 2F8A00A20A7D152CA4190448065C0ABF /* Pods-Tests-SPGDPRExampleAppUITests */, + 1872D036EC4CB1DCC65B6FFBB2194342 /* Pods-TVOSExampleApp */, + 67A52338A461E0E442B1C961135072B7 /* Pods-TVOSExampleAppUITests */, + ); + name = "Targets Support Files"; sourceTree = ""; }; - E8C006480E1336C99E83F7F93D9E9E43 /* Pods-Tests-ConsentViewController_ExampleTests */ = { + E701B0A8EC8F7B434AE8AF25FDF19EDF /* Pod */ = { isa = PBXGroup; children = ( - B3E4DC932BBEFAFD5A49D90AB2AC7D86 /* Pods-Tests-ConsentViewController_ExampleTests.modulemap */, - 9A0027FF1D4610D3184663A739F457A0 /* Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.markdown */, - 8000FCB5CE094901411B7A87080562DE /* Pods-Tests-ConsentViewController_ExampleTests-acknowledgements.plist */, - A69621B2FFC5BDB799083519D042BA81 /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m */, - 925CB3BA618E0430E3F897CD1C1595AC /* Pods-Tests-ConsentViewController_ExampleTests-Info.plist */, - 1A61EF9F8DAB20D0B29D364D6042FB92 /* Pods-Tests-ConsentViewController_ExampleTests-resources.sh */, - B4807E584DB501AC5F5FAAB14026E391 /* Pods-Tests-ConsentViewController_ExampleTests-umbrella.h */, - 36E1993376CB5E7006909115A0334DE0 /* Pods-Tests-ConsentViewController_ExampleTests.debug.xcconfig */, - 6751AA628C9101CE0A38B998514B0423 /* Pods-Tests-ConsentViewController_ExampleTests.release.xcconfig */, + 535E06755C3CD0BAF29EC6CCC440D468 /* ConsentViewController.podspec */, + 522F23E47E472ADB4AE7F2B949926F49 /* LICENSE */, + 77A72569939F05DD3E89F62FC4D9A0B5 /* README.md */, ); - name = "Pods-Tests-ConsentViewController_ExampleTests"; - path = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests"; + name = Pod; sourceTree = ""; }; EE282562A2A14EBF14774FFA73C09FFB /* Adapters */ = { @@ -5737,219 +4491,237 @@ path = Adapters; sourceTree = ""; }; - F0462B38B1FF62E33276E34FE89082B3 /* Support Files */ = { + F366EF9CC83096FA74379B16CAA08BD9 /* Network */ = { isa = PBXGroup; children = ( - 27B51A7BAC47E4A5BFF438AAB27E4C81 /* IQKeyboardReturnManager.modulemap */, - BE80F7781B3D638A7E69BC47FCE44F37 /* IQKeyboardReturnManager-dummy.m */, - B429F14EB4A5E9DA1D17227E6D90E17D /* IQKeyboardReturnManager-Info.plist */, - E3FA1A4311E27E13B867AB056D3F2625 /* IQKeyboardReturnManager-prefix.pch */, - BDE3ACC9919EBFCC1AB3449F164F1C80 /* IQKeyboardReturnManager-umbrella.h */, - 6F603B49005B06B768E07C75B6EA395B /* IQKeyboardReturnManager.debug.xcconfig */, - E9EAAA300C2D6362912AE15C9D01E4CF /* IQKeyboardReturnManager.release.xcconfig */, - 23FBDAA5FD0B0723D595A12D65251D68 /* ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist */, + 245141383B0DEF2750705E09A499BFA5 /* GULMutableDictionary.h */, + 67BD118284431B9B050B55B136CB3324 /* GULMutableDictionary.m */, + 42DA89C9B6E1A0EF2D37DC044D3E20CD /* GULNetwork.h */, + 9F48F49A8F8C45ADF738743E322775BB /* GULNetwork.m */, + 54B38072CD0EF812CC7823E6F57CD5E6 /* GULNetworkConstants.h */, + AFFAB52F563C63E910F0583A3959FB4E /* GULNetworkConstants.m */, + 825C7A0644C6D36AD413548EB8E8382A /* GULNetworkInternal.h */, + 48F2C1D3E230A35FF802D289A488BFA5 /* GULNetworkLoggerProtocol.h */, + C657E970A741205EA5359E6B6A2C8066 /* GULNetworkMessageCode.h */, + 3B4ED918BC43013749D338B8FA108430 /* GULNetworkURLSession.h */, + CCC563B6A69D2B0D20A8FB30665142D1 /* GULNetworkURLSession.m */, ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardReturnManager"; + name = Network; sourceTree = ""; }; - F16DDB092264A61A89EF183DF210FE37 /* CwlPreconditionTesting */ = { + F381F6841238DD0537E8191187F7BD81 /* SPMobileCore */ = { isa = PBXGroup; children = ( - 33C6E68936062BDC159B49D3849FB9A0 /* CwlBadInstructionException.swift */, - 50FB40779EF49E222850B94FF5E486A9 /* CwlCatchBadInstruction.swift */, - 0040387F9E3E25AF324907F247E4BF80 /* CwlDarwinDefinitions.swift */, - CF1140903D9BC2409B3D009493A73743 /* Support Files */, + 00A4EE4A9A25580F0E724673DE9F853C /* Frameworks */, + D62DFB87843BB32BEF52F0A768FDF968 /* Support Files */, ); - name = CwlPreconditionTesting; - path = CwlPreconditionTesting; + name = SPMobileCore; + path = SPMobileCore; sourceTree = ""; }; - F277BA9BCD1382C98D792A85B9FB7C58 /* Pods-Examples-ConsentViewController_Example */ = { + F3C0D8EB072AFFB00F91A3ED1B7CCA53 /* iOS */ = { isa = PBXGroup; children = ( - 70AE9BBBC6911F97C45CEC0AF6EB449C /* Pods-Examples-ConsentViewController_Example.modulemap */, - 7348485AC968CAF19EC5A3C6A4D7C8AB /* Pods-Examples-ConsentViewController_Example-acknowledgements.markdown */, - A5839082B8F6542D0C2A2B3E1CF9AB40 /* Pods-Examples-ConsentViewController_Example-acknowledgements.plist */, - D15D3DB152A6F0E9F5C482B377B5F225 /* Pods-Examples-ConsentViewController_Example-dummy.m */, - 5C96D65BC5F38F7BD3C64D787B14CAC7 /* Pods-Examples-ConsentViewController_Example-Info.plist */, - 5A95B9C8BA2A4CE41E994F89F6DD5A5B /* Pods-Examples-ConsentViewController_Example-resources.sh */, - F86DDBECF7964F601C28D8407C8E5660 /* Pods-Examples-ConsentViewController_Example-umbrella.h */, - AFB1557A33F666C0A9D83F8FE7C9D111 /* Pods-Examples-ConsentViewController_Example.debug.xcconfig */, - 7659A6B7A2DCBEF9F67EF52B4C3237C0 /* Pods-Examples-ConsentViewController_Example.release.xcconfig */, + FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */, ); - name = "Pods-Examples-ConsentViewController_Example"; - path = "Target Support Files/Pods-Examples-ConsentViewController_Example"; + name = iOS; sourceTree = ""; }; - F3C0D8EB072AFFB00F91A3ED1B7CCA53 /* iOS */ = { + F6C9E7F67E582A90D97D242B98AC0D1A /* UserDefaults */ = { isa = PBXGroup; children = ( - FD1B2493FD5A3477922BA9EDEF115371 /* Foundation.framework */, + B17AA814F91AF2B4285F9FF82C6B9777 /* GULUserDefaults.h */, + E73D415FC8E60BAA2062B80EDD4E7068 /* GULUserDefaults.m */, ); - name = iOS; + name = UserDefaults; sourceTree = ""; }; - F618B83A6553A10D06CD6345535C8E3E /* AppDelegateSwizzler */ = { + F73F639A654AA51398AEF46AD2FA849A /* WithoutAdIdSupport */ = { isa = PBXGroup; children = ( - 9CF9B3750AC996B188363CC4B0C54DD7 /* GULAppDelegateSwizzler.h */, - 4A6F4473374AD88703DDD7B603DCD0CF /* GULAppDelegateSwizzler.m */, - CAD3B3265A52A20F40CA87019535A969 /* GULAppDelegateSwizzler_Private.h */, - F90DDF1898184087BBAD77CEC96A842D /* GULApplication.h */, - D7D9476A97FCF2A9624775C73C84BCE3 /* GULLoggerCodes.h */, - 1B73E46A10649788206CF69187F13906 /* GULSceneDelegateSwizzler.h */, - D2B8222ABD79FEDFA24A209D578BAC54 /* GULSceneDelegateSwizzler.m */, - E5CB5ECF48DAC0B2C0B6B7AD94DD9AE5 /* GULSceneDelegateSwizzler_Private.h */, + FF2855022F74F394A6F56E8794F446B8 /* Frameworks */, ); - name = AppDelegateSwizzler; + name = WithoutAdIdSupport; + sourceTree = ""; + }; + F7C23E6BC042E53485E0DA7F93406885 /* Nimble */ = { + isa = PBXGroup; + children = ( + C4E227A05C94C5CC3DBB8DC852F7CBC0 /* AdapterProtocols.swift */, + 27B489FE8E5373A678868715F5E37A85 /* AllPass.swift */, + D34B8A15F6299C6B28232CFAC708FA4A /* AssertionDispatcher.swift */, + 1B108F5A67F202BB0C878709D7FAEDF7 /* AssertionRecorder.swift */, + 04117DE208A4F4F3EB24426B69A86672 /* AssertionRecorder+Async.swift */, + B224AA618A2BB3AE9F445349E349B6C4 /* AsyncAllPass.swift */, + 441FCD6C1FDA7C5F43235BFBDF880A17 /* AsyncAwait.swift */, + 758F9DC4BC1BD9FA840D047B2D349CD5 /* AsyncExpression.swift */, + 64C6AFFB907364693ECA2156ACC287D1 /* AsyncMatcher.swift */, + 72BDC80971614F239817E891B1BC5F50 /* AsyncTimerSequence.swift */, + D5E09F27370758C63BA4CE1B82FC3813 /* BeAKindOf.swift */, + 662429CB6AC4E96BA6AE5E1183015142 /* BeAnInstanceOf.swift */, + 81D479CEF364200B9222C8322B37D601 /* BeCloseTo.swift */, + B9CCD89762C814CB71B70559F70DBD78 /* BeEmpty.swift */, + CEE69C6D35AA4A945530637E937BF3C2 /* BeginWith.swift */, + 6097CB13D34CFC992D614D6FD7536DF2 /* BeginWithPrefix.swift */, + E562D071DF5C85A7D9A62DF9869F2077 /* BeGreaterThan.swift */, + 37FC59E9D44AF812BCB6A6B2B092B47D /* BeGreaterThanOrEqualTo.swift */, + F4D41D0FC581C64139A0BF48F1400C96 /* BeIdenticalTo.swift */, + 96023E180B8A1891858559CA04F99435 /* BeLessThan.swift */, + 7491C41A4C653109BFD69AA99EA36211 /* BeLessThanOrEqual.swift */, + 15189BA69BDFC39E7A0E6CDC4DC6FB80 /* BeLogical.swift */, + 512E962EA6C47F4678880930CB2C73FD /* BeNil.swift */, + A6C1B59861446BA981A24EF59CE82F17 /* BeResult.swift */, + 13916C9CB5D0CD65F90BA3F13D5E1D33 /* BeVoid.swift */, + 32649384E0CC1778A67679C905B06984 /* BeWithin.swift */, + 4696D09BF427952653E303D3DCD6E794 /* Contain.swift */, + 33B5CA37AA2F3603DDA4A2F7F1A2C41C /* ContainElementSatisfying.swift */, + EA912589A26C4C8224E4E47248628B5E /* DSL.h */, + 9B11DD25C102F8D3F852D9C18A2A9A84 /* DSL.m */, + 73B8CA33151989BB179C3D17D42A2E92 /* DSL.swift */, + C82A5DBE8CACD9017CE1276B35A9596F /* DSL+AsyncAwait.swift */, + B4B69F209B6F1F4495BF114F1541F956 /* DSL+Require.swift */, + A4185C282D94B2BA9A4C776CC49DE353 /* DSL+Wait.swift */, + 7936F9CC47E87196EADCC0A32CFE579A /* ElementsEqual.swift */, + E09E2A0CFA94259396CB6CEB353D28D2 /* EndWith.swift */, + 6910437F69F8060DB1E41F17E14DA86A /* Equal.swift */, + 16AB754F0D2103BCF9E6EC83FAFAE414 /* Equal+Tuple.swift */, + 63FE314A41192D45ADD1573B04810CC7 /* Equal+TupleArray.swift */, + C9F2D2DF6CC228D90A087969F9BE7B1F /* Errors.swift */, + F29115D95F0553BA382E8F62BAC00F6B /* Expectation.swift */, + D27CD9530A31B105C03C4291D69013E5 /* ExpectationMessage.swift */, + EEBD42371DFCE603D7B22168452A54CD /* Expression.swift */, + 898700DC4DB5095AAB02015D2BB39875 /* FailureMessage.swift */, + 56A5FF710324E88DF01167AA05E0A73B /* HaveCount.swift */, + 1430F45E4554B6CABED4867A77E25DEB /* Map.swift */, + 0227394C89EF232D13803AC414CC8E0D /* Match.swift */, + CECD5CEF7A06ACD8E031ED8E025DCE01 /* Matcher.swift */, + 8606FF0B324258DD7332EC917FB25EC8 /* MatcherProtocols.swift */, + E49E6D6DF3D5881F79486368E84FCB60 /* MatchError.swift */, + F4635A175F55A56F658216A24DDBD810 /* Negation.swift */, + DF984411EEE48496E173411B16040B27 /* Nimble.h */, + 97E474B81FF725EB6C01439A223F8BD6 /* NimbleEnvironment.swift */, + 462B2AEFDB6F73AADFBB9D28D5A983CE /* NimbleSwiftTestingHandler.swift */, + F29AD012F64DCE477800BA6013E08ABF /* NimbleTimeInterval.swift */, + 918C0AE49CDE63B115192CE0A1B0E0E8 /* NimbleXCTestHandler.swift */, + 1FE0614C9432CD7B4E9AC97E73182D27 /* NMBExceptionCapture.h */, + 86A7C611C4CD9683D25B8560131AFD15 /* NMBExceptionCapture.m */, + CAEBA3A4FFB630398D8DDB44B90DD703 /* NMBExpectation.swift */, + F246135F6FE2FB42E2CA72F43F3C861E /* NMBStringify.h */, + 90A8D58C370061FBE079C887EDBA0F71 /* NMBStringify.m */, + 535474DC1B52AA0BE310C17803121EC2 /* PollAwait.swift */, + 3677F11C8AE9FB7BFBA1CF30068D1B53 /* Polling.swift */, + C4B877E79592B4D6C995D2281D9F6286 /* Polling+AsyncAwait.swift */, + E0FE600A1374B33A5B6477ADE7BEB50B /* Polling+Require.swift */, + 384CE5EF9A89CCDCCB2A5FA0C944D704 /* PostNotification.swift */, + 68A266767518E3B4D84197B03E8EFB05 /* RaisesException.swift */, + 12D0FE7D15411CE61E5B2CDFF6BC6BE7 /* Requirement.swift */, + F5DE8078DD6AB98EE633233990050414 /* SatisfyAllOf.swift */, + 9A5FCE24A5048739DC589904C6B5C661 /* SatisfyAnyOf.swift */, + 6B1A3533F58C5A343C1793EF683E7124 /* SourceLocation.swift */, + B00B568B3FD94D3462B7949D8CFBFBBB /* Stringers.swift */, + C93613CAA3DC19D9E0E096377AB7C5ED /* ThrowAssertion.swift */, + F3109154306A035EA1599891C38CF19E /* ThrowError.swift */, + 3432DADF2BA3478255509D961040CCA2 /* ToSucceed.swift */, + D91DDA07BC3CC1B8EB09B3AFA0BB040E /* utils.swift */, + A1F9C1BFA93282D03C9A99C3C8A27564 /* XCTestObservationCenter+Register.m */, + 2A0099753035281A40116839883FCBDC /* Support Files */, + ); + name = Nimble; + path = Nimble; sourceTree = ""; }; - F76A1FE97B6E83910B12115B6507642E /* Support Files */ = { + F91D6CF9083FB22DFD5441F1DD49C2A0 /* Resources */ = { isa = PBXGroup; children = ( - AC91C44A59AABC5FF63CF75D8B6F86C5 /* CwlPosixPreconditionTesting.modulemap */, - 561022AEBBB35FACDF6EF8E49CE29A97 /* CwlPosixPreconditionTesting-dummy.m */, - 472271800CA69830B18B7832F8BF110D /* CwlPosixPreconditionTesting-Info.plist */, - 9F4E194548CB8DA88C035DC8C7D2EF86 /* CwlPosixPreconditionTesting-prefix.pch */, - 5EC13EE03CEE8CE6A374E6B796A5FC24 /* CwlPosixPreconditionTesting-umbrella.h */, - 2CBDA5A98EA670762ABFC2E1D265F305 /* CwlPosixPreconditionTesting.debug.xcconfig */, - 60A70F335EE93EADD5D96E8BA805610B /* CwlPosixPreconditionTesting.release.xcconfig */, + 953C0D60558E3AB2BD15579B50459D6B /* PrivacyInfo.xcprivacy */, ); - name = "Support Files"; - path = "../Target Support Files/CwlPosixPreconditionTesting"; + name = Resources; sourceTree = ""; }; - FC4D71F9EF8B319BF8CD7E33A8085E8A /* JSONView */ = { + F94ECFC58BCF28AD069AD044B96B72DF /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests */ = { isa = PBXGroup; children = ( - 42309A7D3A62F66FC79D91D12F041257 /* JSONCell.swift */, - 4265AA8465B4B7BE72ED42FB5ECE3E61 /* JSONTreeView.swift */, - 70C802EB30B4D174902F64BFEDF4B881 /* JSONView.swift */, - 36EDC9C87AA25C00588569FB9643B2A7 /* Support Files */, + 0760C1257D7E105676745153FD89889D /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.modulemap */, + E00171F12786BCAF90D340DF75652758 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.markdown */, + A23715421E0A274D064706BDDAECAC42 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-acknowledgements.plist */, + 8BE2EC5D536D7759972707199C2ED60E /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m */, + 0721A837A031E5D1C58E447D944E2315 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-Info.plist */, + AC349429EDFC65FF731998062188D16A /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-resources.sh */, + BF38E2D4A611D1CB98007D22EDE74CA9 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-umbrella.h */, + CBBF33C16A255D7666561C58214A8DDA /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig */, + 889214D4EA88BABE53D191096E67C1BC /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig */, ); - name = JSONView; - path = JSONView; + name = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests"; + path = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests"; sourceTree = ""; }; - FC7047C29B9BD46EF9BD02EE171A09BB /* SPMobileCore */ = { + F95F3CD601D51C7F9D3D96796A1C02B1 /* Logger */ = { isa = PBXGroup; children = ( - BE799588116A2146D06229578EBA6F13 /* Frameworks */, - 9E451D85DC6C0F5FC084083BD939E89E /* Support Files */, + 15322C34CB689D51A783BA2B2B0CFC6E /* GULLogger.h */, + 34F7047E7670F741A663672BE90267D8 /* GULLogger.m */, + 7341EB953156871757EA8DCD193FAA39 /* GULLoggerLevel.h */, ); - name = SPMobileCore; - path = SPMobileCore; + name = Logger; sourceTree = ""; }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 01C512089410C6EFB3BBA9A31780CE7D /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 6ADB6DB35E5E73BACB1AE79E30DA67E1 /* FIRAppInternal.h in Headers */, - FDEF461D17CE7383420279D95B62A3EB /* FIRComponent.h in Headers */, - E94A827DEB23341A36B556433591350B /* FIRComponentContainer.h in Headers */, - 09C209A2FAC47F3BE1E49B1C6D90AAC8 /* FIRComponentType.h in Headers */, - 311E961331F50AEB4A4D232CBE5FF389 /* FIRCurrentDateProvider.h in Headers */, - 4224C3CD50F0706909A6707CC95A362C /* FirebaseCoreInternal.h in Headers */, - C0E25E0B9F46117560D056163C948F2E /* FirebaseInstallations.h in Headers */, - E8789C876A23C86DE2A179941962D675 /* FirebaseInstallations-umbrella.h in Headers */, - DFB932C28ED84FF47827C25D4913AFCD /* FirebaseInstallationsInternal.h in Headers */, - AE5B5C917E549156352118A6C3B54636 /* FIRHeartbeatLogger.h in Headers */, - 67E998107712685316435BEAEBD69DBA /* FIRInstallations.h in Headers */, - 760B5F227A6234520658AE2331625379 /* FIRInstallationsAPIService.h in Headers */, - AF02029E1F98BC6EB7A15B53D91E8A24 /* FIRInstallationsAuthTokenResult.h in Headers */, - 28FAD079E457F696C78EC667A68BECC9 /* FIRInstallationsAuthTokenResultInternal.h in Headers */, - F4496011CFAF8A504EBB79F8057AC156 /* FIRInstallationsBackoffController.h in Headers */, - 069E8C5D6394E382702451CCF591A765 /* FIRInstallationsErrors.h in Headers */, - 9680B3A0639DF7526CEA82E68C3B2459 /* FIRInstallationsErrorUtil.h in Headers */, - A0B4330F6FFCE05D877083804BBA3476 /* FIRInstallationsHTTPError.h in Headers */, - 422FAF61381DBB442AF04CA133D9EFFD /* FIRInstallationsIDController.h in Headers */, - F7242A1E4AE35B5F70E9BE38F6AF7E80 /* FIRInstallationsIIDStore.h in Headers */, - 62098C923A3CCFA2AB66EB8D158E984B /* FIRInstallationsIIDTokenStore.h in Headers */, - 7E40A8DC22BF42BE8A7D1601EBB1473F /* FIRInstallationsItem.h in Headers */, - E5367AD004CF53D8D393013DC108D795 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */, - 33CFC3693A0F9032B74A14A4DCD9188B /* FIRInstallationsLogger.h in Headers */, - 989B7B0D1925ED300862083FFD08535A /* FIRInstallationsSingleOperationPromiseCache.h in Headers */, - 9E2726BEEA22F505119A3E5FA6C10692 /* FIRInstallationsStatus.h in Headers */, - 86B851708932AE4EF4FAD37947BC387D /* FIRInstallationsStore.h in Headers */, - 20FE1FC4EABBDB36F4AD00B851123A87 /* FIRInstallationsStoredAuthToken.h in Headers */, - E17430514C3537451662FD780BCD51E6 /* FIRInstallationsStoredItem.h in Headers */, - 0C54B693C4A8C43E728438EAF9E2096A /* FIRLibrary.h in Headers */, - EF5437B0AE9D8DF464F3D9C66DFABD9B /* FIRLogger.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 040CCE3E5932A5339E850B71BFC3B5C3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 45AEC3888A32D59FED868B188F68952F /* ConsentViewController-tvOS-umbrella.h in Headers */, + FB5C930C81EB106F03F9B28F321F6567 /* AdIdSupport */ = { + isa = PBXGroup; + children = ( + 2C1753E6DA9D8942CC689C03CC649A1A /* Frameworks */, ); - runOnlyForDeploymentPostprocessing = 0; + name = AdIdSupport; + sourceTree = ""; }; - 10B58F96439EA1C2759C682E3F15B529 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 96E869BE6BE558E42A7B1F0D8CB55B66 /* ConsentViewController-iOS-umbrella.h in Headers */, + FC6AAF0D0A3FE28CCC7617A96ACC8131 /* Support Files */ = { + isa = PBXGroup; + children = ( + D95BA39B9E6FD3BB23417AB010B90253 /* nanopb.modulemap */, + 2160BA55970AC59C8D21B7738DDC1015 /* nanopb-dummy.m */, + 0FD2728927C68BA941A57B1684A1FCF8 /* nanopb-Info.plist */, + E6020701076C5683495ABB08DA3A7333 /* nanopb-prefix.pch */, + 91D62C2979902E1B6BD2624C970711BE /* nanopb-umbrella.h */, + 25B64CDAC38DC0B4E6A010B69CB638F8 /* nanopb.debug.xcconfig */, + 84186C01B20273E40B6386C0AF6A94DB /* nanopb.release.xcconfig */, + 99917212D03DD040744A3BED996C78F4 /* ResourceBundle-nanopb_Privacy-nanopb-Info.plist */, ); - runOnlyForDeploymentPostprocessing = 0; + name = "Support Files"; + path = "../Target Support Files/nanopb"; + sourceTree = ""; }; - 1A4687A154BE23C9E4B4C3AEF733815B /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 1DF9387949CFB08A4EE564C6EE1B0D0D /* Pods-Examples-SourcePointMetaApp-umbrella.h in Headers */, + FF2855022F74F394A6F56E8794F446B8 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 91E0DE0BB629D1749C04989ECC79DD27 /* GoogleAppMeasurement.xcframework */, ); - runOnlyForDeploymentPostprocessing = 0; + name = Frameworks; + sourceTree = ""; }; - 22208EAF320311D959CCFFC1F5E576F5 /* Headers */ = { +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 040CCE3E5932A5339E850B71BFC3B5C3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - CE042ECB32DFB995C0F38CB37DF8574A /* IQKeyboardNotification-umbrella.h in Headers */, + 45AEC3888A32D59FED868B188F68952F /* ConsentViewController-tvOS-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2231DEABFAA9DFF0395E37D0439C847A /* Headers */ = { + 10B58F96439EA1C2759C682E3F15B529 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 5EF6D9E6A32DD18D070F9197B77E621A /* IQKeyboardToolbarManager-umbrella.h in Headers */, + 96E869BE6BE558E42A7B1F0D8CB55B66 /* ConsentViewController-iOS-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 28D3F297996E2D31D6BACF92F952EC9C /* Headers */ = { + 27FD3307A80EA0095A6366B47BF13904 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 903D9DFC1F4BD71907599D69F1452209 /* FIRAnalyticsConfiguration.h in Headers */, - 15B9EB4CD4324D010E4798EC18AC7662 /* FIRApp.h in Headers */, - C91B37F1C8EAE26A79B9BF0CEA01D094 /* FIRAppInternal.h in Headers */, - AF5AADCBACB9109C6BFD4F0BE616751E /* FIRBundleUtil.h in Headers */, - E8AA4A15431A050F3EA95A3F8D0910C8 /* FIRComponent.h in Headers */, - 5301834732AA4B5A3B024F809C1F4DF5 /* FIRComponentContainer.h in Headers */, - 05B22043CF9AAD54DF8530179AC5B74B /* FIRComponentContainerInternal.h in Headers */, - E49C1415051F51B24AB3C2DECDEAFB90 /* FIRComponentType.h in Headers */, - EDCA05DF8E30361DA6B503C8CA767B6C /* FIRConfiguration.h in Headers */, - 3B9AEA58A68761A13A9A1608EC111438 /* FIRConfigurationInternal.h in Headers */, - 357A7658034DDF01E8BD546F0F757FE4 /* FirebaseCore.h in Headers */, - B15F355EFC46899A8C16073527E0CBEC /* FirebaseCore-umbrella.h in Headers */, - 2BCFE5F1E33F30397EABF79C911E78E8 /* FirebaseCoreInternal.h in Headers */, - EE152A71C2D54BE49D91A205F0150357 /* FIRFirebaseUserAgent.h in Headers */, - CEA1D39C2BF8555C07EEB9B70110EC2B /* FIRHeartbeatLogger.h in Headers */, - A72BC21CAF6BE6BC5C215EF6D312DF8B /* FIRLibrary.h in Headers */, - CB1C12468B6EA38F8DD32D460546F6C5 /* FIRLogger.h in Headers */, - 1054F8E57CB5D3E24A56017601184463 /* FIRLoggerLevel.h in Headers */, - 3D0731D9EF07C1F4C9C6BF6A07BD0E03 /* FIROptions.h in Headers */, - FA82BD1CF8B95F4070FBFFCEF8E60F03 /* FIROptionsInternal.h in Headers */, - 57D620DC2F6FA4BD1251180934A8CA51 /* FIRTimestamp.h in Headers */, - EBB47ABB1DA7B625932157D03EC12293 /* FIRTimestampInternal.h in Headers */, - C110D0EDB720B2BFB7321A966A6530C7 /* FIRVersion.h in Headers */, + 2DD8D799536AD0FBEB9AE0025FF5A56C /* CwlCatchException.h in Headers */, + 7B51C4BDD68D0F21362EB82181E4F677 /* CwlCatchExceptionSupport-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5969,14 +4741,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5324B42C4067ACE6FC425246829D2B36 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 722CFE49C5289FFB97B9662AD7208381 /* FirebaseCoreInternal-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 55501579E486BF2CF2A5C3F9DF7B9072 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -6023,43 +4787,77 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 62418A3DD2CD98A31D804AEED228B995 /* Headers */ = { + 663DA05AFBBABB0EA946A4C3F0F0579C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 31FAE8A64E6BE3ED94D713953D2B5914 /* Pods-Tests-SourcePointMetaAppUITests-umbrella.h in Headers */, + C54B03A4C2F61520058027D5F7BA6EBC /* FirebaseCoreInternal-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6B5E850D0377D6D2433321A2979F43C5 /* Headers */ = { + 6703E10C8426A714AB37A4441EB0995C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 34B80C88F9E57499A4A92B90001182BF /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h in Headers */, + 9ADA67907E3658BC61088F5C36A1F3CC /* nanopb-umbrella.h in Headers */, + 8D6935E82CBE65E2D453723473491595 /* pb.h in Headers */, + 253BBE625A6A154994FCB661DEF4A3DD /* pb_common.h in Headers */, + 9A31375F7B1191B1B59895A14395E6F4 /* pb_decode.h in Headers */, + A346A108A8796C0AE1B657FC0012477F /* pb_encode.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 85E526EDB54ABB513688708A28628AA3 /* Headers */ = { + 6B5E850D0377D6D2433321A2979F43C5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - D8015E2545E47AEFBA55A095A237A316 /* IQKeyboardCore-umbrella.h in Headers */, + 34B80C88F9E57499A4A92B90001182BF /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8BCE0D8414D22702512DEE35B529895E /* Headers */ = { + 8AAA228EA457D04106797F86602BDB4F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 1A2024BCE25A33C62313B1131A349D55 /* CwlPosixPreconditionTesting-umbrella.h in Headers */, + A937AC7DC4B661064419006094667748 /* FIRAppInternal.h in Headers */, + C325255775541B4888E44FEAAEF52B58 /* FIRComponent.h in Headers */, + A3FAE6634B0014CB07904F6A3B7AC8F7 /* FIRComponentContainer.h in Headers */, + 47F1DF157CCC9FE055CEC08D37E466D2 /* FIRComponentType.h in Headers */, + 97B66C9C2E2151E73B4C989975F0D7B6 /* FIRCurrentDateProvider.h in Headers */, + 23908B06F717D7AC71B9DF349ABA75FC /* FirebaseCoreInternal.h in Headers */, + 7361B6406A96D7975004BAB3B384346F /* FirebaseInstallations.h in Headers */, + 8024B17AF03D3608EB65538CE278D987 /* FirebaseInstallations-umbrella.h in Headers */, + D1C1C9BFC2DA6946879B0B3783475583 /* FirebaseInstallationsInternal.h in Headers */, + 12E97704BF78C3592B5CFB527E017905 /* FIRHeartbeatLogger.h in Headers */, + 45F5B32E635B4E0070F6B3A255EF66E9 /* FIRInstallations.h in Headers */, + CE157987F630B3425D8D1B9AF7064D61 /* FIRInstallationsAPIService.h in Headers */, + 73EC88069D6718F8A2BD84E64ED2D2F9 /* FIRInstallationsAuthTokenResult.h in Headers */, + EA89A78BE5986DA4E846CDEACD43B2C7 /* FIRInstallationsAuthTokenResultInternal.h in Headers */, + D2AB878CE82DD8011CC9A18629077D0A /* FIRInstallationsBackoffController.h in Headers */, + 892488D54180DD7543E1F08B9492C591 /* FIRInstallationsErrors.h in Headers */, + 51BB496C0C1A7132E0902DAEBCBB2473 /* FIRInstallationsErrorUtil.h in Headers */, + 75599FDC2CCAF74545AC39A027D44C67 /* FIRInstallationsHTTPError.h in Headers */, + F3CCDF1E298944B14509E7346D063A2B /* FIRInstallationsIDController.h in Headers */, + D924AB4E856B4754679B3139655BD240 /* FIRInstallationsIIDStore.h in Headers */, + ACCE22218FA0F0D6CC859F40107A7314 /* FIRInstallationsIIDTokenStore.h in Headers */, + 477363D1915192F87E0AFD1C976C5AB7 /* FIRInstallationsItem.h in Headers */, + E4CF641112938576B503752C2A9FDA8E /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */, + A2598892C5F73ADAA823F62A4D20E642 /* FIRInstallationsLogger.h in Headers */, + C96FA6B6EA9D472C92166274AB7E682D /* FIRInstallationsSingleOperationPromiseCache.h in Headers */, + D8285F3104C83ABA7ABC0B22D75B9246 /* FIRInstallationsStatus.h in Headers */, + B7D423400343A8191059E90B2AC77E9C /* FIRInstallationsStore.h in Headers */, + 74CC21AB3BB0F79E145B2A2096FD1A8B /* FIRInstallationsStoredAuthToken.h in Headers */, + 50333EED4BC8C7C5B59B20C08F2F253F /* FIRInstallationsStoredItem.h in Headers */, + 51AB82B157CE47D656D7B5560E328DFA /* FIRLibrary.h in Headers */, + BB9CA1090B7C8A7FEBFB58D85BCAD95C /* FIRLogger.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 909E48B9D1E55880769DD61D4553D0F0 /* Headers */ = { + 8BCE0D8414D22702512DEE35B529895E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 0DC989E3B702C52A41143EADDCCD974B /* IQKeyboardReturnManager-umbrella.h in Headers */, + 1A2024BCE25A33C62313B1131A349D55 /* CwlPosixPreconditionTesting-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6071,14 +4869,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9686DF9B9FB3D169B7E0C3DBB42F215E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - CB0DBBB6E93B92C04B6C460932D8E9D1 /* IQTextView-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; A766C27021DE901018110AAE2418433A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -6101,18 +4891,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AEADF33647ADE0A3F99E241B947DBCB8 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - A819C7C624CF5B0FFFD23076D269B6C7 /* nanopb-umbrella.h in Headers */, - 2673A91E6AFC6B693144EC916708B9A2 /* pb.h in Headers */, - 09A8CA94D3D946B6E3A248495C95E5EA /* pb_common.h in Headers */, - 10EFEBDEEA7241A841CBA5CE3452A60C /* pb_decode.h in Headers */, - DFDB97F16D7C5B6DE5A269DE4F77F4DC /* pb_encode.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; B82B2C99DC662A46836E653DCEE5E9E9 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -6121,14 +4899,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B8ADCC7962F5C866C35412AAB11A754F /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - F1B87B7D33D09F571175D367346EE2CB /* IQKeyboardToolbar-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; BA9F8926C9019D802FC7C867ADD6AA07 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -6137,32 +4907,32 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C219D6D6305F7F49DA55E48482AB7E24 /* Headers */ = { + BB1B3D5EF0615385A223BBAA5B7F1CA7 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - F56997F464706EB916970ED735C49637 /* FBLPromise.h in Headers */, - C3C97D632903E709B28E2EA08181F897 /* FBLPromise+All.h in Headers */, - 9EE86AD5249D81DE2BC7A1E000D73FEF /* FBLPromise+Always.h in Headers */, - 41850263BC8C5028BF7AA43C1DA451EC /* FBLPromise+Any.h in Headers */, - 4AFE2AA43D013508A40397DC24FF2759 /* FBLPromise+Async.h in Headers */, - 1F3B13CB4D8ABB3F2AD8AE85C72BF328 /* FBLPromise+Await.h in Headers */, - F96BD1B09F2B3DD721D3FEEE769AEB02 /* FBLPromise+Catch.h in Headers */, - B3E625C32A22A235532190F234C5E15B /* FBLPromise+Delay.h in Headers */, - 14470839BDDE9874905A805E5C06BCBA /* FBLPromise+Do.h in Headers */, - 4421EE9436B1F697D69BC77F347B3E99 /* FBLPromise+Race.h in Headers */, - 3C4FEB010213C05BA28D51A0CCB99E72 /* FBLPromise+Recover.h in Headers */, - F80AA9508F6CA5F5910A49122387A9CF /* FBLPromise+Reduce.h in Headers */, - A5E82B417F48470BD0E900BC0D2DBCCA /* FBLPromise+Retry.h in Headers */, - 42C05503E1C6D3964E899A48CA0A9B31 /* FBLPromise+Testing.h in Headers */, - D3887F0E209650EB2E60AF19A824F9A1 /* FBLPromise+Then.h in Headers */, - 1E6E0992BF3458CCEA7F98CBB9ADE2CA /* FBLPromise+Timeout.h in Headers */, - FEE664A26F31F98A005C19D56F8813FE /* FBLPromise+Validate.h in Headers */, - B57E8104767ECB543A4D152D42F0FB14 /* FBLPromise+Wrap.h in Headers */, - 0E0AE17B0067ADB8EDDA24CA8B061DD0 /* FBLPromiseError.h in Headers */, - 17E5817291D1245A9F5B1ECED5A20613 /* FBLPromisePrivate.h in Headers */, - 7451F8CB89E1E04B366DBFF51B829AE0 /* FBLPromises.h in Headers */, - A5211CF301C90EA01848A2B70F61B2F0 /* PromisesObjC-umbrella.h in Headers */, + 71EA7832853646A297D1387B1D06EF40 /* FBLPromise.h in Headers */, + 220CB882F8A4A94D54C79DD9053DD55A /* FBLPromise+All.h in Headers */, + BA88D3FC8AC549ACBF12F9D9DF224E1B /* FBLPromise+Always.h in Headers */, + 96F082E25521025E460A8465409D47C5 /* FBLPromise+Any.h in Headers */, + 215363FC7DD4C0E60E34D5453E563555 /* FBLPromise+Async.h in Headers */, + 0BF02A8794E5DA114776A81DFAEF44DF /* FBLPromise+Await.h in Headers */, + 1057FA1BC8642CF9125EBAF17FF5C7C5 /* FBLPromise+Catch.h in Headers */, + 87DCB6EE7D5F4643BB7554EA9E51703F /* FBLPromise+Delay.h in Headers */, + 10089C7E11F56978D093DA90276C1D8B /* FBLPromise+Do.h in Headers */, + D5ED18845CCD2A5983B669EB630389E1 /* FBLPromise+Race.h in Headers */, + CEAF922B08B5FD95700045ED945D278F /* FBLPromise+Recover.h in Headers */, + 646AFC757A4D48BE07EB5D51646571DA /* FBLPromise+Reduce.h in Headers */, + 8B9C0C8756BEC636A86D43716B3367A7 /* FBLPromise+Retry.h in Headers */, + C5BA0B27B0E4287B434279CC1CDEE396 /* FBLPromise+Testing.h in Headers */, + EDBAEC0F6680404EA32E8EB8F70C6D59 /* FBLPromise+Then.h in Headers */, + 8880EC6042C1DF89486A4C6AE7182C0A /* FBLPromise+Timeout.h in Headers */, + CF821BAE38B712468027181E18C23D16 /* FBLPromise+Validate.h in Headers */, + FFBAB10D17FA513ECB41BEFBA117A129 /* FBLPromise+Wrap.h in Headers */, + FD81AFEF29D89DFC3E0A39025071AECC /* FBLPromiseError.h in Headers */, + E0EC185B023C12B0B269C1444B0E12FD /* FBLPromisePrivate.h in Headers */, + E4BC2939C5951F9DCF6511C5F6F0F009 /* FBLPromises.h in Headers */, + 3DA3B2F3BC7A42FF1A970B744C3D3FCC /* PromisesObjC-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6180,20 +4950,33 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C83C1DAFBD5AEE15F66013D0B11E71BD /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 01408ED940F0C4BC25688141CDA45895 /* IQTextInputViewNotification-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C8C7A15CA8813ED2A6EA35491F32C67F /* Headers */ = { + CC0A1F5DED71C9052D21B3388DA37C53 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 3208575D9DFA94D5D594A6B7E138DD2E /* CwlCatchException.h in Headers */, - 25C31532F1D9885C3494945FC4C0CE80 /* CwlCatchExceptionSupport-umbrella.h in Headers */, + FCF24605BDA07DC9A4F7D9E7049DB526 /* FIRAnalyticsConfiguration.h in Headers */, + D02923B99CD1A8A6CFC32AEC8559C5DF /* FIRApp.h in Headers */, + 0B7F5EF10E7976D891D0299E4AE0F2EF /* FIRAppInternal.h in Headers */, + 5DB20ABF155F7472B840AAB7378246B3 /* FIRBundleUtil.h in Headers */, + AA1A8BB53B27C6DF5CB2A809CCD9008E /* FIRComponent.h in Headers */, + BF8C373091CD7A2FF0F3B7A35C2FE5FE /* FIRComponentContainer.h in Headers */, + 84EC8D6BABE8DEBD9CA6B0BFE466DB3C /* FIRComponentContainerInternal.h in Headers */, + 243994B3C2619157379F830D6927AE8E /* FIRComponentType.h in Headers */, + 5D6F902C288B5672DF143CA7950AB3BB /* FIRConfiguration.h in Headers */, + 71344BBEAB7CD7E71965C5909DC757B0 /* FIRConfigurationInternal.h in Headers */, + C34763082FF41287480A4150469682A8 /* FirebaseCore.h in Headers */, + BB78D8F0BB3F8FAF215D903442D0101E /* FirebaseCore-umbrella.h in Headers */, + 479CE4E0195155EBED92F0FDFA0A45C0 /* FirebaseCoreInternal.h in Headers */, + 74EAA009BFA7348B1BB2F38D85724C6C /* FIRFirebaseUserAgent.h in Headers */, + 74C0A29E19BDD90330C4D63E1CD164F6 /* FIRHeartbeatLogger.h in Headers */, + 2B03E823DFFED53F56FE40D58890C174 /* FIRLibrary.h in Headers */, + FB8CAB8F0A3C84C4EB426B8C768158CF /* FIRLogger.h in Headers */, + F08C2D33F2D70E808D869371DC7D569A /* FIRLoggerLevel.h in Headers */, + 07FF684AA7BD2345FB24E1B3FF139D80 /* FIROptions.h in Headers */, + A5759156F02DA024558A51854183B0FE /* FIROptionsInternal.h in Headers */, + 9088AFFCA21544421119DD9D25EB4B67 /* FIRTimestamp.h in Headers */, + 0F5DB064435700F5FB0A247AAA922F22 /* FIRTimestampInternal.h in Headers */, + 227A9C404D2092D42CD51C8A0526615E /* FIRVersion.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6241,70 +5024,62 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EC66DD9488ACCDA2107BD3504F2ED043 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - A1FCE868E7E656F6167DE4E238266930 /* Pods-Tests-AuthExampleUITests-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - EF83BCF04EF8D58A39B49975D53C8524 /* Headers */ = { + E9DD34258C0A106E520510CB22E28DA7 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 6F3765FAE3920A18607D719137972E8E /* CwlCatchException-umbrella.h in Headers */, + 9E9E28281F9286A238EF8084C3123C7E /* GoogleUtilities-umbrella.h in Headers */, + 51EE07C027448A05C2E5989CD3D89154 /* GULAppDelegateSwizzler.h in Headers */, + D4256301E96A1C42EA10A93A9721C3B1 /* GULAppDelegateSwizzler_Private.h in Headers */, + 3EA5099B409F706D74A5D0C5999E03FA /* GULAppEnvironmentUtil.h in Headers */, + A9F7ACC62484BB8C486E56D288FF3FDB /* GULApplication.h in Headers */, + B39ABB546ECE67AE2D142EB07DE69DE4 /* GULKeychainStorage.h in Headers */, + 4534388705AA9A86B2B4E6859BCE946F /* GULKeychainUtils.h in Headers */, + 6B637D045B52BB7A33FA18CC2BAE7753 /* GULLogger.h in Headers */, + E308907D659ED376A8D3B774A75DA6D2 /* GULLoggerCodes.h in Headers */, + E1CE6297B4A819D8A291E9F198275A3F /* GULLoggerLevel.h in Headers */, + 38EDAED31CEC454BFC9D16C840FF0894 /* GULMutableDictionary.h in Headers */, + 7191A7E7EC9E4C4FBF06F58D8BDCE876 /* GULNetwork.h in Headers */, + C469C426A36C26BC983B080A44BD3A8D /* GULNetworkConstants.h in Headers */, + F467880427488569ED05FDFFC420457F /* GULNetworkInfo.h in Headers */, + 47FED8957ED091C9A1865D4FC23F5434 /* GULNetworkInternal.h in Headers */, + F697137B44D7212E967E6558DC2A64E2 /* GULNetworkLoggerProtocol.h in Headers */, + 6C7A617EFA139188CEF28CB6481A80FB /* GULNetworkMessageCode.h in Headers */, + 4790FA87569DBB58C2AF0A495594A4B3 /* GULNetworkURLSession.h in Headers */, + 738636B3D9978701C19C0A1248C2B262 /* GULNSData+zlib.h in Headers */, + A65E1EB8726AC656CE50D7A70A491647 /* GULOriginalIMPConvenienceMacros.h in Headers */, + 14592C1F350062CE562B912FF56471A2 /* GULReachabilityChecker.h in Headers */, + 19062B8E1878C0BB7DCA1086564E8847 /* GULReachabilityChecker+Internal.h in Headers */, + F33C7DEED429F2541BB473C17C0FCAD0 /* GULReachabilityMessageCode.h in Headers */, + FEF536F5ECB848FB5F11F35078BC8D1F /* GULSceneDelegateSwizzler.h in Headers */, + 9125B3F002B97AE7C1008065C40464E6 /* GULSceneDelegateSwizzler_Private.h in Headers */, + E2C33FB0CA41A206D25AE7D2C09D2F86 /* GULSwizzler.h in Headers */, + 1BD6A174023074F85C517BCF39EE050B /* GULUserDefaults.h in Headers */, + E394CEAFF7EDC2BB459B44EA8A3499CF /* IsAppEncrypted.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - F1A3FB2954A978FEFE566A85BBAF2580 /* Headers */ = { + EC66DD9488ACCDA2107BD3504F2ED043 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - BC4CF6937F894CC9121B3BAF10AE8D14 /* CwlPreconditionTesting-umbrella.h in Headers */, + A1FCE868E7E656F6167DE4E238266930 /* Pods-Tests-AuthExampleUITests-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - F326145A20E41AC8735602A1B18E36C7 /* Headers */ = { + EF83BCF04EF8D58A39B49975D53C8524 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 2FDFC006662EEF2E9F7FF3574868DAE9 /* IQKeyboardManagerSwift-umbrella.h in Headers */, + 6F3765FAE3920A18607D719137972E8E /* CwlCatchException-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - F3FA0B1352CADBE4D0FA3DDFDA9F6258 /* Headers */ = { + F1A3FB2954A978FEFE566A85BBAF2580 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 22484A83A78FADE7FD2803E90FBDCF82 /* GoogleUtilities-umbrella.h in Headers */, - 26A77BF8C7623E15452A761030FBF733 /* GULAppDelegateSwizzler.h in Headers */, - FD3657B5574A385B80E5BAB33D812F82 /* GULAppDelegateSwizzler_Private.h in Headers */, - AC55A95830B7A04DA3ECF1611E29B082 /* GULAppEnvironmentUtil.h in Headers */, - 5148653BD6608868D5B10E5B48644DDE /* GULApplication.h in Headers */, - E6AB5478CA8EFED9269CD57188F1CE43 /* GULKeychainStorage.h in Headers */, - 03D0213609AF47754608B4D421764EB1 /* GULKeychainUtils.h in Headers */, - E4185AF2689E5D95FAD7F68880B8E91A /* GULLogger.h in Headers */, - 4B6B743CB9C71EB943FEBD4AE1437FE1 /* GULLoggerCodes.h in Headers */, - 39E02AAFE91B74CA651E994A207A32DC /* GULLoggerLevel.h in Headers */, - 949275F4FF38B01BE04B831EC7EF9AFC /* GULMutableDictionary.h in Headers */, - 0CA9FC6CAA57112356FC3437B7C25112 /* GULNetwork.h in Headers */, - 0EF5251B4830B5B176F38213B451319D /* GULNetworkConstants.h in Headers */, - A7B670CE5E2D39F42BD7291265378CEC /* GULNetworkInfo.h in Headers */, - D0A520904D974512E658E557C141C9B5 /* GULNetworkInternal.h in Headers */, - 8297AD82EB8109C3EF5FF70BEEA55088 /* GULNetworkLoggerProtocol.h in Headers */, - 0A0E259F7830642BB6611CACFA1059BB /* GULNetworkMessageCode.h in Headers */, - AB81A114C098F9DAC7432D78CBDC81C7 /* GULNetworkURLSession.h in Headers */, - EEE2B16D2B1AC0A6F2EA7F8A7D3662DE /* GULNSData+zlib.h in Headers */, - 654C6BCFF2B8365ECB3663536F5411E4 /* GULOriginalIMPConvenienceMacros.h in Headers */, - F6CFAE4BBBB445780CFA3A49008BEE87 /* GULReachabilityChecker.h in Headers */, - C7D8E50AC47E760464EADD32051EBD57 /* GULReachabilityChecker+Internal.h in Headers */, - AF588E3FAA2055CC34F0ACA244A41A54 /* GULReachabilityMessageCode.h in Headers */, - 95841BF2D76DDFBBD1CF3853C878E2F2 /* GULSceneDelegateSwizzler.h in Headers */, - C52AD45B6FA277E55F97E41E5135CDD0 /* GULSceneDelegateSwizzler_Private.h in Headers */, - 310BD61B10B942BDF047216298B94909 /* GULSwizzler.h in Headers */, - 7ECB33DE7F4F4C3FB20671F5D7AE957A /* GULUserDefaults.h in Headers */, - ACC6DD35C72F92A1DC646907D0D99E65 /* IsAppEncrypted.h in Headers */, + BC4CF6937F894CC9121B3BAF10AE8D14 /* CwlPreconditionTesting-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6334,77 +5109,36 @@ buildRules = ( ); dependencies = ( - 8D40A19A6E1CC7553F18972ABF08FA35 /* PBXTargetDependency */, - 7032018AD9BFD6D39C2EA5B4FCA5FCAD /* PBXTargetDependency */, - 04A851B2C1F0422E9150506878F894C6 /* PBXTargetDependency */, - EBE2B51A1FD6473BE0E259E12F8E3D7C /* PBXTargetDependency */, - BA5C4071D2425CBC01B32F46B5D0A7F9 /* PBXTargetDependency */, - BFF0EDAA49180DF0207B3C652889048B /* PBXTargetDependency */, - 7258FCF7646056D29B9AF7B053ECAAB1 /* PBXTargetDependency */, - 285F9DFEC8E718A3FA5A7E3805B18F55 /* PBXTargetDependency */, - 91AB31B827ACEAA6E22FC6ECB706FCF8 /* PBXTargetDependency */, - E486EB12F857DCB86DC0CA317A75E3A0 /* PBXTargetDependency */, - 7B649A0E652D7DF3E544B5ECAAB3CE60 /* PBXTargetDependency */, - 547753A2BB52A4FAE78DF08E9D2A66A5 /* PBXTargetDependency */, - F94C0393AC538C3562FC79FA0DFCE5A5 /* PBXTargetDependency */, - AFB302B8C634C81748F53D26E73B365C /* PBXTargetDependency */, - 6216F8ED2C5D0A78114A0A251C624980 /* PBXTargetDependency */, - B7FF9F6B30FC809AB60388B77DCA6805 /* PBXTargetDependency */, - D6A3563E4F26A5632811F0786A7DEE1C /* PBXTargetDependency */, + E712D2FE1DC63486363DDADD7189D3CF /* PBXTargetDependency */, + F530339B42DDC312F4964EDCDC6B9835 /* PBXTargetDependency */, + DDA3678E94638F601B6E2DDBFBA54472 /* PBXTargetDependency */, + 76C638813925DBB247981F9E9CEB206B /* PBXTargetDependency */, + 2D0A97D3BD67F198E3E9B3AF1A419828 /* PBXTargetDependency */, + F3B8A43D12B137AEC9A17A2CE2740E82 /* PBXTargetDependency */, + D22FC9AE146C7553FE288840BDEFBC92 /* PBXTargetDependency */, + E27DBA5F8C199DBF6208449E53CCBC60 /* PBXTargetDependency */, + 9E92673D0C36DB0447805A17B4D42BFF /* PBXTargetDependency */, + E9DD8F6FAF2CDE9232140A15039DCA76 /* PBXTargetDependency */, + E85C11E2EA3E5BBF8DB651EF189C9E00 /* PBXTargetDependency */, + 326B034D843DB81EDD5C9C6545491B4A /* PBXTargetDependency */, + F93B30401555A2A840871C8103379318 /* PBXTargetDependency */, + 228541259CA6DA652B55C2CDBFB0AA48 /* PBXTargetDependency */, + ACB1588C09124BCB707BEBBD8B407D28 /* PBXTargetDependency */, + 7A98A361DE3362F79CB219D9515D1492 /* PBXTargetDependency */, + CAAE68A83B1D725830C0DF703C2CFA3B /* PBXTargetDependency */, ); name = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests"; productName = Pods_Tests_FirebaseTests_SourcepointFirebaseDemoTests; productReference = 534D623ADD013C7F78FFE22047E69951 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests */; productType = "com.apple.product-type.framework"; }; - 020993F16DA5986DACE118349EBCE9E5 /* IQKeyboardToolbarManager */ = { - isa = PBXNativeTarget; - buildConfigurationList = 6CE62D9C5C190237F9EDA656415E1F8F /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager" */; - buildPhases = ( - 2231DEABFAA9DFF0395E37D0439C847A /* Headers */, - E37C018D16F7A9E23EBB2127E4208FB2 /* Sources */, - 768DA24AC38B3F4FF4E43462EF2D16D1 /* Frameworks */, - 84B027B420323F9A6E4C1C78F14E89B1 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - FE5734456B2760D22BEA6C779DE58063 /* PBXTargetDependency */, - B6233E26A39BE257B0C37351E0535B65 /* PBXTargetDependency */, - 3B63CD676BFE54AF67782F073B59739E /* PBXTargetDependency */, - ); - name = IQKeyboardToolbarManager; - productName = IQKeyboardToolbarManager; - productReference = FA727BF5D9541C98C22C9ECC911576E2 /* IQKeyboardToolbarManager */; - productType = "com.apple.product-type.framework"; - }; - 0981F89DB5DA3FFCFFEBDE1F56287054 /* IQKeyboardReturnManager */ = { - isa = PBXNativeTarget; - buildConfigurationList = C96DD47E92A8BE265E306DE07C36E79B /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager" */; - buildPhases = ( - 909E48B9D1E55880769DD61D4553D0F0 /* Headers */, - E5E43063781A06C4BAFDDB90C2E8AA70 /* Sources */, - C62A9C83F0EBDACB922F2904AD526C9D /* Frameworks */, - D8D886536BC3686BB5D8DC2B1A637D27 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - CD38A3D9AAECFE0FA6882F9BC75CCCB6 /* PBXTargetDependency */, - C58604D9F0BC8FAAEE422C8CF5829668 /* PBXTargetDependency */, - ); - name = IQKeyboardReturnManager; - productName = IQKeyboardReturnManager; - productReference = 15848DEC7727A809830E7F6FC1B6CE0F /* IQKeyboardReturnManager */; - productType = "com.apple.product-type.framework"; - }; 1001C16510D946B47CFF8B19DBC0B787 /* FirebaseCore-FirebaseCore_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 7373B65621B275793394FC1FDDECFC0C /* Build configuration list for PBXNativeTarget "FirebaseCore-FirebaseCore_Privacy" */; + buildConfigurationList = 1F62EBA619E8F7F41D706C63499598A5 /* Build configuration list for PBXNativeTarget "FirebaseCore-FirebaseCore_Privacy" */; buildPhases = ( - DB4DD89191644B23F8A1499EF3D39723 /* Sources */, - BFCC274DA07CBF4F3CDB760054C16A5D /* Frameworks */, - CEC912571569FA6CC6856385BD71E9D9 /* Resources */, + C20B74D925DFDA380B7D6A1E5F26631F /* Sources */, + 00AFBE30165BCFDFF40033BBF9F5399A /* Frameworks */, + DBAD8FB55D97C308F4DCCF4D78AF8E8A /* Resources */, ); buildRules = ( ); @@ -6415,26 +5149,6 @@ productReference = 8BB937B1C0DFFCF92F41861C2BC54DDA /* FirebaseCore-FirebaseCore_Privacy */; productType = "com.apple.product-type.bundle"; }; - 12890DE3ABBC2CA295E108358D85EE69 /* IQTextView */ = { - isa = PBXNativeTarget; - buildConfigurationList = 8244633BD3A6491EAF9FE7B565296A1D /* Build configuration list for PBXNativeTarget "IQTextView" */; - buildPhases = ( - 9686DF9B9FB3D169B7E0C3DBB42F215E /* Headers */, - 777DFCEBD1FE285F39F2092772A35344 /* Sources */, - DE76C3657CF9DC6B2F296A1BB6E59358 /* Frameworks */, - 1470DDF01DE9C03DD600DB84AB712567 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 81BACD5CA40B5EABDCBE6C869C417327 /* PBXTargetDependency */, - 71CE48A48037F7A6FA98F928A2D324C8 /* PBXTargetDependency */, - ); - name = IQTextView; - productName = IQTextView; - productReference = 0DFD4541FF9DAA31A2FC2A7F6D03ED22 /* IQTextView */; - productType = "com.apple.product-type.framework"; - }; 193ABD5AFA62C1AE36E93085CBACB97D /* Pods-Examples-ConsentViewController_Example */ = { isa = PBXNativeTarget; buildConfigurationList = AC56FF05BC8C596E65C45E159EA59B15 /* Build configuration list for PBXNativeTarget "Pods-Examples-ConsentViewController_Example" */; @@ -6447,11 +5161,11 @@ buildRules = ( ); dependencies = ( - B43F4AF5A5D1F56BB4AC18AF3FCE9ED9 /* PBXTargetDependency */, - FF4B8BC468732C1AECE60414C2B88DBC /* PBXTargetDependency */, - 6C164BDD3C6E1BFF076088C7C22237E6 /* PBXTargetDependency */, - BAB82E7223D4D057AAE5DDC0843AC7E9 /* PBXTargetDependency */, - 33AA026C3D09D342F9CA54950CA2E4A0 /* PBXTargetDependency */, + FF05DC1EC9B94D4EFE4368D8BE3D82CB /* PBXTargetDependency */, + 9524AC90436E279462CE4A63F0DDE13B /* PBXTargetDependency */, + 096286FB17FB76301B401832862BE3CA /* PBXTargetDependency */, + F65A1E09790516FF8FDE81398F310089 /* PBXTargetDependency */, + 9E59D5A10727FE579239DB81FBF4B592 /* PBXTargetDependency */, ); name = "Pods-Examples-ConsentViewController_Example"; productName = Pods_Examples_ConsentViewController_Example; @@ -6470,15 +5184,15 @@ buildRules = ( ); dependencies = ( - 3B6123B79DEB06E0A31F47FB201AC2A9 /* PBXTargetDependency */, - 1ABBCC1DF42A96371A604EFCDC8F1960 /* PBXTargetDependency */, - CF6F5EB013E219A3E0A349448FB19178 /* PBXTargetDependency */, - 9B9A3D435A8AA8AF3CDAC4F0117A1D8D /* PBXTargetDependency */, - 7A6E00C1559043F39108C9D1DB7BF17A /* PBXTargetDependency */, - 967BCBADC2670AEE9B8B52E40529FE3F /* PBXTargetDependency */, - E572771101D6FF72FFD6A1A1FDF5F71E /* PBXTargetDependency */, - C6E6B39797ECED7F922D0C48DA40A09A /* PBXTargetDependency */, - F45C27804A971C54DE71617F6AB0FEDA /* PBXTargetDependency */, + 5A63370535C3B5BE9224CB57811C8B55 /* PBXTargetDependency */, + BFD0F1FF419CC7A996C6FCBECB4CD110 /* PBXTargetDependency */, + 6AF56D11A12B4B1AF67C71DF86664E28 /* PBXTargetDependency */, + 09111E3F04C48557425F35558F5D902A /* PBXTargetDependency */, + 43E1E82100778A8B62235F56B15D0E88 /* PBXTargetDependency */, + B9AEEDC85DCA98D8CF6859998F92B76A /* PBXTargetDependency */, + 13F9A62D46D6D9CCD2022A126B1FD360 /* PBXTargetDependency */, + C05F93452AE9C05293C2A2BF748941F3 /* PBXTargetDependency */, + 30CAB7E517E2F75170B4D04137E15069 /* PBXTargetDependency */, ); name = "Pods-Tests-SPGDPRExampleAppUITests"; productName = Pods_Tests_SPGDPRExampleAppUITests; @@ -6487,11 +5201,11 @@ }; 1BFBEDBF7E03729D43C96530EE190825 /* PromisesObjC-FBLPromises_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 584139164D6737A69E7A1563180B2BD5 /* Build configuration list for PBXNativeTarget "PromisesObjC-FBLPromises_Privacy" */; + buildConfigurationList = FF8DA67CFDEF66D8922CC53C84ACF64A /* Build configuration list for PBXNativeTarget "PromisesObjC-FBLPromises_Privacy" */; buildPhases = ( - 8EC5632F94A27E3B473E5AF41A9C46C4 /* Sources */, - 94D9A52BA054208A73780BC730F35D83 /* Frameworks */, - 54A034C1252A1504BB66E8C821F5FB11 /* Resources */, + CD629858F6FF3F526CA896C508655DFA /* Sources */, + E4E76BFA250B5A19C6DB813CF1598A22 /* Frameworks */, + BCBB3CAE02DC79722433653B33C4C966 /* Resources */, ); buildRules = ( ); @@ -6514,10 +5228,10 @@ buildRules = ( ); dependencies = ( - 549E803CF8AC3B97AFC095FB7EFB3F9D /* PBXTargetDependency */, - 4AED70B3157D5E677F47C1FEF7549487 /* PBXTargetDependency */, - 24A2D233C1596674319520E589C9345E /* PBXTargetDependency */, - B9F790FA1204FCB0B6C93531D40E9496 /* PBXTargetDependency */, + 1048FC6A62984D643CA5EF936BB6925A /* PBXTargetDependency */, + D28E12DE4141E022D139E6781F04B548 /* PBXTargetDependency */, + 7A1EAE0FA25A039190209BAD17297E8F /* PBXTargetDependency */, + 7BE4FD8DDCEE5F8EEA9F594F6F696D18 /* PBXTargetDependency */, ); name = "Pods-Examples-AuthExample"; productName = Pods_Examples_AuthExample; @@ -6544,44 +5258,24 @@ }; 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */ = { isa = PBXNativeTarget; - buildConfigurationList = FBF2F7551D15B3FBAB05A47254E9F869 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */; + buildConfigurationList = 1C4BE6933B19E792235F6ED3C244AE69 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */; buildPhases = ( - 5324B42C4067ACE6FC425246829D2B36 /* Headers */, - FC2DD432DAD8855EAC92D22A02C37AA4 /* Sources */, - 4586B31D5DDFC2E92F122F59FE3FFBF2 /* Frameworks */, - 54794DD9C766F105175CCA8DEC02F88F /* Resources */, + 663DA05AFBBABB0EA946A4C3F0F0579C /* Headers */, + 71EF59A2696F73D2A233018EEB276AD1 /* Sources */, + 8D772783026895CD9A412AA08CCC5B13 /* Frameworks */, + D19BE19ED43E16C7B17F7036470C6835 /* Resources */, ); buildRules = ( ); dependencies = ( - 900A9C1E9BDB433E8DC18415FFA96ABF /* PBXTargetDependency */, - 28524104158BAC9D84C7DBE21FC216CA /* PBXTargetDependency */, + 4EF77CBB6F25C72C119E4B2082EF7A0A /* PBXTargetDependency */, + FECCC6C14A5E6C9CC139A94BB918DA6C /* PBXTargetDependency */, ); name = FirebaseCoreInternal; productName = FirebaseCoreInternal; productReference = 148D0F9E8C7373FEAF40D800FC5F1BAA /* FirebaseCoreInternal */; productType = "com.apple.product-type.framework"; }; - 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */ = { - isa = PBXNativeTarget; - buildConfigurationList = 7271A8AF871EE482A86F0F6A5D5FAF43 /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification" */; - buildPhases = ( - C83C1DAFBD5AEE15F66013D0B11E71BD /* Headers */, - 4313F6C1087CE72D0B6D0ACBDF17C7EA /* Sources */, - C72BD6F0A91BCDBBE181B375EC3A1544 /* Frameworks */, - BC6780DEAA16C85DEA9909CC95CA5059 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 34E7D091DD16CC14BDBC9DA4E28A8B5B /* PBXTargetDependency */, - 8E8EBB43284E83DBEEA09348876304E0 /* PBXTargetDependency */, - ); - name = IQTextInputViewNotification; - productName = IQTextInputViewNotification; - productReference = 06E5B413FEA5A600D76636DA132F8FB9 /* IQTextInputViewNotification */; - productType = "com.apple.product-type.framework"; - }; 28BE3303E3F4ECC2BDF79B1D886D2E74 /* Quick-tvOS */ = { isa = PBXNativeTarget; buildConfigurationList = 257CB04BA79C2D718D4AC1E76481EFA7 /* Build configuration list for PBXNativeTarget "Quick-tvOS" */; @@ -6602,11 +5296,11 @@ }; 2949783F7EDB27AD4666B5427B63DC79 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 0DF35521CC8895B60E55B132E01EC6E3 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal-FirebaseCoreInternal_Privacy" */; + buildConfigurationList = 41DE24283FB7479957D1BB52288806BF /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal-FirebaseCoreInternal_Privacy" */; buildPhases = ( - 6E0091E4ECEB48F43FD673C8B4CD3BB1 /* Sources */, - 26376FA8601049B60F39D906C5A257BD /* Frameworks */, - 47CD91EF908FBD382254397D35E7456A /* Resources */, + F0CD3E96FC530393D4089539032D67A3 /* Sources */, + F832CA0656E0F55F7D211AF5F7BB928C /* Frameworks */, + 605B05F972B09E242A74D8CDB99AC275 /* Resources */, ); buildRules = ( ); @@ -6617,36 +5311,19 @@ productReference = 4DB03FD262B678178A44272143846563 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */; productType = "com.apple.product-type.bundle"; }; - 2B8FF445A5162845FAB9EC00FC92B694 /* IQKeyboardNotification-IQKeyboardNotification */ = { - isa = PBXNativeTarget; - buildConfigurationList = 486BDD66DBDF5FAB3ACB3C712F8DA481 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification-IQKeyboardNotification" */; - buildPhases = ( - 438EC022B8EE814DC03BCDD703AAAD2E /* Sources */, - 3654099DF15C121851622091E2B4DB65 /* Frameworks */, - 038158E00E3BD4614619FCE1517297BF /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "IQKeyboardNotification-IQKeyboardNotification"; - productName = IQKeyboardNotification; - productReference = 120BD4C670EF00F4D5A40AA4B863A7AE /* IQKeyboardNotification-IQKeyboardNotification */; - productType = "com.apple.product-type.bundle"; - }; 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */ = { isa = PBXNativeTarget; - buildConfigurationList = 99E30F74ACFEEF95AE57851BA6C5BF83 /* Build configuration list for PBXNativeTarget "PromisesObjC" */; + buildConfigurationList = 292A4274262212A5A9ED6259A7597242 /* Build configuration list for PBXNativeTarget "PromisesObjC" */; buildPhases = ( - C219D6D6305F7F49DA55E48482AB7E24 /* Headers */, - 37874208BF93ED050FD0300287F0342A /* Sources */, - 40572B615C6B4FBEDB33A62E175DB37D /* Frameworks */, - F7F43A67A0FF335196A76FEE1E7A802B /* Resources */, + BB1B3D5EF0615385A223BBAA5B7F1CA7 /* Headers */, + CB08316D48AED5E76A9C34649A36B5D1 /* Sources */, + D918DDC7629678B5DC11D8800D4EF423 /* Frameworks */, + ADBD8AF9D56583E6B32C98E1CBF42453 /* Resources */, ); buildRules = ( ); dependencies = ( - 0161926CB0B89E977B5D846E981DEF69 /* PBXTargetDependency */, + D867FD2A260A045499CDBDD6F2C7EEC5 /* PBXTargetDependency */, ); name = PromisesObjC; productName = FBLPromises; @@ -6665,10 +5342,10 @@ buildRules = ( ); dependencies = ( - 873D9B19C821ADD71579ECE2BB496BC5 /* PBXTargetDependency */, - FFDB195C8B26840623CC1A5018EBAA27 /* PBXTargetDependency */, - 5AE1945BF6F4DD72C7A3B84E594ED88C /* PBXTargetDependency */, - AD4700B18A9E64DA2E8FDAE373646150 /* PBXTargetDependency */, + 550895E380E21DA4548416890D50EF51 /* PBXTargetDependency */, + F543DB89F3217728412158C60D5CED2F /* PBXTargetDependency */, + C3B55C7FA993E36F079C2BB8D7B0A8E0 /* PBXTargetDependency */, + A391C8354F239136B18D457B8A2DD3D6 /* PBXTargetDependency */, ); name = "Pods-Examples-NativeMessageExample"; productName = Pods_Examples_NativeMessageExample; @@ -6687,7 +5364,7 @@ buildRules = ( ); dependencies = ( - 5A68C486375EB3F183E2C95D168367A1 /* PBXTargetDependency */, + 5318DE6514EE9E78301CD3AFE77D9D57 /* PBXTargetDependency */, ); name = CwlCatchException; productName = CwlCatchException; @@ -6706,7 +5383,7 @@ buildRules = ( ); dependencies = ( - FA876FA559999F8513DFF7907A6D3F57 /* PBXTargetDependency */, + A095ABE2EE14A1B272843EC43AF32497 /* PBXTargetDependency */, ); name = "Nimble-iOS"; productName = Nimble; @@ -6743,7 +5420,7 @@ buildRules = ( ); dependencies = ( - 275A556D3A3C2644B3A911B43C332F0E /* PBXTargetDependency */, + E77F0EA8AAF2EBA0C1E97FB92B88A087 /* PBXTargetDependency */, ); name = Wormholy; productName = Wormholy; @@ -6752,11 +5429,11 @@ }; 3EB14444A17F9D4F1F697F7C1FF32245 /* FirebaseInstallations-FirebaseInstallations_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 898CA5EFF2E0150911B41009E0516A20 /* Build configuration list for PBXNativeTarget "FirebaseInstallations-FirebaseInstallations_Privacy" */; + buildConfigurationList = 09F47D5B53DBDD6B0C9CA4AB0D1A87B5 /* Build configuration list for PBXNativeTarget "FirebaseInstallations-FirebaseInstallations_Privacy" */; buildPhases = ( - 09213BF2FC1623B0E10048F02D295EA8 /* Sources */, - 6DB090D3625DF5A0A943B097B684FAFC /* Frameworks */, - EE328A3063F3B93D42304EEB0BCC7D41 /* Resources */, + 032FB74034A15AFAE749A02A82D93916 /* Sources */, + 4955360E17BE11FC556397A260F97F4D /* Frameworks */, + 2D47CEB233DFC9C5CE18D67102A9748B /* Resources */, ); buildRules = ( ); @@ -6779,23 +5456,23 @@ buildRules = ( ); dependencies = ( - 2CF004C850451E5D282AE15D578479CB /* PBXTargetDependency */, - C4DBE24AD383A405FEA227E58FAC4C3E /* PBXTargetDependency */, - 50E2FBD45DFB71F3477C6507B4738827 /* PBXTargetDependency */, - 967CF81DE76D7B163F5977DD694C9B75 /* PBXTargetDependency */, - FA77D4AF9372B865829614D83E36B131 /* PBXTargetDependency */, - 12C6A5AAEDF9FE2BD91CB9F0681CF5A0 /* PBXTargetDependency */, - B9E3C3975EBACA25402657897E2C7383 /* PBXTargetDependency */, - 12F2EE3DD37624CB384DDDB5FF0125F3 /* PBXTargetDependency */, - 3C77440D7F194776F95176990578B9DC /* PBXTargetDependency */, - 6941983619C754F210B3F425CFA5D1F2 /* PBXTargetDependency */, - 6C3AFB25DD0F253AA4CB180AF8DB5064 /* PBXTargetDependency */, - 6DD3333F4FD7151B39E82F6706B6A016 /* PBXTargetDependency */, - 79A01E215082614E3EA6081C65EA6D96 /* PBXTargetDependency */, - F381DED8F54682649181BA2363DF0C44 /* PBXTargetDependency */, - 453CE114AE61603BD1959B7C9F8DB1F2 /* PBXTargetDependency */, - C74B1EBA518E93DB92BA3E12B0C54DF0 /* PBXTargetDependency */, - 025CDD6809F8D0A10DD27ED8531039AA /* PBXTargetDependency */, + BA2B7AA54F0B1B85108C0417CD5A0065 /* PBXTargetDependency */, + B7D64A10ECB8F00BE8A28C2E69E6BD26 /* PBXTargetDependency */, + 18B55D384E1748A5BB1FFBEDA15FE1E8 /* PBXTargetDependency */, + 23B09BF2C31D37012FB732B03DAFA82F /* PBXTargetDependency */, + 72A0DBF33351322BA81F88F6DD99A998 /* PBXTargetDependency */, + BC55B437DD16B82393D78EF568D62AC6 /* PBXTargetDependency */, + 66B3B11053D890835178B472C09E691E /* PBXTargetDependency */, + 51AF4FC40FAC2FD75A7AC1C1041C5E27 /* PBXTargetDependency */, + 212BFEFFD7068ECA8EB23910599D35BA /* PBXTargetDependency */, + CA86BDE0BA826FCA195A172661F18105 /* PBXTargetDependency */, + 2375A5FBFBB652502814110C5896AA5F /* PBXTargetDependency */, + 8526BC79D42D55F9B44E9FB3497D8C1F /* PBXTargetDependency */, + 4ACA639AB8AC4EF5E8451514668F46B1 /* PBXTargetDependency */, + 0AB137038F492F6F53720242FBF30CEF /* PBXTargetDependency */, + 3B300B2BDD13BF7876A0305CF0587FFD /* PBXTargetDependency */, + 590862425926C30E03D2EBB627EF227B /* PBXTargetDependency */, + F669EB291B4D815077CDBCB875A4D0DF /* PBXTargetDependency */, ); name = "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests"; productName = Pods_Tests_FirebaseTests_SourcepointFirebaseDemoUITests; @@ -6804,79 +5481,32 @@ }; 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */ = { isa = PBXNativeTarget; - buildConfigurationList = 6A21E486CD1D6FADF816EDED6A7FF6EF /* Build configuration list for PBXNativeTarget "FirebaseCore" */; + buildConfigurationList = 61D8C2BA98D653234937AED8F9CEE32F /* Build configuration list for PBXNativeTarget "FirebaseCore" */; buildPhases = ( - 28D3F297996E2D31D6BACF92F952EC9C /* Headers */, - 43AAED685D79A323AA2522D7983F67F9 /* Sources */, - 6491404F2F73F57F2611028F216781B8 /* Frameworks */, - EC16E8764425D58664210F5E9C8693A5 /* Resources */, + CC0A1F5DED71C9052D21B3388DA37C53 /* Headers */, + 215ED4ECB0E996DFEBB6CB8A9EB375A3 /* Sources */, + C79745201E350BEB153E6548B20AF85B /* Frameworks */, + 2D52D6E9D99B1C85AC1E039C9F332247 /* Resources */, ); buildRules = ( ); dependencies = ( - 575E0100BE19865CD7868774B175B742 /* PBXTargetDependency */, - 05832344E8A5209A1C3FA0D5FD4A72D6 /* PBXTargetDependency */, - 5DDD4CB22B521340839000410AF418E4 /* PBXTargetDependency */, + 761F8F7B8C1B413BFFC62C297B49F30B /* PBXTargetDependency */, + F432D2CBA9D9D285A297BE49951C6B20 /* PBXTargetDependency */, + 8970BA685CE7843531E70DA4AB3EB00E /* PBXTargetDependency */, ); name = FirebaseCore; productName = FirebaseCore; productReference = E2B63D462DB7F827C4B11FD51E4F8E2D /* FirebaseCore */; productType = "com.apple.product-type.framework"; }; - 4502C7427440BEB17A50C0BF6E638A85 /* IQTextInputViewNotification-IQTextInputViewNotification */ = { - isa = PBXNativeTarget; - buildConfigurationList = 79112FA6765628ED10F3B221D35A2037 /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification-IQTextInputViewNotification" */; - buildPhases = ( - BD07B3042122306A2AAD91496D89E760 /* Sources */, - 000744A22F056D1ACFFF53D76DA66D07 /* Frameworks */, - ABDD94A4D5B1A728B1FDC3C6A9C6C17F /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "IQTextInputViewNotification-IQTextInputViewNotification"; - productName = IQTextInputViewNotification; - productReference = F956E149F5B195BB7833F97FC6211AE8 /* IQTextInputViewNotification-IQTextInputViewNotification */; - productType = "com.apple.product-type.bundle"; - }; - 4525581753223597AA2857411A270999 /* Pods-Examples-SourcePointMetaApp */ = { - isa = PBXNativeTarget; - buildConfigurationList = B71B7EE10E636DCC4A2F895F82A93FBE /* Build configuration list for PBXNativeTarget "Pods-Examples-SourcePointMetaApp" */; - buildPhases = ( - 1A4687A154BE23C9E4B4C3AEF733815B /* Headers */, - 9AF390378EEBE0C37CD10E9AA4A1E49D /* Sources */, - 6373234F020EF54696372FB178A65FE4 /* Frameworks */, - 603094099720BF3CBD1430AA9522BEE0 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - E089603DED3116AFF0EBF2C6FA807C35 /* PBXTargetDependency */, - 135514326C96FF72B02A8D025ACD8E32 /* PBXTargetDependency */, - 5F2A125CFA47561B0F62D11EFA31FBDD /* PBXTargetDependency */, - F72A87A5DBA4B896DD5271C188F5AED7 /* PBXTargetDependency */, - 4950CB0D090DC7A1B2EFC61B50973238 /* PBXTargetDependency */, - 2723A42D84F2D2890CEB143F85911502 /* PBXTargetDependency */, - 08F9A089A3B6E8A0FF4640E92B5A4C4F /* PBXTargetDependency */, - E324064A76F5E58570B5D4A50CA2DBC5 /* PBXTargetDependency */, - 496CB72D766E14FB1415D814AA1C4DC6 /* PBXTargetDependency */, - 0D0AA8CF8029B773F064E5ECBC5F0EB0 /* PBXTargetDependency */, - 81DD8805EDD1A7BD63EF56065A775858 /* PBXTargetDependency */, - 8A366EA391A40C331C0480265A5BE22C /* PBXTargetDependency */, - ); - name = "Pods-Examples-SourcePointMetaApp"; - productName = Pods_Examples_SourcePointMetaApp; - productReference = 0215672A26243634BDD3066654D7E3D6 /* Pods-Examples-SourcePointMetaApp */; - productType = "com.apple.product-type.framework"; - }; 55522A91938FF505CFEBEAD2DD85AE2D /* nanopb-nanopb_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = D99C2FEB34DC0FFE7CC96B41DE3ECD52 /* Build configuration list for PBXNativeTarget "nanopb-nanopb_Privacy" */; + buildConfigurationList = 3561FA1B00E318837192B1D66095CA38 /* Build configuration list for PBXNativeTarget "nanopb-nanopb_Privacy" */; buildPhases = ( - 808DF4FFAEC10E89279706577BA22300 /* Sources */, - 48699882B71F910BD7EC1AC8932B936A /* Frameworks */, - E128BA118583D27F2737D354591CCD00 /* Resources */, + B25871860C8FA0875D29E758FCFF857D /* Sources */, + BEF522D6ADC213878101BFDC00ED2323 /* Frameworks */, + BB3EAF8A3DE635861CD6DAD71F102FB7 /* Resources */, ); buildRules = ( ); @@ -6889,11 +5519,11 @@ }; 5D0718052BFEE502C9D9BEC44BDCFA76 /* ConsentViewController-tvOS-ConsentViewController */ = { isa = PBXNativeTarget; - buildConfigurationList = A15181D4FC3350625E622B5721FFEE60 /* Build configuration list for PBXNativeTarget "ConsentViewController-tvOS-ConsentViewController" */; + buildConfigurationList = CE1413B7499B3CAC11029C1037489630 /* Build configuration list for PBXNativeTarget "ConsentViewController-tvOS-ConsentViewController" */; buildPhases = ( - E3AC4802C334019797172D48F471062A /* Sources */, - C5765F1338BEAC2F44A2331E1F15FDEC /* Frameworks */, - F2FB2D1AD54748C77F7BC0783FE38621 /* Resources */, + 4F2BFA9370E672B7A9976CF284F86AF1 /* Sources */, + 33F74302965F60BACB5A36518A9BEC24 /* Frameworks */, + BF16F628CB475DF418CFE33F433FB8C5 /* Resources */, ); buildRules = ( ); @@ -6906,11 +5536,11 @@ }; 5FF1A58DEEC5DB749FCD6C120B97CC82 /* GoogleUtilities-GoogleUtilities_Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = AD8520DF4CD939F3DE9594BB44260177 /* Build configuration list for PBXNativeTarget "GoogleUtilities-GoogleUtilities_Privacy" */; + buildConfigurationList = 306B5B2DC158483B3798B46CE47F8025 /* Build configuration list for PBXNativeTarget "GoogleUtilities-GoogleUtilities_Privacy" */; buildPhases = ( - 5A76977681B168FA1CF3E22D1263B8B9 /* Sources */, - 55EEE6BEC89AB4B4E0B4A8F62E92A16A /* Frameworks */, - 78B337D0DDCBCDD88A3B957D339723B7 /* Resources */, + D66B039953345EDE241320DD2650B6B1 /* Sources */, + 73C565589F3850FC1AA6FB19D0AB1C16 /* Frameworks */, + 2EACE94FFB20F6C3ECE37463620BB75E /* Resources */, ); buildRules = ( ); @@ -6921,23 +5551,6 @@ productReference = 44E291D18340EAC3F761346198515323 /* GoogleUtilities-GoogleUtilities_Privacy */; productType = "com.apple.product-type.bundle"; }; - 7C5613175BBC4BF67E36DB4FBEBC01D0 /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */ = { - isa = PBXNativeTarget; - buildConfigurationList = 433737C2FF9F1D1A1916E4C80A7EA0D1 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager-IQKeyboardToolbarManager" */; - buildPhases = ( - D2B4B6C36824E75709B3E039BFEEA15D /* Sources */, - A9CC4CBF4597D2F8FB86996E644391A1 /* Frameworks */, - 126A45DF7B706E3570AB273FDC2FE256 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "IQKeyboardToolbarManager-IQKeyboardToolbarManager"; - productName = IQKeyboardToolbarManager; - productReference = 80A40EDA3AF0499BDBCFF09467BB49AD /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */; - productType = "com.apple.product-type.bundle"; - }; 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */ = { isa = PBXNativeTarget; buildConfigurationList = AA90D24EC2103CDBDE0E4AF5165C771C /* Build configuration list for PBXNativeTarget "ConsentViewController-iOS" */; @@ -6950,8 +5563,8 @@ buildRules = ( ); dependencies = ( - 2B27F3C24B500C1A990C12374F3317BB /* PBXTargetDependency */, - 13F3854DCB5D2E5307F3011594368E0A /* PBXTargetDependency */, + BB34B068F0230D679261B3DC3256F3B9 /* PBXTargetDependency */, + 1D6D47A33B236FD288CBC53D661E13B5 /* PBXTargetDependency */, ); name = "ConsentViewController-iOS"; productName = ConsentViewController; @@ -6960,43 +5573,26 @@ }; 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */ = { isa = PBXNativeTarget; - buildConfigurationList = 2BBC4D609AAC3EB076227051A51C2317 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */; + buildConfigurationList = 518BBA4A971F7CB5BC49F64D8F24416A /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */; buildPhases = ( - 01C512089410C6EFB3BBA9A31780CE7D /* Headers */, - 20AE7DC875AD08577C3703D039EF1560 /* Sources */, - D4596A33CC8E7284C36A9A6E4D8C8E41 /* Frameworks */, - 40CB4587FDDCE268CCAE11F956BB0AC3 /* Resources */, + 8AAA228EA457D04106797F86602BDB4F /* Headers */, + F91FE23AFFB9331C0932D287B1693575 /* Sources */, + 550EF25F98C458F8D90B6A3BDB12B33C /* Frameworks */, + 2DBE57F3DDE83553C8EEADCA89A5B81A /* Resources */, ); buildRules = ( ); dependencies = ( - D93F408C1C76C40F3A5123975F7E1C08 /* PBXTargetDependency */, - 37E5E6E075B3A94D4B01DB4B551552E5 /* PBXTargetDependency */, - 404E553E56929502E1C60237DBB3AB85 /* PBXTargetDependency */, - A4FBEB25F2C2D0724307D8AF81C08E65 /* PBXTargetDependency */, + C3A909A18018374C8C1C1632AABA8144 /* PBXTargetDependency */, + 7B3219C4C6DD0E30A76F90DF02588B29 /* PBXTargetDependency */, + BF1A9AD2E677C6982FD6CF4A45846E72 /* PBXTargetDependency */, + 7252DEE5523005EABFB6A269D6817301 /* PBXTargetDependency */, ); name = FirebaseInstallations; productName = FirebaseInstallations; productReference = 13C8C8B254851998F9289F71229B28A2 /* FirebaseInstallations */; productType = "com.apple.product-type.framework"; }; - 88810798DA63A2F6611B0970EA276DEC /* IQKeyboardReturnManager-IQKeyboardReturnManager */ = { - isa = PBXNativeTarget; - buildConfigurationList = 401DBC16ED3825ED5C7AC8777548FE91 /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager-IQKeyboardReturnManager" */; - buildPhases = ( - 30B935076EFCF22BADA8B2DA35DD121D /* Sources */, - FCEA13C9055643FE22634A8599C28503 /* Frameworks */, - 0DA154C1E129BD364DD6533E4ED21EAA /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "IQKeyboardReturnManager-IQKeyboardReturnManager"; - productName = IQKeyboardReturnManager; - productReference = 110BD425B6CAD6801539E2C6AB6E0662 /* IQKeyboardReturnManager-IQKeyboardReturnManager */; - productType = "com.apple.product-type.bundle"; - }; 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */ = { isa = PBXNativeTarget; buildConfigurationList = 8717ED24B5ADB091C4F7A536B88C1955 /* Build configuration list for PBXNativeTarget "Quick-iOS" */; @@ -7017,17 +5613,17 @@ }; 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */ = { isa = PBXNativeTarget; - buildConfigurationList = B30C652DAAE17BC97480108EB67250A0 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; + buildConfigurationList = EEAB4264B94CDAD9F987D19B3516B567 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; buildPhases = ( - F3FA0B1352CADBE4D0FA3DDFDA9F6258 /* Headers */, - 89CAC34AD43FC7F99A67F1FE36594F44 /* Sources */, - B846584335CD0B5FA518D2859435421F /* Frameworks */, - F5AE537C56CDBDED461070DDC66E4372 /* Resources */, + E9DD34258C0A106E520510CB22E28DA7 /* Headers */, + 3876C48674F0D6469B27F52069E3C8F5 /* Sources */, + E39D9BDC2B8FF1D7D0CD76C299B7C589 /* Frameworks */, + 2D981CE8F96BA07B3B5AE42DD2B180F9 /* Resources */, ); buildRules = ( ); dependencies = ( - D176F50792D8630DAC4147DAD4CFF5A8 /* PBXTargetDependency */, + F56D8F333557735D4E6CF7131AB2632B /* PBXTargetDependency */, ); name = GoogleUtilities; productName = GoogleUtilities; @@ -7036,11 +5632,11 @@ }; 93CEC7FFB57A497DE49471C5D9517C13 /* Wormholy-Wormholy */ = { isa = PBXNativeTarget; - buildConfigurationList = 42523495ED6DDC79EB50B80655F2FAD7 /* Build configuration list for PBXNativeTarget "Wormholy-Wormholy" */; + buildConfigurationList = AEAA2D7D25147D02EC6E6F1008B2B0DE /* Build configuration list for PBXNativeTarget "Wormholy-Wormholy" */; buildPhases = ( - 7FBF5CB7A6338ADCB7FB5706A4BB5D4A /* Sources */, - 0A5198C27E33B953ED2DF643920BC6FB /* Frameworks */, - 18A35BB8F94994E7BF19B84E62C5B4DA /* Resources */, + 2A9E25CE01811CCDC9D164403AC34A08 /* Sources */, + 23F5BDB5B129EC7D2E849B91FE3EF67B /* Frameworks */, + AA9A360C63C648BB1782B14BD7B9E2BC /* Resources */, ); buildRules = ( ); @@ -7063,67 +5659,14 @@ buildRules = ( ); dependencies = ( - 45C1F43982D53D25F36EEEE3E0E53846 /* PBXTargetDependency */, - D4BFFACD854205F7E4CE273B991DDC12 /* PBXTargetDependency */, + 501BCD449DA341188F8E03BFC68302BD /* PBXTargetDependency */, + 7578798A5C2F091BBDDDA8CB0D8DDF71 /* PBXTargetDependency */, ); name = "ConsentViewController-tvOS"; productName = ConsentViewController; productReference = 5DC2E71595175144336387BD6D2DE6BD /* ConsentViewController-tvOS */; productType = "com.apple.product-type.framework"; }; - 982A68D37F5DCBC1FC1FDC0BB2F0EB8E /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */ = { - isa = PBXNativeTarget; - buildConfigurationList = 57C20D375067F47300EF4A6323715370 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift-IQKeyboardManagerSwift" */; - buildPhases = ( - B4F06FB897997D51AC9DECA3DD3421CF /* Sources */, - A2CFC93830AA520275FF11AAA28A4594 /* Frameworks */, - 1EA540459F5AD5C8EAB8C815F6FCDDC8 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "IQKeyboardManagerSwift-IQKeyboardManagerSwift"; - productName = IQKeyboardManagerSwift; - productReference = 8D8069D3964814114ACEC3084C010B59 /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */; - productType = "com.apple.product-type.bundle"; - }; - A26E6FD851C20D652B2755C1464A9990 /* IQKeyboardNotification */ = { - isa = PBXNativeTarget; - buildConfigurationList = 70380F48246B5923842FDF6A0CE89726 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification" */; - buildPhases = ( - 22208EAF320311D959CCFFC1F5E576F5 /* Headers */, - 3F9A3B731D5216E632062C9B7F16FABB /* Sources */, - 2A031A8265B7D227A02918A943A64988 /* Frameworks */, - B683C59C48EF9963C2CDD820324D903B /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 930B7FA3E1A7E77FA6D28BDA58395FF4 /* PBXTargetDependency */, - ); - name = IQKeyboardNotification; - productName = IQKeyboardNotification; - productReference = FEF9AC89E9C4BD37AC0AB78B535D1CFC /* IQKeyboardNotification */; - productType = "com.apple.product-type.framework"; - }; - A6602BCAA6F4F932A586C41D0B7E019C /* IQTextView-IQTextView */ = { - isa = PBXNativeTarget; - buildConfigurationList = 090BFCBA155B7F3F0E0F283626E85DE0 /* Build configuration list for PBXNativeTarget "IQTextView-IQTextView" */; - buildPhases = ( - 4753E599053CD00360B2FB8AE61D428D /* Sources */, - 3C7CE62AE6796E4FADCD6027F116FFC1 /* Frameworks */, - 6DEBBC3842B3AFE109781A3772D84A68 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "IQTextView-IQTextView"; - productName = IQTextView; - productReference = 847044E56CBBCE1235A6F3CEF3F9F607 /* IQTextView-IQTextView */; - productType = "com.apple.product-type.bundle"; - }; A897D2D55F6D87795224F846F8ED3A36 /* Nimble-tvOS */ = { isa = PBXNativeTarget; buildConfigurationList = 0F156227FA0479F5E78F435E91240268 /* Build configuration list for PBXNativeTarget "Nimble-tvOS" */; @@ -7142,23 +5685,6 @@ productReference = 0D68F2DD4656E2DC0F28ED037671461F /* Nimble-tvOS */; productType = "com.apple.product-type.framework"; }; - B247F77A0CD5E19C8187A9BA1EB58C09 /* IQKeyboardToolbar-IQKeyboardToolbar */ = { - isa = PBXNativeTarget; - buildConfigurationList = 6CA6778A211DD4F32331F054CA967EC3 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar-IQKeyboardToolbar" */; - buildPhases = ( - 4C3DD626082BB69BA00784C65617F192 /* Sources */, - 0EB3B1D27605CFA64DC1B63D649D3673 /* Frameworks */, - F61A40F645930C896568C5F47E7C8B06 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "IQKeyboardToolbar-IQKeyboardToolbar"; - productName = IQKeyboardToolbar; - productReference = A16FD016E18EACCF6B23F219F2E236FE /* IQKeyboardToolbar-IQKeyboardToolbar */; - productType = "com.apple.product-type.bundle"; - }; B2B2FF503384A20E75FE77C54DAF94BD /* Pods-TVOSExampleAppUITests */ = { isa = PBXNativeTarget; buildConfigurationList = FA03436DBF5E9A5AB7D1C9927C448B72 /* Build configuration list for PBXNativeTarget "Pods-TVOSExampleAppUITests" */; @@ -7171,40 +5697,16 @@ buildRules = ( ); dependencies = ( - 42C670F8C291E587DBE85E898DDDD04A /* PBXTargetDependency */, - D19C01E5F6FFC0DA727283A5BB9C19EC /* PBXTargetDependency */, - 145684127DFD5FBB0A5C67D1E02E0967 /* PBXTargetDependency */, - EA8927A71C5FA29DEAAD75720CF0186C /* PBXTargetDependency */, + 167B1BDC26A8DFFCD47D9BD53C125410 /* PBXTargetDependency */, + B4DCEC83AE31150A3B0569EA267126A6 /* PBXTargetDependency */, + F78F65B1680A726EA32C57E1E20AE7B5 /* PBXTargetDependency */, + 43B33DE419550EC2523C54B1262DD15C /* PBXTargetDependency */, ); name = "Pods-TVOSExampleAppUITests"; productName = Pods_TVOSExampleAppUITests; productReference = 8FAD4B2C2A4A9820171E0345B3BFF0D7 /* Pods-TVOSExampleAppUITests */; productType = "com.apple.product-type.framework"; }; - B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */ = { - isa = PBXNativeTarget; - buildConfigurationList = FF39A522B38942441F5BDB892784EFD6 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift" */; - buildPhases = ( - F326145A20E41AC8735602A1B18E36C7 /* Headers */, - 42B6CB5BEB058CC73C023F96F36CDF87 /* Sources */, - 2FF0A8BC4FF9EA5AF851D461F0B4D496 /* Frameworks */, - 38C30B226F18FE6989B961018676343E /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - A0746EDE0E89B9C4AD5B0E1954D5BF44 /* PBXTargetDependency */, - 35B8000C0C27BE38B4F557C35F7E2554 /* PBXTargetDependency */, - 74751C64182586356164453C1CF1EAB1 /* PBXTargetDependency */, - 3741DAB3FB0889190920B54EE1991B7F /* PBXTargetDependency */, - 8D5E509CEF8FA3CD4FDC8FF241F07FFD /* PBXTargetDependency */, - C37279134AC6E75A0ED23CD60334388A /* PBXTargetDependency */, - ); - name = IQKeyboardManagerSwift; - productName = IQKeyboardManagerSwift; - productReference = A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */; - productType = "com.apple.product-type.framework"; - }; B53B7F92D01CEB33D7F5DC9D60305C13 /* Pods-Examples-SourcepointFirebaseDemo */ = { isa = PBXNativeTarget; buildConfigurationList = 7CB09BE506701397B736AB7176B621EF /* Build configuration list for PBXNativeTarget "Pods-Examples-SourcepointFirebaseDemo" */; @@ -7217,18 +5719,18 @@ buildRules = ( ); dependencies = ( - 8E078E25D0006D6F3BF60E3FE1D34C8D /* PBXTargetDependency */, - B70B9A6931524B857248EAE77DFE096E /* PBXTargetDependency */, - 79BDA129000B20C1AE3443DFD88F80E9 /* PBXTargetDependency */, - 15216ED3338DBDE73BDDEDEBDF6F59B4 /* PBXTargetDependency */, - FEF95178123BEDB3295192D97057E6E5 /* PBXTargetDependency */, - 66F0797D445AE35B4E25F2ADF9E6079F /* PBXTargetDependency */, - CE28F69F46E29161ED713248736DDDC4 /* PBXTargetDependency */, - 90B0A2F0BBAB1040657B72ECED880EEC /* PBXTargetDependency */, - BAE9A630370F6B02599E9BDE609CC63E /* PBXTargetDependency */, - F8EEBEBE654D824C629FD4E1C8F2EE21 /* PBXTargetDependency */, - 27615A99FFAE622D08FBE8468FD0D551 /* PBXTargetDependency */, - 7DECD9B7973A8DF5C0D6D7FCCC08518A /* PBXTargetDependency */, + CC3F53143BF304980664593B574320DD /* PBXTargetDependency */, + 4D72EA1DBEC9F5780294B5747E796BB5 /* PBXTargetDependency */, + 04147B586E5D55CC252E7E4A7C789668 /* PBXTargetDependency */, + C93B4B4ADD8D0EF88D89CF779AD79E65 /* PBXTargetDependency */, + F888481AC39815A9EB355AE40430C719 /* PBXTargetDependency */, + B28D64E4830E01BF513C1E184C3DF9A4 /* PBXTargetDependency */, + 5279CECE469B7A1318C4E1448EC9AF17 /* PBXTargetDependency */, + EB9CFACA716577F6C7869BDF3D7D96C6 /* PBXTargetDependency */, + 83A19B2BA15C2DC4C7C8551C47794807 /* PBXTargetDependency */, + 2BB009EC488C92B21FA45D49DD529798 /* PBXTargetDependency */, + 029D1C6CA381C1347E241EC8A9BEFC4F /* PBXTargetDependency */, + 0ACB98B5892CA1CD48B72DBDDBF4F381 /* PBXTargetDependency */, ); name = "Pods-Examples-SourcepointFirebaseDemo"; productName = Pods_Examples_SourcepointFirebaseDemo; @@ -7247,10 +5749,10 @@ buildRules = ( ); dependencies = ( - 88D8F4DD66BEC836ACB70044D5AC2BAB /* PBXTargetDependency */, - 12120CD383E9BB17CEE14AD6FC316359 /* PBXTargetDependency */, - 98583423E6246338D23B1811BEA3EE47 /* PBXTargetDependency */, - 1EA9203BBADD058AD649C6EF6710DCCD /* PBXTargetDependency */, + 8762495EF9AFB33497464B704E5CC798 /* PBXTargetDependency */, + 0C7CC4E47F6D32282E976C38D0247AAC /* PBXTargetDependency */, + 081AB4DD3B4685C926BB2BE92A79D578 /* PBXTargetDependency */, + 3C8DE18E7148E61AAC3ED6214C507E54 /* PBXTargetDependency */, ); name = "Pods-Examples-ObjC-ExampleApp"; productName = Pods_Examples_ObjC_ExampleApp; @@ -7259,12 +5761,12 @@ }; CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */ = { isa = PBXNativeTarget; - buildConfigurationList = 6F6F35FEE6A349E33F085A79DA040D7B /* Build configuration list for PBXNativeTarget "CwlCatchExceptionSupport" */; + buildConfigurationList = 5D8D9E0EA6130ED9F3B59896604767D2 /* Build configuration list for PBXNativeTarget "CwlCatchExceptionSupport" */; buildPhases = ( - C8C7A15CA8813ED2A6EA35491F32C67F /* Headers */, - DC2FA0F6B2C52A6FB8B5C8463DA7B4E7 /* Sources */, - D38852BBF73A5929287F1C9A0CA3FEF3 /* Frameworks */, - 014FC58AE0F658130064F80313ADEE9F /* Resources */, + 27FD3307A80EA0095A6366B47BF13904 /* Headers */, + E164E4B24EF438ABD7BDC033D18658BE /* Sources */, + 780544458F6B83DE6D85C2EA5D711E6B /* Frameworks */, + 97BEEA5D8BD52E872201362C8AE8315A /* Resources */, ); buildRules = ( ); @@ -7277,50 +5779,23 @@ }; D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */ = { isa = PBXNativeTarget; - buildConfigurationList = 40F354CEEC0E7EF3EB291A40F327FACE /* Build configuration list for PBXNativeTarget "nanopb" */; + buildConfigurationList = 30D9091F2437EBB7E8929218F017C0B2 /* Build configuration list for PBXNativeTarget "nanopb" */; buildPhases = ( - AEADF33647ADE0A3F99E241B947DBCB8 /* Headers */, - 4EE414C687BD3A4837DCCB29E149BB36 /* Sources */, - B1CD884C14F7DB422E3EADA9A825ECDC /* Frameworks */, - CEA5B55B6FAB00279EB7A201BB65A449 /* Resources */, + 6703E10C8426A714AB37A4441EB0995C /* Headers */, + 16EC21CA338F535BB485E75514F460A9 /* Sources */, + C9EF0514F2DEAF998DAE3CB3D27A6127 /* Frameworks */, + 006FF1B46CD47E14B7F1B43972E687D3 /* Resources */, ); buildRules = ( ); dependencies = ( - 846AD3C7FFE7DB3914DE04A8FD630E06 /* PBXTargetDependency */, + 594FA14863148D31B0F36D471142E4B7 /* PBXTargetDependency */, ); name = nanopb; productName = nanopb; productReference = 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */; productType = "com.apple.product-type.framework"; }; - D309F35D7DA6A2D903EB02EE558F8A74 /* Pods-Tests-SourcePointMetaAppUITests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 970202E1E901E13A711396780ADC71A2 /* Build configuration list for PBXNativeTarget "Pods-Tests-SourcePointMetaAppUITests" */; - buildPhases = ( - 62418A3DD2CD98A31D804AEED228B995 /* Headers */, - 29D792650F6318B783EC23C8BDF71B7B /* Sources */, - 5BEFF5E5967A4ED038E752652B2E241B /* Frameworks */, - 29893E137F4C657556197B6870631855 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - A9D6B724021609737E6DAA0DA19685B6 /* PBXTargetDependency */, - F9344716DAEB6E656DF4111FE4A3A843 /* PBXTargetDependency */, - A3769FB39A9E42F04675DF89D6E18049 /* PBXTargetDependency */, - 29A05B77C9DEE36FFE90389573D543EA /* PBXTargetDependency */, - 7DF74A0D4BCBD66D308685DBA015ADB1 /* PBXTargetDependency */, - 85E2177EBD209109CEB948E95736955D /* PBXTargetDependency */, - 62279DBE6BC0FF881DD2E63E2FCB720D /* PBXTargetDependency */, - 04712D854D474B61B28CEE3C41F6E3A1 /* PBXTargetDependency */, - 2295775C3F8AE8E0725BFDB54151EC2D /* PBXTargetDependency */, - ); - name = "Pods-Tests-SourcePointMetaAppUITests"; - productName = Pods_Tests_SourcePointMetaAppUITests; - productReference = 945767455B6DDF8DBEAADC2013CD7C86 /* Pods-Tests-SourcePointMetaAppUITests */; - productType = "com.apple.product-type.framework"; - }; D61E6F099F75DEB251B88EBDFF4BFD49 /* Pods-Tests-ConsentViewController_ExampleTests */ = { isa = PBXNativeTarget; buildConfigurationList = 65C72768F72492115A09FE41F509527D /* Build configuration list for PBXNativeTarget "Pods-Tests-ConsentViewController_ExampleTests" */; @@ -7333,15 +5808,15 @@ buildRules = ( ); dependencies = ( - 4666D6DCFEB248078BF7AE6F58CDBC88 /* PBXTargetDependency */, - 30A13B5B8D78A96F1042F24B50CCBEC0 /* PBXTargetDependency */, - 372EF258968E33C21CC5BF640DB79002 /* PBXTargetDependency */, - 490B76BE728BCE388C1704AD89628935 /* PBXTargetDependency */, - 3B17DC5622FB9D6326627AA29DA0304E /* PBXTargetDependency */, - 200FE4AA058E59E05655E87F6399EBE2 /* PBXTargetDependency */, - 484C717E000430738249C255273CCB23 /* PBXTargetDependency */, - 87C64CDADEE5F0FECF6B2C644DEFA914 /* PBXTargetDependency */, - E8318C296803A62395F983F58CDA6623 /* PBXTargetDependency */, + 8865B01BA28CFC2E0298D79F6E3A162C /* PBXTargetDependency */, + 0654D4AC483355C63870A0528CF8C925 /* PBXTargetDependency */, + 664306D86F8D8A8536E8C0B9E2665A63 /* PBXTargetDependency */, + 31197EFA2AC7CFF11EA15DC17EFFC333 /* PBXTargetDependency */, + 5AD1526E9F32F906DA00F640647A47BD /* PBXTargetDependency */, + 18936A6DA97A3BC7DD24EBF71791DF4A /* PBXTargetDependency */, + 925F8FDCDBA08E3800C3561BB1263A7E /* PBXTargetDependency */, + 2757DFAD162F08CC633CF1E0DCE78793 /* PBXTargetDependency */, + 3FA3C0FB051772BBB85F396EF2FBA8F4 /* PBXTargetDependency */, ); name = "Pods-Tests-ConsentViewController_ExampleTests"; productName = Pods_Tests_ConsentViewController_ExampleTests; @@ -7360,15 +5835,15 @@ buildRules = ( ); dependencies = ( - 16F2BBFCB64B10A779E70C133D48C386 /* PBXTargetDependency */, - AC083F59F100DD403BBEC3C609AB7306 /* PBXTargetDependency */, - 9533827E72C7DBC238911AB6F79F8012 /* PBXTargetDependency */, - F69BCFC436DCCA3C222CEBDDA04F4852 /* PBXTargetDependency */, - C2927FA89C466E80FE599BE4DC5DE48A /* PBXTargetDependency */, - 8C8E627C9047D0BF7A3FB53C70C1DC96 /* PBXTargetDependency */, - EEC418108D97237C57048CDC3C843EE5 /* PBXTargetDependency */, - 755757EDC74EA82F8AB151F66BD1C99A /* PBXTargetDependency */, - 3CAA2066E7834FB86FC5361442D883F5 /* PBXTargetDependency */, + D2CDB94D21FB0A2E5EF8BF1EE9590556 /* PBXTargetDependency */, + 1FDCA5CBE3ABACC5F01D82E97956EEF1 /* PBXTargetDependency */, + DC5D32910B29B4CBA60F93713D98ED3D /* PBXTargetDependency */, + C668EACFB508B26F9123B0871E752E07 /* PBXTargetDependency */, + 44877AC413CFB4B042AF1C296ED5AFE4 /* PBXTargetDependency */, + 79475965C9C56BE45E27E19D4C1594AD /* PBXTargetDependency */, + 2EFBC6B9E512B081CF5C00A5407AA227 /* PBXTargetDependency */, + 18C8EEF8E002948C3A0D943794BC6CA0 /* PBXTargetDependency */, + D69AD10215C74D97AAECC5C51BEEDECF /* PBXTargetDependency */, ); name = "Pods-Tests-ObjC-ExampleAppUITests"; productName = Pods_Tests_ObjC_ExampleAppUITests; @@ -7387,8 +5862,8 @@ buildRules = ( ); dependencies = ( - 49034156139168F55506A1C8F08FC154 /* PBXTargetDependency */, - B13E02894AA639BB1E2C96B53FF6E135 /* PBXTargetDependency */, + 714147FA8EE8C506E6BCDA7DD28D4E35 /* PBXTargetDependency */, + 887E0B367A6B33492D7ABA01F1E8BBDC /* PBXTargetDependency */, ); name = "Pods-TVOSExampleApp"; productName = Pods_TVOSExampleApp; @@ -7407,9 +5882,9 @@ buildRules = ( ); dependencies = ( - 30856480E4920E8E363E53BC7350DDAA /* PBXTargetDependency */, - D152D84C6C9556C5A9FB648B8269F305 /* PBXTargetDependency */, - 2561519F2960884A51D6997F2DBAAD41 /* PBXTargetDependency */, + 71BC089D92BED245E648C92CA7BC1297 /* PBXTargetDependency */, + 92B1B2157E329A90696E1D11E5E96630 /* PBXTargetDependency */, + D56E64B0407CC53CAF6E89717753C78A /* PBXTargetDependency */, ); name = CwlPreconditionTesting; productName = CwlPreconditionTesting; @@ -7446,119 +5921,63 @@ buildRules = ( ); dependencies = ( - D98D2FBBADD6B27CF9ED90BF533C0907 /* PBXTargetDependency */, - AD1F26DE2D06E1FD827A2B6BDF011F8A /* PBXTargetDependency */, - DA643F744BF74159E4C6C37467ABFA51 /* PBXTargetDependency */, - 2EED339218A454388DC19D3CCC143167 /* PBXTargetDependency */, - 54CD8C4DDCADD7D3F3B9568FC3DBC3AC /* PBXTargetDependency */, - 2004CAA41B4BF3A5D444CD9C65E4838C /* PBXTargetDependency */, - 99824BE02F51D9BF44E6985869648360 /* PBXTargetDependency */, - 3B21269E1B6B37D2EF68917359A494F7 /* PBXTargetDependency */, - 87263114BA9323CC6816962316F8CCEA /* PBXTargetDependency */, + DD8C17E7AFCC18D8B04BC486F9100810 /* PBXTargetDependency */, + 732E9D11593E627B9020D513DE061DAE /* PBXTargetDependency */, + FFB53E29F1A38E6046889C31B6E3021B /* PBXTargetDependency */, + A76A9F9D5B3D06AAFFD68582B2458C4E /* PBXTargetDependency */, + 4DFF22EDB2AEFE46413BA01A0C404BEE /* PBXTargetDependency */, + 68E7FE2319566651F7A8B6EC465CF2F5 /* PBXTargetDependency */, + B95AC25B4A3A2661B52D9EE71B980486 /* PBXTargetDependency */, + 4B888FD2208F6954640C89C11FB04F6F /* PBXTargetDependency */, + 59B773D2CD5F435869728943ABE7374F /* PBXTargetDependency */, ); name = "Pods-Tests-NativeMessageExampleUITests"; productName = Pods_Tests_NativeMessageExampleUITests; productReference = 2701FF4C96D98F0B29DFA47632CB59B0 /* Pods-Tests-NativeMessageExampleUITests */; productType = "com.apple.product-type.framework"; }; - EEE261386011CDF271BE289F73FF5959 /* IQKeyboardCore-IQKeyboardCore */ = { + F9B2C41D8F3FCEB2256091CF2667D600 /* ConsentViewController-iOS-ConsentViewController */ = { isa = PBXNativeTarget; - buildConfigurationList = 86C2086694666CC28CF9CE092DBA7C04 /* Build configuration list for PBXNativeTarget "IQKeyboardCore-IQKeyboardCore" */; + buildConfigurationList = D336ACDFCBA28BD429A897CD53C75F51 /* Build configuration list for PBXNativeTarget "ConsentViewController-iOS-ConsentViewController" */; buildPhases = ( - A3B20DB20FBB895B9F88900328A948EC /* Sources */, - 2CB2F22D5291A6AA116633689630D79B /* Frameworks */, - 77983625E21E3BD49F1D43C7DCCF6D90 /* Resources */, + 530B0ECCB35650F30F9FA57A74F6ECB4 /* Sources */, + C4330B65DE657DFBDC146D50BE8F0508 /* Frameworks */, + 4D1D3989116A92F22365D818E1E99700 /* Resources */, ); buildRules = ( ); dependencies = ( ); - name = "IQKeyboardCore-IQKeyboardCore"; - productName = IQKeyboardCore; - productReference = 6E897F35E5E27028AC58B14B552FBC8D /* IQKeyboardCore-IQKeyboardCore */; + name = "ConsentViewController-iOS-ConsentViewController"; + productName = ConsentViewController; + productReference = 4BEAC88AF84CC484F55B8A6C048444D9 /* ConsentViewController-iOS-ConsentViewController */; productType = "com.apple.product-type.bundle"; }; - F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */ = { - isa = PBXNativeTarget; - buildConfigurationList = B6F32C337E6985623A8DF177B99BD6F5 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar" */; - buildPhases = ( - B8ADCC7962F5C866C35412AAB11A754F /* Headers */, - AA10E4A6BFCF9DCF25DEBDE4089CB614 /* Sources */, - BC78784BFBD44F1DCC75EA78D79EEC45 /* Frameworks */, - E4A0D65C1D0399C977B0C7F8082B8CD7 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 82013F84F60B192A87EEBAFF3B1581D0 /* PBXTargetDependency */, - DC0FF11DFBDF9B5A47223CE06F12338A /* PBXTargetDependency */, - ); - name = IQKeyboardToolbar; - productName = IQKeyboardToolbar; - productReference = B4B1A58096F15199A14069C5D6AA1C99 /* IQKeyboardToolbar */; - productType = "com.apple.product-type.framework"; - }; - F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */ = { + FE522C5739C3080CA274B7327A0835A2 /* Pods-Tests-AuthExampleUITests */ = { isa = PBXNativeTarget; - buildConfigurationList = DA3FFFE83F01DFB3BFB7CBD2A71DEBA9 /* Build configuration list for PBXNativeTarget "IQKeyboardCore" */; + buildConfigurationList = 32105BE899BF4B6FC6BC033DE8A476E8 /* Build configuration list for PBXNativeTarget "Pods-Tests-AuthExampleUITests" */; buildPhases = ( - 85E526EDB54ABB513688708A28628AA3 /* Headers */, - 99B1B34917F882FDCB78F7CDFC1CAF1C /* Sources */, - 7B01AEB533FDA6296E3FFB665435D831 /* Frameworks */, - 49D1F7C273DE04AF14E5954C9398C3E6 /* Resources */, + EC66DD9488ACCDA2107BD3504F2ED043 /* Headers */, + 28165BCF6E0670DD8CD9758F0D8B4A28 /* Sources */, + 0EFDF9BC594EFFE4C5A7FD2D96EFB6BE /* Frameworks */, + E8953C2D57FE9195C017AB2852ACFC5C /* Resources */, ); buildRules = ( ); dependencies = ( - 8D0137791BB5191E16819E200D368648 /* PBXTargetDependency */, + 6E25179905AF6A843207439E2A77077A /* PBXTargetDependency */, + DDA0EDC288212817DBF16E8E3DFFDB2F /* PBXTargetDependency */, + 6A4D6E24A8C6B783EAAE649D42FE754C /* PBXTargetDependency */, + 392DA47B82BD7265695A6585E373B0C8 /* PBXTargetDependency */, + F135E204B84930BF3A4B918E15D453B2 /* PBXTargetDependency */, + B398A8F96A16FC67A5E993B3FF9529AD /* PBXTargetDependency */, + 3DDFBBC280DD58DB20C9ED245E7C5E67 /* PBXTargetDependency */, + D9C19E126F07751852CD6A1DF8EA8601 /* PBXTargetDependency */, + C936AFC701AF94FEE066BF23D4B6BBAC /* PBXTargetDependency */, ); - name = IQKeyboardCore; - productName = IQKeyboardCore; - productReference = FC7F0CF2EA5DF59C59D9995890DA5C47 /* IQKeyboardCore */; - productType = "com.apple.product-type.framework"; - }; - F9B2C41D8F3FCEB2256091CF2667D600 /* ConsentViewController-iOS-ConsentViewController */ = { - isa = PBXNativeTarget; - buildConfigurationList = 8A33DEFF72EBF072A7FD92464FADA790 /* Build configuration list for PBXNativeTarget "ConsentViewController-iOS-ConsentViewController" */; - buildPhases = ( - 09F445D046736898EBE272F0594E5F54 /* Sources */, - 3E0CEC856DA9B52A6E0D5B83A1B9DDF3 /* Frameworks */, - 1911E80763D8DC43FC7CBB702796D85D /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "ConsentViewController-iOS-ConsentViewController"; - productName = ConsentViewController; - productReference = 4BEAC88AF84CC484F55B8A6C048444D9 /* ConsentViewController-iOS-ConsentViewController */; - productType = "com.apple.product-type.bundle"; - }; - FE522C5739C3080CA274B7327A0835A2 /* Pods-Tests-AuthExampleUITests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 32105BE899BF4B6FC6BC033DE8A476E8 /* Build configuration list for PBXNativeTarget "Pods-Tests-AuthExampleUITests" */; - buildPhases = ( - EC66DD9488ACCDA2107BD3504F2ED043 /* Headers */, - 28165BCF6E0670DD8CD9758F0D8B4A28 /* Sources */, - 0EFDF9BC594EFFE4C5A7FD2D96EFB6BE /* Frameworks */, - E8953C2D57FE9195C017AB2852ACFC5C /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 7D013335DA189539A44003240C49AAFE /* PBXTargetDependency */, - 3309F81F38926524D89AB1DD3106CF84 /* PBXTargetDependency */, - 0357B1774B5F3CE7F5A60342A9950E8A /* PBXTargetDependency */, - 9E4C2748064983314CBCEFCE8F0C6647 /* PBXTargetDependency */, - EFF587BFB42DE66769D5960BCC8D3A94 /* PBXTargetDependency */, - 7D70047FEF4AF8EF89C230CD7D042917 /* PBXTargetDependency */, - 4083C4025BB84E2744C04CFD201BE86A /* PBXTargetDependency */, - DC7360FCCF34D3F2A63E22632C37194A /* PBXTargetDependency */, - 09A3F63BE4336ABAEA88370B830C7F8D /* PBXTargetDependency */, - ); - name = "Pods-Tests-AuthExampleUITests"; - productName = Pods_Tests_AuthExampleUITests; - productReference = 3E88639B1919779EA4D947458F865C3F /* Pods-Tests-AuthExampleUITests */; + name = "Pods-Tests-AuthExampleUITests"; + productName = Pods_Tests_AuthExampleUITests; + productReference = 3E88639B1919779EA4D947458F865C3F /* Pods-Tests-AuthExampleUITests */; productType = "com.apple.product-type.framework"; }; /* End PBXNativeTarget section */ @@ -7581,7 +6000,7 @@ mainGroup = CF1408CF629C7361332E53B88F7BD30C; minimizedProjectReferenceProxies = 0; preferredProjectObjectVersion = 77; - productRefGroup = 0A3DD4BD794503E0A0CB1988A01BD03C /* Products */; + productRefGroup = BBF6C909C2420054F2AD057CE9A64992 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -7604,22 +6023,6 @@ B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */, 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */, 5FF1A58DEEC5DB749FCD6C120B97CC82 /* GoogleUtilities-GoogleUtilities_Privacy */, - F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */, - EEE261386011CDF271BE289F73FF5959 /* IQKeyboardCore-IQKeyboardCore */, - B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */, - 982A68D37F5DCBC1FC1FDC0BB2F0EB8E /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */, - A26E6FD851C20D652B2755C1464A9990 /* IQKeyboardNotification */, - 2B8FF445A5162845FAB9EC00FC92B694 /* IQKeyboardNotification-IQKeyboardNotification */, - 0981F89DB5DA3FFCFFEBDE1F56287054 /* IQKeyboardReturnManager */, - 88810798DA63A2F6611B0970EA276DEC /* IQKeyboardReturnManager-IQKeyboardReturnManager */, - F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */, - B247F77A0CD5E19C8187A9BA1EB58C09 /* IQKeyboardToolbar-IQKeyboardToolbar */, - 020993F16DA5986DACE118349EBCE9E5 /* IQKeyboardToolbarManager */, - 7C5613175BBC4BF67E36DB4FBEBC01D0 /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */, - 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */, - 4502C7427440BEB17A50C0BF6E638A85 /* IQTextInputViewNotification-IQTextInputViewNotification */, - 12890DE3ABBC2CA295E108358D85EE69 /* IQTextView */, - A6602BCAA6F4F932A586C41D0B7E019C /* IQTextView-IQTextView */, 2450D89327C2F3947256DE8768B4B9B9 /* JSONView */, D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */, 55522A91938FF505CFEBEAD2DD85AE2D /* nanopb-nanopb_Privacy */, @@ -7630,14 +6033,12 @@ 3038B99B88C2D7671D63EC223B2CA214 /* Pods-Examples-NativeMessageExample */, B9F7FF3FC5A67D7E3A53AF0856CF35E3 /* Pods-Examples-ObjC-ExampleApp */, B53B7F92D01CEB33D7F5DC9D60305C13 /* Pods-Examples-SourcepointFirebaseDemo */, - 4525581753223597AA2857411A270999 /* Pods-Examples-SourcePointMetaApp */, FE522C5739C3080CA274B7327A0835A2 /* Pods-Tests-AuthExampleUITests */, D61E6F099F75DEB251B88EBDFF4BFD49 /* Pods-Tests-ConsentViewController_ExampleTests */, 00917DFE344EBD43DB81BA9F4F2BF328 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests */, 41386670AD7EA3EED1F6C1A4E29E060B /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests */, EECEB4A7A35DCD7FEEEA4BB4D54ADE4E /* Pods-Tests-NativeMessageExampleUITests */, DCC6C5A931EEDDFFE777661B75A5C9C6 /* Pods-Tests-ObjC-ExampleAppUITests */, - D309F35D7DA6A2D903EB02EE558F8A74 /* Pods-Tests-SourcePointMetaAppUITests */, 1A857031BB969C87F331DCDCC1CB6476 /* Pods-Tests-SPGDPRExampleAppUITests */, E2AE2594B3DA53E36DDF5DF8C14DDD09 /* Pods-TVOSExampleApp */, B2B2FF503384A20E75FE77C54DAF94BD /* Pods-TVOSExampleAppUITests */, @@ -7655,90 +6056,54 @@ /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 014FC58AE0F658130064F80313ADEE9F /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 038158E00E3BD4614619FCE1517297BF /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 242C0F69AF70AD5FAA2D18BF1740C99F /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0DA154C1E129BD364DD6533E4ED21EAA /* Resources */ = { + 006FF1B46CD47E14B7F1B43972E687D3 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFF4E1366903343DFE47FC534F9B5BD1 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 126A45DF7B706E3570AB273FDC2FE256 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0BB4D2CF32A898D12060CCC1E30F258E /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1470DDF01DE9C03DD600DB84AB712567 /* Resources */ = { + 2C4A1B3327A1C8419F5C47657F4FF5A0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 18A35BB8F94994E7BF19B84E62C5B4DA /* Resources */ = { + 2D47CEB233DFC9C5CE18D67102A9748B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FE8D885E42EE579E556E74176622C8D0 /* ActionableTableViewCell.xib in Resources */, - A6394E866691F6EC7DFEEB28FD5399D4 /* Flow.storyboard in Resources */, - 38806A19B071642225258043ACAC1F1B /* RequestCell.xib in Resources */, - 0A528D1CD706A0D187C87AA488547FE2 /* RequestTitleSectionView.xib in Resources */, - F91F7471AE909894CFDBD6F38AEF7DDB /* TextTableViewCell.xib in Resources */, + F2B94912673CE64E9DEF529BEA2B3CD9 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1911E80763D8DC43FC7CBB702796D85D /* Resources */ = { + 2D52D6E9D99B1C85AC1E039C9F332247 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9E1EF13402D8ED84835CC887FE7D4136 /* Barcode.png in Resources */, - 0219FE757B9413E61775A6BCB6B5834D /* images in Resources */, - 3D58853F9CA6F470FA4A7BB940D83864 /* javascript in Resources */, - 1F6F6626C0CE2411BB510B9F89E28B0C /* jest.config.json in Resources */, - 9335E0D67CBEA73EB1A98BEFD3CD5B25 /* PrivacyInfo.xcprivacy in Resources */, - 6EE8133026BBAD9196509BE66F0D1454 /* SP_Icon.png in Resources */, - 8197C81A6E3651313B7688D3C30CDDCE /* SPJSReceiver.js in Resources */, - 994AEB8567C56940702DD2296E6C9B3E /* SPJSReceiver.spec.js in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1EA540459F5AD5C8EAB8C815F6FCDDC8 /* Resources */ = { + 2D981CE8F96BA07B3B5AE42DD2B180F9 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2EFBCF44E12E01458BB1687B460645C8 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 29893E137F4C657556197B6870631855 /* Resources */ = { + 2DBE57F3DDE83553C8EEADCA89A5B81A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2C4A1B3327A1C8419F5C47657F4FF5A0 /* Resources */ = { + 2EACE94FFB20F6C3ECE37463620BB75E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 9EB0572E374F1B5D57E6F9A0D8D0F310 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7756,13 +6121,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 38C30B226F18FE6989B961018676343E /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 3D3191F22CDF588A699E361861034C12 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -7770,13 +6128,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 40CB4587FDDCE268CCAE11F956BB0AC3 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 42CA95EA7B9FBD3FB8E4137805556A82 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -7784,33 +6135,18 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 47CD91EF908FBD382254397D35E7456A /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6E65891C6AEFDADA41F47D8BEE3A644B /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 49D1F7C273DE04AF14E5954C9398C3E6 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 54794DD9C766F105175CCA8DEC02F88F /* Resources */ = { + 4D1D3989116A92F22365D818E1E99700 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 54A034C1252A1504BB66E8C821F5FB11 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D702EA3DBF720A90A19C03C734874343 /* PrivacyInfo.xcprivacy in Resources */, + B73EC374D16CE3B135172DC568877994 /* Barcode.png in Resources */, + 058436C03D7933930C3C9762287CC760 /* images in Resources */, + C635FCEBFCF220EC71C296A283D6370D /* javascript in Resources */, + F17343383C92311ED4847172D7E2CF76 /* jest.config.json in Resources */, + 51672E1225B302E91C3F8F939EE10795 /* PrivacyInfo.xcprivacy in Resources */, + 0FE8E81445EF1D19031A853D0F9A5146 /* SP_Icon.png in Resources */, + 22FBDEFF5422BF2058C65BFA912F5603 /* SPJSReceiver.js in Resources */, + 439F9005FF43D40583E36BF123F14D60 /* SPJSReceiver.spec.js in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7821,18 +6157,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 603094099720BF3CBD1430AA9522BEE0 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6DEBBC3842B3AFE109781A3772D84A68 /* Resources */ = { + 605B05F972B09E242A74D8CDB99AC275 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - BF8F174DBB0D780050C634E9E98B5555 /* PrivacyInfo.xcprivacy in Resources */, + 41CAC7979D1BE2424688C73267F50081 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7857,22 +6186,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 77983625E21E3BD49F1D43C7DCCF6D90 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 8D1D77250AC74F5C88B1481C0FC02813 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 78B337D0DDCBCDD88A3B957D339723B7 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 964376244EA85C3FDA8B336926AE5718 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 7AE368D0941D681B78C424EAA1E64E2F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -7894,13 +6207,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 84B027B420323F9A6E4C1C78F14E89B1 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 855C57B956528396491332A611A554C1 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -7915,101 +6221,128 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9A156DB5584DB69A98CCFA9042E2675A /* Resources */ = { + 97BEEA5D8BD52E872201362C8AE8315A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A8F7923089DFF6670C6DA7857901512E /* Resources */ = { + 9A156DB5584DB69A98CCFA9042E2675A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - ABDD94A4D5B1A728B1FDC3C6A9C6C17F /* Resources */ = { + A8F7923089DFF6670C6DA7857901512E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8EFCD85B3221620E636ED6D24D5C39F9 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B683C59C48EF9963C2CDD820324D903B /* Resources */ = { + AA9A360C63C648BB1782B14BD7B9E2BC /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 1BE60976B8F8F0760BDB9C925FBFD990 /* ActionableTableViewCell.xib in Resources */, + E771A9B4AF9F1C9098CD254AC312DC5C /* Flow.storyboard in Resources */, + C599BDF2E86F70C4C008B969153AA79C /* RequestCell.xib in Resources */, + DEA920ABBDDC3BAAA58749AA18ADA052 /* RequestTitleSectionView.xib in Resources */, + 5CB582212469EA2D48A85E5132565E2A /* TextTableViewCell.xib in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - BC6780DEAA16C85DEA9909CC95CA5059 /* Resources */ = { + ADBD8AF9D56583E6B32C98E1CBF42453 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C61F426C7A88219456CE207AA1A2EAB6 /* Resources */ = { + BB3EAF8A3DE635861CD6DAD71F102FB7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 03B7FABEF65B0DBC990C8B99C9E498B1 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - CDC317CDAB48690109003C11F95185F3 /* Resources */ = { + BCBB3CAE02DC79722433653B33C4C966 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + D2B413BA86A7A106610D4785E6B6F75A /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - CEA5B55B6FAB00279EB7A201BB65A449 /* Resources */ = { + BF16F628CB475DF418CFE33F433FB8C5 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 97C970D0A5BF756367E9756A13595E4C /* Barcode.png in Resources */, + 8652978775DC3FC9CC4DB64A709100B8 /* images in Resources */, + 2BFB93F31F5BA5B7C2F45CA621AAF7E2 /* javascript in Resources */, + 0305F1982EB2E2409251C13C0AA97A4B /* jest.config.json in Resources */, + CAF77C528B12C2B24724836A63A4ACA0 /* LongButtonViewCell.xib in Resources */, + 46C5DE3014BF038B555A840C7DAC286A /* PrivacyInfo.xcprivacy in Resources */, + 33A981CFD247F924993CE43FE53D7396 /* SP_Icon.png in Resources */, + 1F2ABB479ACBCAACCE54D092273165DE /* SPCCPACategoryDetailsViewController.xib in Resources */, + BD6A4F5EFA1BCC7CCE0884541380D924 /* SPCCPAManagePreferenceViewController.xib in Resources */, + C38D086151B53D1F9D0BF11AE4693F28 /* SPCCPANativePrivacyManagerViewController.xib in Resources */, + FC04537BC61D6EDE3B10CDD85E4FC570 /* SPCCPAPartnersViewController.xib in Resources */, + 9C4DECF5554B46BBE8E68A067E5B6EA5 /* SPCCPAVendorDetailsViewController.xib in Resources */, + F4F479753EBB8694857BDB777876F70A /* SPCustomViewController.xib in Resources */, + 746C0A040DB12234B4711F03D5F6A90A /* SPGDPRCategoryDetailsViewController.xib in Resources */, + 28BC6E1EBBC4DD9F37F11F73D475EC60 /* SPGDPRManagePreferenceViewController.xib in Resources */, + 6C34619C12CFDA9D28BEBAD42AF62715 /* SPGDPRNativePrivacyManagerViewController.xib in Resources */, + 7D4A9626EA53ACEADB232039E6555EC6 /* SPGDPRPartnersViewController.xib in Resources */, + 91692D805FB0542CB15B019139657591 /* SPGDPRVendorDetailsViewController.xib in Resources */, + 171561994A738A4E0A4B3BCC2717753A /* SPJSReceiver.js in Resources */, + 154388E14F42F8A2F5E379C616C53DE8 /* SPJSReceiver.spec.js in Resources */, + 80F2C97BA36E29120DE6C720F17FAB1C /* SPPMHeader.xib in Resources */, + 6E6B94E63F073BE3B4BB64B0B0CB20E2 /* SPPrivacyPolicyViewController.xib in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - CEC912571569FA6CC6856385BD71E9D9 /* Resources */ = { + C61F426C7A88219456CE207AA1A2EAB6 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - BE557CBE20C696046ECF3F9D451430F7 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D8D886536BC3686BB5D8DC2B1A637D27 /* Resources */ = { + CDC317CDAB48690109003C11F95185F3 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DD37CCD74F0A2EBEFFCA3D043AC0B3C0 /* Resources */ = { + D19BE19ED43E16C7B17F7036470C6835 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E0FBE3F867932025316C9673CE918127 /* Resources */ = { + DBAD8FB55D97C308F4DCCF4D78AF8E8A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 7EB15BB83AC6F13C347B5E4EC1FDCE23 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E128BA118583D27F2737D354591CCD00 /* Resources */ = { + DD37CCD74F0A2EBEFFCA3D043AC0B3C0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0DA7CF0CB9572DF213806235E77E833A /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E4A0D65C1D0399C977B0C7F8082B8CD7 /* Resources */ = { + E0FBE3F867932025316C9673CE918127 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -8030,21 +6363,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EC16E8764425D58664210F5E9C8693A5 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - EE328A3063F3B93D42304EEB0BCC7D41 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 91549396B013707E28228B371738EDCB /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; F22AD97C117FFEA62539BD9661FE31A9 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -8052,35 +6370,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F2FB2D1AD54748C77F7BC0783FE38621 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 3527E7AF75181E57E0E2951F3CDFA0C2 /* Barcode.png in Resources */, - 3D79750B26A2602EC0B63212A155BAE5 /* images in Resources */, - 5A1F0264F883C81BA3C9BB59B61C79FE /* javascript in Resources */, - A072F7B9DAF1246FD9627429AB822483 /* jest.config.json in Resources */, - 47A79FD540BE671C2E737C8C2859EF21 /* LongButtonViewCell.xib in Resources */, - FC0504C217ED8774842F0B4F3B02FBA0 /* PrivacyInfo.xcprivacy in Resources */, - 67F28A410FE50AA82AAB5D72ACBD8806 /* SP_Icon.png in Resources */, - 3B940D502D4A1469497702FDC3446BB8 /* SPCCPACategoryDetailsViewController.xib in Resources */, - 706546C97EFF9C0C7BA5ED415432F4C9 /* SPCCPAManagePreferenceViewController.xib in Resources */, - DA839AF84881478750BADF7CBB6EB7C6 /* SPCCPANativePrivacyManagerViewController.xib in Resources */, - 398606BAE47F5838D86AAEA79AAD330C /* SPCCPAPartnersViewController.xib in Resources */, - 19D605E74EEAC94D578B9E0535D8B722 /* SPCCPAVendorDetailsViewController.xib in Resources */, - 719FF446F175A25EBFC0546BD4CF3AB0 /* SPCustomViewController.xib in Resources */, - C436C152E302FC42EB5363E3E0DCCBD4 /* SPGDPRCategoryDetailsViewController.xib in Resources */, - E35057B482504E6059859DB6FBD1DD1A /* SPGDPRManagePreferenceViewController.xib in Resources */, - 2979477FBD228A0D857FDFCE5B169E14 /* SPGDPRNativePrivacyManagerViewController.xib in Resources */, - C13F938A333EAD9B173F0CFC798D67E6 /* SPGDPRPartnersViewController.xib in Resources */, - 8C1EB97D4A8944524ED5AC5D3F01D0D5 /* SPGDPRVendorDetailsViewController.xib in Resources */, - FB3E1374F361FF70B3540653536BCD46 /* SPJSReceiver.js in Resources */, - 4B10E679DDDF43EA604B1B19A5AEE651 /* SPJSReceiver.spec.js in Resources */, - 6C061B03EEE882C3C7918717D81D325E /* SPPMHeader.xib in Resources */, - 9E0315A819CCE40715AA7EA0D3FDC908 /* SPPrivacyPolicyViewController.xib in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; F4DC0D21914A7CF7A5E411864B41FF4B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -8088,28 +6377,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F5AE537C56CDBDED461070DDC66E4372 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F61A40F645930C896568C5F47E7C8B06 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A84B2A821CAF78D5A4BC6C1962490331 /* PrivacyInfo.xcprivacy in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F7F43A67A0FF335196A76FEE1E7A802B /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; FC6361D286EBB0DA92ADBDEB35734173 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -8127,58 +6394,58 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - 11D8A917FCCBD88C149BC69256451AC8 /* [CP] Copy XCFrameworks */ = { + 49B899CD94278542DA5A4BE52A73E288 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks-input-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/SPMobileCore-tvOS/SPMobileCore-tvOS-xcframeworks-input-files.xcfilelist", ); name = "[CP] Copy XCFrameworks"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/SPMobileCore-tvOS/SPMobileCore-tvOS-xcframeworks-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/SPMobileCore-tvOS/SPMobileCore-tvOS-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - 8C5B5926777AB8C2838BC915F74F1BC1 /* [CP] Copy XCFrameworks */ = { + 5A6BE25CADFF8394C42D1056874026E5 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks-input-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks-input-files.xcfilelist", ); name = "[CP] Copy XCFrameworks"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/GoogleAppMeasurement/GoogleAppMeasurement-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - D2563F8C51D75930A6B832D6E673E318 /* [CP] Copy XCFrameworks */ = { + 8C5B5926777AB8C2838BC915F74F1BC1 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/SPMobileCore-tvOS/SPMobileCore-tvOS-xcframeworks-input-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks-input-files.xcfilelist", ); name = "[CP] Copy XCFrameworks"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/SPMobileCore-tvOS/SPMobileCore-tvOS-xcframeworks-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/SPMobileCore-tvOS/SPMobileCore-tvOS-xcframeworks.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - EE23006ECB6E077044AB05F97C143D3A /* [CP] Copy XCFrameworks */ = { + FD411A8535BB1DAB8AE96B463C90F40B /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -8198,14 +6465,7 @@ /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 09213BF2FC1623B0E10048F02D295EA8 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 09F445D046736898EBE272F0594E5F54 /* Sources */ = { + 032FB74034A15AFAE749A02A82D93916 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -8323,28 +6583,35 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 20AE7DC875AD08577C3703D039EF1560 /* Sources */ = { + 16EC21CA338F535BB485E75514F460A9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 43FDBC0015161B1DECFF9DAEEEFCF9CE /* FIRCurrentDateProvider.m in Sources */, - 889F8838BA5B9ABE765593C9B4EFC2CC /* FirebaseInstallations-dummy.m in Sources */, - C12D74EF2653C4F1C75F27CF926DBAF4 /* FIRInstallations.m in Sources */, - D3149E8AAEEAEB2F95DF65CE8668614B /* FIRInstallationsAPIService.m in Sources */, - B1E49099523C649C5570E76A87D4B202 /* FIRInstallationsAuthTokenResult.m in Sources */, - 9D34AA9A8855CC4FBF8C6B9369621637 /* FIRInstallationsBackoffController.m in Sources */, - 89C0678D56738ECDF86E588E1454FA9D /* FIRInstallationsErrorUtil.m in Sources */, - 6562A3FFAACF4E2767DA2E1D933D1C18 /* FIRInstallationsHTTPError.m in Sources */, - 135FC315A97F8A2CE4F1D0BB470B1603 /* FIRInstallationsIDController.m in Sources */, - 9A89FFCFC2A17839FC64E3CA908FF6F8 /* FIRInstallationsIIDStore.m in Sources */, - F733F52ED7140EF527BA29BB112778B2 /* FIRInstallationsIIDTokenStore.m in Sources */, - 2733E422CC910FBC27AFE219C051E011 /* FIRInstallationsItem.m in Sources */, - 65D9F6E820F16343ED7779E027D114ED /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */, - CDC01082A9D3E809CB2C85306F346C2F /* FIRInstallationsLogger.m in Sources */, - 2AB73082683D7D83ADB8BB50F30B9DAA /* FIRInstallationsSingleOperationPromiseCache.m in Sources */, - E2A8240497CC2326C258BBF216B22F7B /* FIRInstallationsStore.m in Sources */, - C8CF088E1EAAE96B54B8758F2DC0398E /* FIRInstallationsStoredAuthToken.m in Sources */, - C7D98D187128D3E4A55E4E20EA99BBDE /* FIRInstallationsStoredItem.m in Sources */, + 2DD2BEABEFD014F58D0AD92F0251DF53 /* nanopb-dummy.m in Sources */, + 19E538BE448181D7B6A948431BC784D7 /* pb_common.c in Sources */, + E3A1F53C92A45D8C07D289463DF5E39E /* pb_decode.c in Sources */, + 5280811BF86E477186149298B2556210 /* pb_encode.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 215ED4ECB0E996DFEBB6CB8A9EB375A3 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 734578DE62B3E86E62E44F3CD119F76B /* FIRAnalyticsConfiguration.m in Sources */, + 5DA186DC88513F9479ABEDB3C6814102 /* FIRApp.m in Sources */, + E31C55BF8C88795F29FB84A03E674850 /* FIRBundleUtil.m in Sources */, + 7D733EF797F0E0423986B4F4449CFBB2 /* FIRComponent.m in Sources */, + E3059F8463260137D95405150E35636C /* FIRComponentContainer.m in Sources */, + 3A435814DABA350499BD9808D31BD887 /* FIRComponentType.m in Sources */, + F9DCC165BB2641C517B31F1D6D82D7B7 /* FIRConfiguration.m in Sources */, + 9CC7C7D473E7C7F42AD8C94E11C797AE /* FirebaseCore-dummy.m in Sources */, + EEC7DDA9737F128C33590CD13CF68722 /* FIRFirebaseUserAgent.m in Sources */, + 7C56529FAC82543F3EFDE7E8F4825967 /* FIRHeartbeatLogger.m in Sources */, + 4FF0501676FDBD5CB8A022E980091E60 /* FIRLogger.m in Sources */, + 5B7335F7EF4B131BADBF0FF2085357AE /* FIROptions.m in Sources */, + E678917DF70C7F06A2C1A796953452B6 /* FIRTimestamp.m in Sources */, + 8A5E2DDCB74AC32426651D9BBA5CC31E /* FIRVersion.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -8365,11 +6632,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 29D792650F6318B783EC23C8BDF71B7B /* Sources */ = { + 2A9E25CE01811CCDC9D164403AC34A08 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 48708299B5925AE04C9D91F73BCCC642 /* Pods-Tests-SourcePointMetaAppUITests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -8384,13 +6650,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 30B935076EFCF22BADA8B2DA35DD121D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 32914A6143E15A56384E34377AA55688 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -8399,151 +6658,50 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 37874208BF93ED050FD0300287F0342A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - AFE7DAC92ACDEDA7DA3DC9E1A54CB2F4 /* FBLPromise.m in Sources */, - A35A840A0AD9830EB5374EC1C477E3EB /* FBLPromise+All.m in Sources */, - E3E799D8787E6C00CEC6E214B8C3A8E2 /* FBLPromise+Always.m in Sources */, - 954C0F36E97047A577FF1357B9C0FBBE /* FBLPromise+Any.m in Sources */, - 60B509039763325F5314393DCDD7C472 /* FBLPromise+Async.m in Sources */, - 9DB4007FAB30DBFB16D2B7ABBF4AF85E /* FBLPromise+Await.m in Sources */, - 4076F13A7D32F82EE5A4A1EF4DB520D8 /* FBLPromise+Catch.m in Sources */, - 92D4D54B1A847D46595C252A928178D9 /* FBLPromise+Delay.m in Sources */, - 3CF525CDCD6877F0E35F8358089551E4 /* FBLPromise+Do.m in Sources */, - 30C3BBD4A266167853362EC5C0C9ECCC /* FBLPromise+Race.m in Sources */, - FDAE62A1B65E201A53099EC8B5E626FB /* FBLPromise+Recover.m in Sources */, - BF2072D3447F8405CC1236BD3AD91006 /* FBLPromise+Reduce.m in Sources */, - E32F0E8C28D0C6B3CEEAA10594EAEE26 /* FBLPromise+Retry.m in Sources */, - 4BA15C1EFB17DF94B7758A5552EFE301 /* FBLPromise+Testing.m in Sources */, - BB9401E5B5E4BF1A9482E724C65048EF /* FBLPromise+Then.m in Sources */, - 8906731121D7E71D8356EB7841785652 /* FBLPromise+Timeout.m in Sources */, - 931E81541F3170FAD7CF3FA2864EB9DD /* FBLPromise+Validate.m in Sources */, - 881297DFAE7FCD0B7CE35BCB17B9BB04 /* FBLPromise+Wrap.m in Sources */, - C6D7B28BB621AA0810B066E47072834E /* FBLPromiseError.m in Sources */, - 8C16C6296EBD70821735825CE53CC264 /* PromisesObjC-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3F9A3B731D5216E632062C9B7F16FABB /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0A027154BD8C18CCFEFDC6FBA4480484 /* IQKeyboardInfo.swift in Sources */, - B7A4CFC0A062E26F77CCBA595A8D630F /* IQKeyboardNotification.swift in Sources */, - 47A40083079AC4AE82C868B4879BDA85 /* IQKeyboardNotification-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 42B6CB5BEB058CC73C023F96F36CDF87 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - C865138C1ACD544E86E8D2FA686C66A4 /* IQActiveConfiguration.swift in Sources */, - E11D0FDB0859CBDCF5DF24406D0218F0 /* IQKeyboardAppearanceConfiguration.swift in Sources */, - 154BA734A492E470746B950518BC93F0 /* IQKeyboardAppearanceManager.swift in Sources */, - 40BA97238F8D1E74D02E15CDD66F1B21 /* IQKeyboardAppearanceManager+Internal.swift in Sources */, - 69BA8E18742B5F0F24EB399B9330AA18 /* IQKeyboardManager.swift in Sources */, - 71A04EBB1C14608A292EC31590F3128D /* IQKeyboardManager+ActiveConfiguration.swift in Sources */, - 730AAFFA807494C613D94C1A49A105D1 /* IQKeyboardManager+Appearance.swift in Sources */, - A726B3DDCB7D7D42D350DE13AFF2C00D /* IQKeyboardManager+Appearance_Deprecated.swift in Sources */, - 4007F97612C59D77B483B8197D2D904D /* IQKeyboardManager+Debug.swift in Sources */, - A31D2C4CBF309F4E56EF9C5B0CE3335A /* IQKeyboardManager+Deprecated.swift in Sources */, - 7171773532BA8607A9C99361F0D69C44 /* IQKeyboardManager+Internal.swift in Sources */, - AF8F5B49CCD0E5D93520B079D55A4E52 /* IQKeyboardManager+Position.swift in Sources */, - C107322F328C400718CA422857913E08 /* IQKeyboardManager+Resign.swift in Sources */, - 31B9F69F6195997DD1E14EADDAF6D54F /* IQKeyboardManager+Resign_Deprecated.swift in Sources */, - C3749017CF307D6865B7F9E76B99AAE6 /* IQKeyboardManager+ToolbarManager.swift in Sources */, - 559B1D21B2B49E2B49F5E9F9CFB2E871 /* IQKeyboardManager+ToolbarManagerDeprecated.swift in Sources */, - F8934ADF3F480278DE2646CC7EDB5D75 /* IQKeyboardManagerSwift-dummy.m in Sources */, - 79AB00FAA745A1CB8FEE3059696B2036 /* IQKeyboardResignHandler.swift in Sources */, - CE0332F9D604BED32274F697952E15C0 /* IQKeyboardResignHandler+Internal.swift in Sources */, - 242FC4CDD30FBA64695FD29F1296E71E /* IQRootControllerConfiguration.swift in Sources */, - 1BFA4ABF251291148F55384528F10D38 /* IQScrollViewConfiguration.swift in Sources */, - C48CB797AA73E412F65A64A19A7B741E /* UICollectionView+IndexPaths.swift in Sources */, - F167310245A75F9C01FFCBFF9323CA86 /* UIScrollView+IQKeyboardManagerExtension.swift in Sources */, - 86A6AC20D1D6012F421F9AD2968572D6 /* UIScrollView+IQKeyboardManagerExtensionObjc.swift in Sources */, - F3D4BE1E2231FF2EA09AF6369ED0BA0F /* UITableView+IndexPaths.swift in Sources */, - BDAEB1BE10E28BC1C90F602B84651C2A /* UIView+IQKeyboardManagerExtension.swift in Sources */, - ED21DC9B43C82294468B03C0B01EE2FC /* UIView+IQKeyboardManagerExtensionObjc.swift in Sources */, - 48BF35EF4844B8730D50A6ECC45CF34D /* UIView+Parent.swift in Sources */, - 08C4A098A74D4D121A85CD0A906387EF /* UIView+ParentObjc.swift in Sources */, - 5DC101E82DFFD4DDE7BCD0BA2D8467DB /* UIView+Resign.swift in Sources */, - 51A3890D89005002D0E83E2578AF804F /* UIView+ResignObjc.swift in Sources */, - 4FA0BEFCC6F57EF89351840090802E47 /* UIViewController+ParentContainer.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4313F6C1087CE72D0B6D0ACBDF17C7EA /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A96CFA1E3D24A64F5DDBFE8B93F6A1BA /* IQTextInputViewInfo.swift in Sources */, - C54B8C3761BF9C926CA29565E4013FFF /* IQTextInputViewNotification.swift in Sources */, - 3DCC0F266E64D40B629D62B58CBF2663 /* IQTextInputViewNotification-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 438EC022B8EE814DC03BCDD703AAAD2E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 43AAED685D79A323AA2522D7983F67F9 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 954A154D34665966021DDAF41670BD2C /* FIRAnalyticsConfiguration.m in Sources */, - 7493C9A6B26E0389E19D56F4E597B420 /* FIRApp.m in Sources */, - 74D8047BF13BE50C4380FA0FA14B5398 /* FIRBundleUtil.m in Sources */, - 405E2B82217AF17D8D1A751D9CB5D61A /* FIRComponent.m in Sources */, - 994A121F189424AC74C1E52D0B20635C /* FIRComponentContainer.m in Sources */, - B68CB6E24ABF7B54CEA8B907EE5C658A /* FIRComponentType.m in Sources */, - 9F9E0690FED432F2EF91B9BFBA99D3E6 /* FIRConfiguration.m in Sources */, - 4112FF331A8F8AFCFE98A20E5E7B9807 /* FirebaseCore-dummy.m in Sources */, - 8931C1D7D40FF9403C542602C138B39E /* FIRFirebaseUserAgent.m in Sources */, - 6C4F8229CC4C8329914D4F065DEF2C0D /* FIRHeartbeatLogger.m in Sources */, - 0C7E8C6D76B84FE123ACE539929AC205 /* FIRLogger.m in Sources */, - FFF26CFE6F60E62B5E9A3DB35B80CD7A /* FIROptions.m in Sources */, - 6AEFEE8DDE648E29A11CC391E311E11E /* FIRTimestamp.m in Sources */, - 40AF4CA0EDFA57BB4107C8CF0A899FFC /* FIRVersion.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4753E599053CD00360B2FB8AE61D428D /* Sources */ = { + 3876C48674F0D6469B27F52069E3C8F5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 238C347F8A1C592B94DF857D070B4555 /* GoogleUtilities-dummy.m in Sources */, + B5FFEC6AB872E845802A2AF6578D6325 /* GULAppDelegateSwizzler.m in Sources */, + 892B5DF3DFD4DBCFCA98E08960436D78 /* GULAppEnvironmentUtil.m in Sources */, + 5AEB76D30F81513312E3557E791B65E8 /* GULKeychainStorage.m in Sources */, + 98F11D0C70500708D1248B9A3B318444 /* GULKeychainUtils.m in Sources */, + F3528EFD40F1848D11C05C35551620FC /* GULLogger.m in Sources */, + 17AC7A8AF2D22958FA58007738A6163A /* GULMutableDictionary.m in Sources */, + C8F504AA6E46B717433B99B508C44D18 /* GULNetwork.m in Sources */, + E4478C55790FC14C49C683BA1529D250 /* GULNetworkConstants.m in Sources */, + 4F676FDC744F549E9A5F525DE256C4EF /* GULNetworkInfo.m in Sources */, + 4D0639F88051BD599F36421151E9DBC5 /* GULNetworkURLSession.m in Sources */, + 58E02CA7B999430A87D32E7E49BC2404 /* GULNSData+zlib.m in Sources */, + 90A1CA8C19F96F2A4FD591739F0B0EAF /* GULReachabilityChecker.m in Sources */, + BC9DD2893E994CA6924902DD3DD5A9E1 /* GULSceneDelegateSwizzler.m in Sources */, + CE397ED286D9F54220AAF9532DAAA642 /* GULSwizzler.m in Sources */, + E87277320028926C0874EBF007519266 /* GULUserDefaults.m in Sources */, + C76093BBFB1E34314E354D0261A26C9B /* IsAppEncrypted.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4C3DD626082BB69BA00784C65617F192 /* Sources */ = { + 4EE2018546C55CDEE07F53AAD939B265 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + BE90281F3D712810D22EC11D42A35712 /* CwlCatchException.swift in Sources */, + 60047BD8AF182AD53512CB4F23F741B5 /* CwlCatchException-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4EE2018546C55CDEE07F53AAD939B265 /* Sources */ = { + 4F2BFA9370E672B7A9976CF284F86AF1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - BE90281F3D712810D22EC11D42A35712 /* CwlCatchException.swift in Sources */, - 60047BD8AF182AD53512CB4F23F741B5 /* CwlCatchException-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4EE414C687BD3A4837DCCB29E149BB36 /* Sources */ = { + 530B0ECCB35650F30F9FA57A74F6ECB4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F5B060DC00F8542330C38DB0BD0B9B6E /* nanopb-dummy.m in Sources */, - 131A2352CC8213EE7F580146D3A70338 /* pb_common.c in Sources */, - 524BDC4CB74414F98BD75FD8BA36226F /* pb_decode.c in Sources */, - 8E488F785EEA12B53987EC7C15DAB186 /* pb_encode.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -8604,13 +6762,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5A76977681B168FA1CF3E22D1263B8B9 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 5DC538F52D71FE937FE12FD2C0B598BD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -8708,138 +6859,52 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6E0091E4ECEB48F43FD673C8B4CD3BB1 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 777DFCEBD1FE285F39F2092772A35344 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 2A9549B0AE9C27665639987870E2CF0B /* IQTextView.swift in Sources */, - CE156D71DDA0E5B674B89DF2AACF336D /* IQTextView+Placeholderable.swift in Sources */, - EE72C0C8695A5C364BD6637453741C93 /* IQTextView-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 7FBF5CB7A6338ADCB7FB5706A4BB5D4A /* Sources */ = { + 71EF59A2696F73D2A233018EEB276AD1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + EBF6056154FEAECD254C8BEE69502518 /* _ObjC_HeartbeatController.swift in Sources */, + 9DB77CBB03614AB0CD5373F10CBE942B /* _ObjC_HeartbeatsPayload.swift in Sources */, + 0B747A1A5A7C658E3D9FE454EFBBD72A /* AtomicBox.swift in Sources */, + DCE03D3605F5F0F0CA1206463D41C278 /* FirebaseCoreInternal-dummy.m in Sources */, + FB5B53BA45CDC86919490DD2238EA23C /* Heartbeat.swift in Sources */, + 1768B1324A9619EFDDDED87314560F1C /* HeartbeatController.swift in Sources */, + AB11679D9F4CBDAA6A6824D387DB75BF /* HeartbeatLoggingTestUtils.swift in Sources */, + 6ED27AE128B644CCC88F75C6B2A700EC /* HeartbeatsBundle.swift in Sources */, + 0D2BAAB17C7CA24CD18926F15F063CAE /* HeartbeatsPayload.swift in Sources */, + 3FC905A0DDDC000BE07D80842EAAF27E /* HeartbeatStorage.swift in Sources */, + C8F8732DEE67E672E1CAC972F16D028C /* RingBuffer.swift in Sources */, + EEF0A512405F2180BBE84A7D65F96B59 /* Storage.swift in Sources */, + E95CCC119CC7ABCAF99DCC629FC3BF8F /* StorageFactory.swift in Sources */, + 71AB3AFE8ACF1FC3D4E29FCB88BA43EB /* WeakContainer.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 808DF4FFAEC10E89279706577BA22300 /* Sources */ = { + 8CBB81284B2079EFA103D647B4F0E489 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 2889AD3AC4418F1D4DD8001C5F1C3E18 /* Pods-TVOSExampleApp-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 89CAC34AD43FC7F99A67F1FE36594F44 /* Sources */ = { + A969F0E9AB57461050B5FF8DF5E8BD58 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7F60AC23122F708035574FF801073698 /* GoogleUtilities-dummy.m in Sources */, - D7F1FF58EEE53B3C9677746A36394507 /* GULAppDelegateSwizzler.m in Sources */, - 48C6C5B1E8435F0AE8489E579807243A /* GULAppEnvironmentUtil.m in Sources */, - EF12B41FAE35E183CFB86382B7C01330 /* GULKeychainStorage.m in Sources */, - BF0CA91DAB85654FAD7D6E62C9B41C00 /* GULKeychainUtils.m in Sources */, - 22C77BE8A58417F12686AC4DC7B03DE5 /* GULLogger.m in Sources */, - 0D98860FE102C85029C9EF08AF393538 /* GULMutableDictionary.m in Sources */, - 4400CDB03973F646E753150BF596D719 /* GULNetwork.m in Sources */, - 6CF57A697F7DB553D24A0B6B994C4B4B /* GULNetworkConstants.m in Sources */, - 6350B1EF54E299F8FD510F0FF03F885F /* GULNetworkInfo.m in Sources */, - EB8A34A4A321A07DF1D942F4EF8CF427 /* GULNetworkURLSession.m in Sources */, - BBC969CD7C8E78F2AD836B2142B618BA /* GULNSData+zlib.m in Sources */, - 7B3F92A62D124C593C5B226CA3E64008 /* GULReachabilityChecker.m in Sources */, - 26CFAE215D7DAE757062A199605F0C22 /* GULSceneDelegateSwizzler.m in Sources */, - 8D3AED7AD2C1FE2CB9DC4CF97989CC1D /* GULSwizzler.m in Sources */, - 8BA002887FDB1808AA352DCF5959267E /* GULUserDefaults.m in Sources */, - E68DFBB1A67F0CC549B4A330F94CDA8A /* IsAppEncrypted.m in Sources */, + EB7847888EE120CB5CE1E2F8CD7ADBF5 /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8CBB81284B2079EFA103D647B4F0E489 /* Sources */ = { + AA8CDF4988ACF9FB51812463477241BD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2889AD3AC4418F1D4DD8001C5F1C3E18 /* Pods-TVOSExampleApp-dummy.m in Sources */, + 45A59DA3ED4B808A2452F0953DC2B207 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8EC5632F94A27E3B473E5AF41A9C46C4 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 99B1B34917F882FDCB78F7CDFC1CAF1C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0CF1461DEF6B2B8377AD34DBC8556318 /* IQKeyboardConstants.swift in Sources */, - 859B6F58397D28FB6595F081C6C3EA2A /* IQKeyboardCore-dummy.m in Sources */, - CA887B2E75BD7E3088A01C5AF944F187 /* IQKeyboardExtended.swift in Sources */, - 28CE8560A54102EC374B7A69A82838BC /* IQTextInputView.swift in Sources */, - 04FB3EE8176CA2D3D2DCE74AB0FB7F84 /* UIView+Hierarchy.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9AF390378EEBE0C37CD10E9AA4A1E49D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - E8F2FBA2F806C6A0F58523070DB434E9 /* Pods-Examples-SourcePointMetaApp-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A3B20DB20FBB895B9F88900328A948EC /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A969F0E9AB57461050B5FF8DF5E8BD58 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - EB7847888EE120CB5CE1E2F8CD7ADBF5 /* Pods-Tests-SPGDPRExampleAppUITests-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AA10E4A6BFCF9DCF25DEBDE4089CB614 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 49CB882AA67A43AE9688262A8F673E54 /* IQBarButtonItem.swift in Sources */, - 09E91ACB0667F1A80B81A95B21FBC90D /* IQBarButtonItemConfiguration.swift in Sources */, - 59032A0895799CFF0F7E2E4DD192B38D /* IQInvocation.swift in Sources */, - 83000B2F87DA911236FFA2F745497D79 /* IQKeyboardToolbar.swift in Sources */, - A8145E045FDAF1B97B809396DB014941 /* IQKeyboardToolbar-dummy.m in Sources */, - C06D95D3D44238B0203EFC8AA71432A6 /* IQKeyboardToolbarPlaceholderConfiguration.swift in Sources */, - 610F47A5BBDD2271EA15F178856976AF /* IQPlaceholderable.swift in Sources */, - 633DC282F9B4394A0C8D3337B98BD76B /* IQTitleBarButtonItem.swift in Sources */, - 3A39CCA7D7AD4FD7F1A7B8B43554CF8C /* UIView+IQKeyboardExtension.swift in Sources */, - 7907D88CE0210C78C74F77A38220E2F2 /* UIView+IQKeyboardExtensionDeprecated.swift in Sources */, - B3B24F63E48B3B8A852A87E8009E509F /* UIView+IQKeyboardExtensionObjc.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AA8CDF4988ACF9FB51812463477241BD /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 45A59DA3ED4B808A2452F0953DC2B207 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - ADFBFA398F32EF1517D2524A1D298B7F /* Sources */ = { + ADFBFA398F32EF1517D2524A1D298B7F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -8896,7 +6961,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B4F06FB897997D51AC9DECA3DD3421CF /* Sources */ = { + B25871860C8FA0875D29E758FCFF857D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -8913,7 +6978,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BD07B3042122306A2AAD91496D89E760 /* Sources */ = { + C20B74D925DFDA380B7D6A1E5F26631F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -9012,89 +7077,77 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CC54827D47730191F2D44BBE1C890044 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 12AEFB4DEFC2627E558D99A56F68495E /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D2B4B6C36824E75709B3E039BFEEA15D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D60FB0A8DB99659897868A5B8FC45FAC /* Sources */ = { + CB08316D48AED5E76A9C34649A36B5D1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - EC1FDAC6152594C8BBA6CB7A8EB52C18 /* Pods-Tests-NativeMessageExampleUITests-dummy.m in Sources */, + 398A3DAB5D4482FDC7F12901034BBB85 /* FBLPromise.m in Sources */, + AB9189665F8658EC5127390E1F87426E /* FBLPromise+All.m in Sources */, + EACA587D2644A9BE23CEEE2FDDDB4928 /* FBLPromise+Always.m in Sources */, + 3A22A9AD8BA0C1789D1C38CA77DAD6AC /* FBLPromise+Any.m in Sources */, + 17313D882C0D3AA6E8F94383CF1C28DF /* FBLPromise+Async.m in Sources */, + 02A8B3CE76F848550DD7D9D6E6A5F0CC /* FBLPromise+Await.m in Sources */, + 939859020BDE8E2F63632051299225D3 /* FBLPromise+Catch.m in Sources */, + 4BBC77786D48629EFFBB9A0ACD32BBC2 /* FBLPromise+Delay.m in Sources */, + 7448355C5632284FD044B0117271CD4D /* FBLPromise+Do.m in Sources */, + 4435E4FB97F269247D29522C50A775E3 /* FBLPromise+Race.m in Sources */, + 8DB32115471F7A1C6C4771CBCEA387DE /* FBLPromise+Recover.m in Sources */, + 0BEFACEF8CB7D14619E68093C75ABBEE /* FBLPromise+Reduce.m in Sources */, + 7C0594D712174FFFEB409008F8291ADD /* FBLPromise+Retry.m in Sources */, + 5092611EAEDF9B57CDDC32F17D9432B9 /* FBLPromise+Testing.m in Sources */, + 2DE8979EFD2E51496BB02F03044CA0CD /* FBLPromise+Then.m in Sources */, + BD141EEF7C40DE2AC94BF88B2EBE2052 /* FBLPromise+Timeout.m in Sources */, + 18730D082F976A1CAB712036C76AF01D /* FBLPromise+Validate.m in Sources */, + 7A8C209CC23EB240E289EB5F5276EB09 /* FBLPromise+Wrap.m in Sources */, + 54D70689ABE93BB9193B0E4364FD4512 /* FBLPromiseError.m in Sources */, + D08FD2BD103ED4B34136772F60E6E9E6 /* PromisesObjC-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D6E80E9C2A300802CA058FF13F6AE0B0 /* Sources */ = { + CC54827D47730191F2D44BBE1C890044 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0E35C54CF0CA441B4185FDC10F9F2804 /* Pods-Examples-ConsentViewController_Example-dummy.m in Sources */, + 12AEFB4DEFC2627E558D99A56F68495E /* Pods-Tests-ConsentViewController_ExampleTests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - DB4DD89191644B23F8A1499EF3D39723 /* Sources */ = { + CD629858F6FF3F526CA896C508655DFA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DC2FA0F6B2C52A6FB8B5C8463DA7B4E7 /* Sources */ = { + D60FB0A8DB99659897868A5B8FC45FAC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 447AC992306D854F91D322173D594746 /* CwlCatchException.m in Sources */, - 9439CAEA2CC5B25DCC288E56E617A846 /* CwlCatchExceptionSupport-dummy.m in Sources */, + EC1FDAC6152594C8BBA6CB7A8EB52C18 /* Pods-Tests-NativeMessageExampleUITests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E37C018D16F7A9E23EBB2127E4208FB2 /* Sources */ = { + D66B039953345EDE241320DD2650B6B1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 62ED706B2E85A968AD1E0734698D1E00 /* Array+Sort.swift in Sources */, - 778B4229E23E12218122EE92523628A4 /* IQDeepResponderContainerView.swift in Sources */, - 08765EEB98CF088F7263077316CB1105 /* IQKeyboardToolbarConfiguration.swift in Sources */, - BA5D6E6897211807140AC96198CE2B2A /* IQKeyboardToolbarConstants.swift in Sources */, - 29EAA1377CDEF3A4467EF58D99A9013C /* IQKeyboardToolbarManager.swift in Sources */, - 9301B49861F217CD337483E5AE1F69C7 /* IQKeyboardToolbarManager+Action.swift in Sources */, - 80C47BB4735447FF3A5BD28D85A79FB7 /* IQKeyboardToolbarManager+Debug.swift in Sources */, - 8F4874B5FAB85EA9FAA7CE1C916F2E12 /* IQKeyboardToolbarManager+Deprecated.swift in Sources */, - 69CE792E7DF70AF60636D71ACB7A5512 /* IQKeyboardToolbarManager+Internal.swift in Sources */, - DE655B5ABD24CD91A6EC78A6CB5782A6 /* IQKeyboardToolbarManager+Toolbar.swift in Sources */, - DC41E8B731F98F5AF5AB6C1D860FF9F9 /* IQKeyboardToolbarManager-dummy.m in Sources */, - D7D15EB96DD55E5C23C88197F4B395BE /* UIView+Responders.swift in Sources */, - 4341A1338AE2EBB9E309F8D076F4E3A1 /* UIView+RespondersObjc.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E3AC4802C334019797172D48F471062A /* Sources */ = { + D6E80E9C2A300802CA058FF13F6AE0B0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 0E35C54CF0CA441B4185FDC10F9F2804 /* Pods-Examples-ConsentViewController_Example-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E5E43063781A06C4BAFDDB90C2E8AA70 /* Sources */ = { + E164E4B24EF438ABD7BDC033D18658BE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1D4D62C7EE1C0CBADAC8F18A0FD319FB /* IQKeyboardReturnManager.swift in Sources */, - 2E6A63B67ED2BE70D780A9740DD11B9B /* IQKeyboardReturnManager+UITextFieldDelegate.swift in Sources */, - 98D4DF8702052534924A9B635F58C249 /* IQKeyboardReturnManager+UITextViewDelegate.swift in Sources */, - EFA2DF354996B1F561E3545D1F5030F0 /* IQKeyboardReturnManager-dummy.m in Sources */, - 5CF4698F9A8F89E3C94439F8438B66E2 /* IQTextInputViewInfoModel.swift in Sources */, + FEEBFD4A6F52B328F11C459B8F4D9B0B /* CwlCatchException.m in Sources */, + 5C153C68B0102BD3C6945847A39D9915 /* CwlCatchExceptionSupport-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9140,6 +7193,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F0CD3E96FC530393D4089539032D67A3 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; F27A91104A54FC724B1C20253E65E9DD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9216,1885 +7276,898 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FC2DD432DAD8855EAC92D22A02C37AA4 /* Sources */ = { + F91FE23AFFB9331C0932D287B1693575 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - AA87E734472B9231E1A7DCD57BF74EC8 /* _ObjC_HeartbeatController.swift in Sources */, - C8F72BA8913CF3227F6A9C1EF184E70E /* _ObjC_HeartbeatsPayload.swift in Sources */, - 048DE687F4DA16325F28D4A9F555A7F6 /* AtomicBox.swift in Sources */, - 27B56CC927D5035AF2398B9A05289D8A /* FirebaseCoreInternal-dummy.m in Sources */, - 99F8376E84A9D5A823E0168AD8C7F6A7 /* Heartbeat.swift in Sources */, - 5F5F094636A99E789C83162A7BFF24B4 /* HeartbeatController.swift in Sources */, - B377E43535F5B1A5AA9FABBC24D46042 /* HeartbeatLoggingTestUtils.swift in Sources */, - 4393FFC58E875928839450ECF8223F14 /* HeartbeatsBundle.swift in Sources */, - 834088734717D2B434F2DDB4867B6C14 /* HeartbeatsPayload.swift in Sources */, - 6DD1C263035F85DF005DD93D0F8C147A /* HeartbeatStorage.swift in Sources */, - 8FA56A61526ECBCBB3DA5B46F7D957E7 /* RingBuffer.swift in Sources */, - C64D71CB04914F24680884B26ABD7EA6 /* Storage.swift in Sources */, - 488457EC015E7FC982FC78FFA9D53CEB /* StorageFactory.swift in Sources */, - 551D3F3E2972DE40D696A161E4813F98 /* WeakContainer.swift in Sources */, + 4B7E3527BFEEC1A0C22C0BE2E5D0580F /* FIRCurrentDateProvider.m in Sources */, + 5C071F920D94B8C26D71B55820B50AD0 /* FirebaseInstallations-dummy.m in Sources */, + C948640EA7158C1FE432897F5D1E7BF4 /* FIRInstallations.m in Sources */, + 9197F5C962876E5D678A67B0E6D1DE52 /* FIRInstallationsAPIService.m in Sources */, + C43224922A2ABB3247DB1D7F1594192B /* FIRInstallationsAuthTokenResult.m in Sources */, + 8922FB689B388FFE949B2E5F59D53B2F /* FIRInstallationsBackoffController.m in Sources */, + EB1E250F0B3BD0CF9605EA30C324C0D2 /* FIRInstallationsErrorUtil.m in Sources */, + 15E586876B903838C76237A59C8126E9 /* FIRInstallationsHTTPError.m in Sources */, + 63D6E6B05774D7956F06C8C5F3540430 /* FIRInstallationsIDController.m in Sources */, + 46C5DA677400C346FF760014C00F8D01 /* FIRInstallationsIIDStore.m in Sources */, + 4532C7DEA70FEB1258B323092E70B831 /* FIRInstallationsIIDTokenStore.m in Sources */, + 4AFFB626836DC07A212DF7ED5CF430EC /* FIRInstallationsItem.m in Sources */, + 7F1D84645EF6596ABE093C22BDB6640C /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */, + EEB31750FE18BDAFF8F6CD80263040E0 /* FIRInstallationsLogger.m in Sources */, + 0AC3C06916BADCA057E6A2C40B7AA59A /* FIRInstallationsSingleOperationPromiseCache.m in Sources */, + AF6BD2AF1F08854B262A17A1A8C55FF2 /* FIRInstallationsStore.m in Sources */, + E6D7497F23E9A17D1E1BB207B286F70E /* FIRInstallationsStoredAuthToken.m in Sources */, + FCB8C656EC65008C036C2F79B6EB8520 /* FIRInstallationsStoredItem.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 0161926CB0B89E977B5D846E981DEF69 /* PBXTargetDependency */ = { + 029D1C6CA381C1347E241EC8A9BEFC4F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "PromisesObjC-FBLPromises_Privacy"; - target = 1BFBEDBF7E03729D43C96530EE190825 /* PromisesObjC-FBLPromises_Privacy */; - targetProxy = C0C2D0B8FFA6CB98EA96B87A6EBF7ADB /* PBXContainerItemProxy */; + name = Wormholy; + target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; + targetProxy = 26FE227A23A6EBD0C6923AC571097243 /* PBXContainerItemProxy */; }; - 025CDD6809F8D0A10DD27ED8531039AA /* PBXTargetDependency */ = { + 04147B586E5D55CC252E7E4A7C789668 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = B467AE3A19829EC14359A251AF18AF64 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = FBB5F12E195162B54E065EB180F584D7 /* PBXContainerItemProxy */; }; - 0357B1774B5F3CE7F5A60342A9950E8A /* PBXTargetDependency */ = { + 0654D4AC483355C63870A0528CF8C925 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlCatchExceptionSupport; - target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; - targetProxy = 2BC92B7E618DCB3D59D15D8EFF836760 /* PBXContainerItemProxy */; + name = CwlCatchException; + target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; + targetProxy = 58337031DA75305C6E98E63B7CA713D9 /* PBXContainerItemProxy */; }; - 04712D854D474B61B28CEE3C41F6E3A1 /* PBXTargetDependency */ = { + 081AB4DD3B4685C926BB2BE92A79D578 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Quick-iOS"; - target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; - targetProxy = 0220DF57C33057051376936CCAA42B33 /* PBXContainerItemProxy */; + name = SwiftLint; + target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; + targetProxy = 5ADD3D55E0DCF4BEBB00A6DE67785D5B /* PBXContainerItemProxy */; }; - 04A851B2C1F0422E9150506878F894C6 /* PBXTargetDependency */ = { + 09111E3F04C48557425F35558F5D902A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlCatchExceptionSupport; - target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; - targetProxy = 08E99292431752E0706F55811B1013A3 /* PBXContainerItemProxy */; + name = CwlMachBadInstructionHandler; + target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; + targetProxy = 305B38AC1BFA26E13D999EADA266B623 /* PBXContainerItemProxy */; }; - 05832344E8A5209A1C3FA0D5FD4A72D6 /* PBXTargetDependency */ = { + 096286FB17FB76301B401832862BE3CA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreInternal; - target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; - targetProxy = 16DB892364C220928AF8104A3ADD937D /* PBXContainerItemProxy */; + name = "SPMobileCore-iOS"; + target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; + targetProxy = AC5BC632FB0B9A54FF92CFD58F6BE7C9 /* PBXContainerItemProxy */; }; - 08F9A089A3B6E8A0FF4640E92B5A4C4F /* PBXTargetDependency */ = { + 0AB137038F492F6F53720242FBF30CEF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardToolbarManager; - target = 020993F16DA5986DACE118349EBCE9E5 /* IQKeyboardToolbarManager */; - targetProxy = 1C52FF37C02151568BEB3D762969249B /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 17569719D15993FC97BBBE4BE83DC1C2 /* PBXContainerItemProxy */; }; - 09A3F63BE4336ABAEA88370B830C7F8D /* PBXTargetDependency */ = { + 0ACB98B5892CA1CD48B72DBDDBF4F381 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = E73D1FF84BF66F3D5335D2E903BF7ED7 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = C0BE41E8C8541E6F4615A82D9EF329EE /* PBXContainerItemProxy */; }; - 0D0AA8CF8029B773F064E5ECBC5F0EB0 /* PBXTargetDependency */ = { + 0C7CC4E47F6D32282E976C38D0247AAC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "SPMobileCore-iOS"; target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 1AD18141ADF81D95EB46C85C0A2A92EC /* PBXContainerItemProxy */; + targetProxy = 961B2F0B67DE3E4DFF4C7C595F9F97BE /* PBXContainerItemProxy */; }; - 12120CD383E9BB17CEE14AD6FC316359 /* PBXTargetDependency */ = { + 1048FC6A62984D643CA5EF936BB6925A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = D05CA6549F08C21D8D8A8284E430ADE7 /* PBXContainerItemProxy */; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = 3606DE3EEBB3944232E5B744AFA5BE97 /* PBXContainerItemProxy */; + }; + 13F9A62D46D6D9CCD2022A126B1FD360 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Nimble-iOS"; + target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; + targetProxy = 49E9682C14E5A352DC101C89E9531C3C /* PBXContainerItemProxy */; + }; + 167B1BDC26A8DFFCD47D9BD53C125410 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "ConsentViewController-tvOS"; + target = 94DAD332BFFC672BBE92726504A716F8 /* ConsentViewController-tvOS */; + targetProxy = 8D03D160BDEE04536E99120FFAD07DE1 /* PBXContainerItemProxy */; }; - 12C6A5AAEDF9FE2BD91CB9F0681CF5A0 /* PBXTargetDependency */ = { + 18936A6DA97A3BC7DD24EBF71791DF4A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CwlPreconditionTesting; target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; - targetProxy = D56DA2984C2B4AFE122A0EFE1F9E6360 /* PBXContainerItemProxy */; + targetProxy = C54C071DDA044DA72A6D30F8EED57083 /* PBXContainerItemProxy */; }; - 12F2EE3DD37624CB384DDDB5FF0125F3 /* PBXTargetDependency */ = { + 18B55D384E1748A5BB1FFBEDA15FE1E8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 8C1319ED61E95F9E9B639631AB2D9500 /* PBXContainerItemProxy */; + name = CwlCatchExceptionSupport; + target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; + targetProxy = 747886AB42ABD54CB313344191C7DE79 /* PBXContainerItemProxy */; }; - 135514326C96FF72B02A8D025ACD8E32 /* PBXTargetDependency */ = { + 18C8EEF8E002948C3A0D943794BC6CA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardCore; - target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; - targetProxy = E746ADADD5A62A3DD4873214B8BEEC39 /* PBXContainerItemProxy */; + name = "Quick-iOS"; + target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; + targetProxy = 27ED2A06D775107C4D3D63AAF8324032 /* PBXContainerItemProxy */; }; - 13F3854DCB5D2E5307F3011594368E0A /* PBXTargetDependency */ = { + 1D6D47A33B236FD288CBC53D661E13B5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "SPMobileCore-iOS"; target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = E9BCF1221D4426B785E91619CC7E822F /* PBXContainerItemProxy */; + targetProxy = 9B3DEB2DE16925F2F513BF1A11934357 /* PBXContainerItemProxy */; }; - 145684127DFD5FBB0A5C67D1E02E0967 /* PBXTargetDependency */ = { + 1FDCA5CBE3ABACC5F01D82E97956EEF1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Quick-tvOS"; - target = 28BE3303E3F4ECC2BDF79B1D886D2E74 /* Quick-tvOS */; - targetProxy = 9BD1F41BD49D28F8EF8CB231E50AC9D0 /* PBXContainerItemProxy */; + name = CwlCatchException; + target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; + targetProxy = BAD887B002BD6FD591EDECDB3C8763F3 /* PBXContainerItemProxy */; }; - 15216ED3338DBDE73BDDEDEBDF6F59B4 /* PBXTargetDependency */ = { + 212BFEFFD7068ECA8EB23910599D35BA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreInternal; target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; - targetProxy = D908ABCC606DF4323D3CE5710A099E5E /* PBXContainerItemProxy */; - }; - 163B717C1BF1E4C088399BAFB95F16B1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 93EE33E644CD4DCB50D06ED0F32CDC00 /* PBXContainerItemProxy */; + targetProxy = 44C81D970B93DABED589F35FB9ABCC69 /* PBXContainerItemProxy */; }; - 16F2BBFCB64B10A779E70C133D48C386 /* PBXTargetDependency */ = { + 228541259CA6DA652B55C2CDBFB0AA48 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = F8F40A945F71081EDAA4E11939FB3A66 /* PBXContainerItemProxy */; - }; - 1ABBCC1DF42A96371A604EFCDC8F1960 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CwlCatchException; - target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; - targetProxy = BD5912F6603A73CE7022FA12390F4096 /* PBXContainerItemProxy */; - }; - 1EA9203BBADD058AD649C6EF6710DCCD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Wormholy; - target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; - targetProxy = 6CEF25C4587A5162EF65C3E6DCC23541 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = A2701990215896BE8562786496CE4160 /* PBXContainerItemProxy */; }; - 2004CAA41B4BF3A5D444CD9C65E4838C /* PBXTargetDependency */ = { + 2375A5FBFBB652502814110C5896AA5F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlPreconditionTesting; - target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; - targetProxy = 8391B4915894DAAB8E7ABD584E911878 /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 1D869CFA79821ADE0A894083ACF02954 /* PBXContainerItemProxy */; }; - 200FE4AA058E59E05655E87F6399EBE2 /* PBXTargetDependency */ = { + 23B09BF2C31D37012FB732B03DAFA82F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlPreconditionTesting; - target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; - targetProxy = F0B27D8BDBB73D4DE6F22742EE5E8A21 /* PBXContainerItemProxy */; + name = CwlMachBadInstructionHandler; + target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; + targetProxy = A2BF2D70520F9CEC98B0267CA1035B10 /* PBXContainerItemProxy */; }; - 2295775C3F8AE8E0725BFDB54151EC2D /* PBXTargetDependency */ = { + 2757DFAD162F08CC633CF1E0DCE78793 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 7BC9C0CD21C2C65A3620FD4F39307250 /* PBXContainerItemProxy */; + name = "Quick-iOS"; + target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; + targetProxy = 0D4153CF84E7CB96558D6504D61164B9 /* PBXContainerItemProxy */; }; - 24A2D233C1596674319520E589C9345E /* PBXTargetDependency */ = { + 2BB009EC488C92B21FA45D49DD529798 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SwiftLint; target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; - targetProxy = DD3C569FF38F621C851DB89F0E7073BF /* PBXContainerItemProxy */; + targetProxy = 0DBF77282FE95A23BDA76F6DFA711C61 /* PBXContainerItemProxy */; }; - 2561519F2960884A51D6997F2DBAAD41 /* PBXTargetDependency */ = { + 2D0A97D3BD67F198E3E9B3AF1A419828 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CwlPosixPreconditionTesting; target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; - targetProxy = 948A35EA8A8BDB7E1B5821B28CFF81CA /* PBXContainerItemProxy */; + targetProxy = 4095540006CA9BF19B76AF49AB044A7D /* PBXContainerItemProxy */; }; - 2723A42D84F2D2890CEB143F85911502 /* PBXTargetDependency */ = { + 2EFBC6B9E512B081CF5C00A5407AA227 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardToolbar; - target = F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */; - targetProxy = DF3D0FD8B5F6257EA4AA112AEC2F26C9 /* PBXContainerItemProxy */; + name = "Nimble-iOS"; + target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; + targetProxy = D49BCD2ACFEBE59F9680812071EAF08A /* PBXContainerItemProxy */; }; - 275A556D3A3C2644B3A911B43C332F0E /* PBXTargetDependency */ = { + 30CAB7E517E2F75170B4D04137E15069 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Wormholy-Wormholy"; - target = 93CEC7FFB57A497DE49471C5D9517C13 /* Wormholy-Wormholy */; - targetProxy = 05A9514F2182A5BC4ADFCA9DCEFFE3EF /* PBXContainerItemProxy */; + name = "SPMobileCore-iOS"; + target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; + targetProxy = 05130544C5F9BD064A33161A686F4F18 /* PBXContainerItemProxy */; }; - 27615A99FFAE622D08FBE8468FD0D551 /* PBXTargetDependency */ = { + 31197EFA2AC7CFF11EA15DC17EFFC333 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Wormholy; - target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; - targetProxy = FD8536EF62446E7D5E6F447941BD4239 /* PBXContainerItemProxy */; + name = CwlMachBadInstructionHandler; + target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; + targetProxy = 382B5260D6BCFDCAFDB4C3C773797AC7 /* PBXContainerItemProxy */; }; - 28524104158BAC9D84C7DBE21FC216CA /* PBXTargetDependency */ = { + 326B034D843DB81EDD5C9C6545491B4A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 25C747BE8A176755ECE30E6ED64B042B /* PBXContainerItemProxy */; - }; - 285F9DFEC8E718A3FA5A7E3805B18F55 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 0FA0751D6F34E25C3426E3F37D4D3898 /* PBXContainerItemProxy */; + targetProxy = CA7D33868E3E38C5FFDA20F842AE873F /* PBXContainerItemProxy */; }; - 29A05B77C9DEE36FFE90389573D543EA /* PBXTargetDependency */ = { + 392DA47B82BD7265695A6585E373B0C8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CwlMachBadInstructionHandler; target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; - targetProxy = 9D831050C3F0954F7D626EA88A1D2FC4 /* PBXContainerItemProxy */; + targetProxy = E5AAB47FD60D72FAADFE77126D5B09A0 /* PBXContainerItemProxy */; }; - 2B27F3C24B500C1A990C12374F3317BB /* PBXTargetDependency */ = { + 3B300B2BDD13BF7876A0305CF0587FFD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS-ConsentViewController"; - target = F9B2C41D8F3FCEB2256091CF2667D600 /* ConsentViewController-iOS-ConsentViewController */; - targetProxy = 7FC05F3F158C9DCC8F9BA1F0286154EA /* PBXContainerItemProxy */; + name = "Quick-iOS"; + target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; + targetProxy = 730B4DD1C4D4E562DB1571AAD30154EF /* PBXContainerItemProxy */; }; - 2CF004C850451E5D282AE15D578479CB /* PBXTargetDependency */ = { + 3C8DE18E7148E61AAC3ED6214C507E54 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = B533DBF06034A0AFDD42CC8E76973033 /* PBXContainerItemProxy */; + name = Wormholy; + target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; + targetProxy = 7ADF269A8F7FB18851AF55D83E03B62D /* PBXContainerItemProxy */; }; - 2EED339218A454388DC19D3CCC143167 /* PBXTargetDependency */ = { + 3DDFBBC280DD58DB20C9ED245E7C5E67 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlMachBadInstructionHandler; - target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; - targetProxy = BE227B09BD72F08A9493B840589F52DC /* PBXContainerItemProxy */; + name = "Nimble-iOS"; + target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; + targetProxy = BDB159DE884D0B28C459286D7F081748 /* PBXContainerItemProxy */; }; - 30856480E4920E8E363E53BC7350DDAA /* PBXTargetDependency */ = { + 3FA3C0FB051772BBB85F396EF2FBA8F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlCatchException; - target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; - targetProxy = 1850A22DDD7FE824B243B41E5E39B755 /* PBXContainerItemProxy */; + name = "SPMobileCore-iOS"; + target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; + targetProxy = 60DB33E604F4C91DD4B0528EE7727592 /* PBXContainerItemProxy */; }; - 30A13B5B8D78A96F1042F24B50CCBEC0 /* PBXTargetDependency */ = { + 43B33DE419550EC2523C54B1262DD15C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlCatchException; - target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; - targetProxy = AE9BC9F8B59929D49E5A5C29E8179ABE /* PBXContainerItemProxy */; + name = "SPMobileCore-tvOS"; + target = 0010F36F9D103AAE441EA8E1058A19BC /* SPMobileCore-tvOS */; + targetProxy = 85311B39D7F039CE8D39B94C7088FC3B /* PBXContainerItemProxy */; }; - 3309F81F38926524D89AB1DD3106CF84 /* PBXTargetDependency */ = { + 43E1E82100778A8B62235F56B15D0E88 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlCatchException; - target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; - targetProxy = 8903CF0BDB425F8FF2C1E6659922EA4B /* PBXContainerItemProxy */; + name = CwlPosixPreconditionTesting; + target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; + targetProxy = 77BA4C1B21A9D2D8190679C14E13014F /* PBXContainerItemProxy */; }; - 33AA026C3D09D342F9CA54950CA2E4A0 /* PBXTargetDependency */ = { + 44877AC413CFB4B042AF1C296ED5AFE4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Wormholy; - target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; - targetProxy = DD2FF1C0379A3535799C5F864139DDB6 /* PBXContainerItemProxy */; + name = CwlPosixPreconditionTesting; + target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; + targetProxy = 6C2DFE7EACD8B25557D0BEC7046109E4 /* PBXContainerItemProxy */; }; - 34E7D091DD16CC14BDBC9DA4E28A8B5B /* PBXTargetDependency */ = { + 4ACA639AB8AC4EF5E8451514668F46B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardCore; - target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; - targetProxy = 59CCB9E693BB2505E26AC6ADAF09A6DB /* PBXContainerItemProxy */; + name = "Nimble-iOS"; + target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; + targetProxy = 721C944C1CD90436982ECF05A298EEAF /* PBXContainerItemProxy */; }; - 35B8000C0C27BE38B4F557C35F7E2554 /* PBXTargetDependency */ = { + 4B888FD2208F6954640C89C11FB04F6F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardNotification; - target = A26E6FD851C20D652B2755C1464A9990 /* IQKeyboardNotification */; - targetProxy = F7419DF1202D741ECBDF1FA5682E00B3 /* PBXContainerItemProxy */; + name = "Quick-iOS"; + target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; + targetProxy = 507759594CF1D4789CE24DEAD9343F74 /* PBXContainerItemProxy */; }; - 372EF258968E33C21CC5BF640DB79002 /* PBXTargetDependency */ = { + 4D72EA1DBEC9F5780294B5747E796BB5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlCatchExceptionSupport; - target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; - targetProxy = 53BE2F0F3CCF47DCE6E06F5FA3D0E1EA /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 7E97E78AC09E12552E2C1C64CEAF9186 /* PBXContainerItemProxy */; }; - 3741DAB3FB0889190920B54EE1991B7F /* PBXTargetDependency */ = { + 4DFF22EDB2AEFE46413BA01A0C404BEE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardToolbarManager; - target = 020993F16DA5986DACE118349EBCE9E5 /* IQKeyboardToolbarManager */; - targetProxy = 292446881DEBB9DCD4AEBDAF46378DA2 /* PBXContainerItemProxy */; + name = CwlPosixPreconditionTesting; + target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; + targetProxy = 1B323B20290F01D3502CCA3EBA354B4A /* PBXContainerItemProxy */; }; - 37E5E6E075B3A94D4B01DB4B551552E5 /* PBXTargetDependency */ = { + 4EF77CBB6F25C72C119E4B2082EF7A0A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "FirebaseInstallations-FirebaseInstallations_Privacy"; - target = 3EB14444A17F9D4F1F697F7C1FF32245 /* FirebaseInstallations-FirebaseInstallations_Privacy */; - targetProxy = 20789E379F00A7BF491778930A79AFA6 /* PBXContainerItemProxy */; + name = "FirebaseCoreInternal-FirebaseCoreInternal_Privacy"; + target = 2949783F7EDB27AD4666B5427B63DC79 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */; + targetProxy = 0AAFC094178FDBD6C3A5F5923CE1EC29 /* PBXContainerItemProxy */; }; - 3B17DC5622FB9D6326627AA29DA0304E /* PBXTargetDependency */ = { + 501BCD449DA341188F8E03BFC68302BD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlPosixPreconditionTesting; - target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; - targetProxy = D68BCE895FC17B7A29DF2CA8C20D14BF /* PBXContainerItemProxy */; + name = "ConsentViewController-tvOS-ConsentViewController"; + target = 5D0718052BFEE502C9D9BEC44BDCFA76 /* ConsentViewController-tvOS-ConsentViewController */; + targetProxy = 2300E4557FDF2309094C827CFA390E3C /* PBXContainerItemProxy */; }; - 3B21269E1B6B37D2EF68917359A494F7 /* PBXTargetDependency */ = { + 51AF4FC40FAC2FD75A7AC1C1041C5E27 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Quick-iOS"; - target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; - targetProxy = 2AB5CA8C14D0352998B51B4118DBC93C /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 3A45E1FBF7C55847FD740327549062D7 /* PBXContainerItemProxy */; }; - 3B6123B79DEB06E0A31F47FB201AC2A9 /* PBXTargetDependency */ = { + 5279CECE469B7A1318C4E1448EC9AF17 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 4286DA4C58B967146C51A84B2BEEC397 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = CFDBAF33988ED540243453A5F30A0536 /* PBXContainerItemProxy */; }; - 3B63CD676BFE54AF67782F073B59739E /* PBXTargetDependency */ = { + 5318DE6514EE9E78301CD3AFE77D9D57 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQTextInputViewNotification; - target = 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */; - targetProxy = D7FA6F223EDB2F0F25D34B2794681F54 /* PBXContainerItemProxy */; + name = CwlCatchExceptionSupport; + target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; + targetProxy = F9D6E320ECE7C2DF59DF28948ED9D31F /* PBXContainerItemProxy */; }; - 3C77440D7F194776F95176990578B9DC /* PBXTargetDependency */ = { + 550895E380E21DA4548416890D50EF51 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreInternal; - target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; - targetProxy = 2EA3E2715FA20A39C8C4C6B998BEF890 /* PBXContainerItemProxy */; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = 239A0E993F39C0D28AFF181F640FE8C1 /* PBXContainerItemProxy */; }; - 3CAA2066E7834FB86FC5361442D883F5 /* PBXTargetDependency */ = { + 590862425926C30E03D2EBB627EF227B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "SPMobileCore-iOS"; target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 525C6E37FC0D21CD2C7E8FFAFF158083 /* PBXContainerItemProxy */; + targetProxy = 410FD30CD342DEFD784A07B69772EEDA /* PBXContainerItemProxy */; }; - 404E553E56929502E1C60237DBB3AB85 /* PBXTargetDependency */ = { + 594FA14863148D31B0F36D471142E4B7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = C8453CFC81D810C739A7F48D4E2F6EC8 /* PBXContainerItemProxy */; + name = "nanopb-nanopb_Privacy"; + target = 55522A91938FF505CFEBEAD2DD85AE2D /* nanopb-nanopb_Privacy */; + targetProxy = 6F18C7F62E9C6AB4D1ECDB4301DDCD78 /* PBXContainerItemProxy */; }; - 4083C4025BB84E2744C04CFD201BE86A /* PBXTargetDependency */ = { + 59B773D2CD5F435869728943ABE7374F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Nimble-iOS"; - target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; - targetProxy = 77B280E6B1664E4AA79FEE84CD9CB53E /* PBXContainerItemProxy */; + name = "SPMobileCore-iOS"; + target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; + targetProxy = 848C3F63B6ACF097B06FA4A2E9DC4AA9 /* PBXContainerItemProxy */; }; - 42C670F8C291E587DBE85E898DDDD04A /* PBXTargetDependency */ = { + 5A63370535C3B5BE9224CB57811C8B55 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-tvOS"; - target = 94DAD332BFFC672BBE92726504A716F8 /* ConsentViewController-tvOS */; - targetProxy = E16C80EFE192250EF585CF511C59C267 /* PBXContainerItemProxy */; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = 5B2CFABDDCE842522BAAE6E7BE4691DC /* PBXContainerItemProxy */; }; - 453CE114AE61603BD1959B7C9F8DB1F2 /* PBXTargetDependency */ = { + 5AD1526E9F32F906DA00F640647A47BD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Quick-iOS"; - target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; - targetProxy = 2BE65A7908A0B6180A8AB38FA9617BB6 /* PBXContainerItemProxy */; + name = CwlPosixPreconditionTesting; + target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; + targetProxy = 6195A533611D813EE75A3C3EFE0E03DF /* PBXContainerItemProxy */; }; - 45C1F43982D53D25F36EEEE3E0E53846 /* PBXTargetDependency */ = { + 664306D86F8D8A8536E8C0B9E2665A63 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-tvOS-ConsentViewController"; - target = 5D0718052BFEE502C9D9BEC44BDCFA76 /* ConsentViewController-tvOS-ConsentViewController */; - targetProxy = 0EE636C2FA4D05A98EACBC984CEC807C /* PBXContainerItemProxy */; + name = CwlCatchExceptionSupport; + target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; + targetProxy = CEBF42CA44FE6D1B2F641403DC8C8B3F /* PBXContainerItemProxy */; }; - 4666D6DCFEB248078BF7AE6F58CDBC88 /* PBXTargetDependency */ = { + 66B3B11053D890835178B472C09E691E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = D82D5E55C7B2BE153F1262B778BFD486 /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 9620038B62684D4B7E4A075A3F200AA2 /* PBXContainerItemProxy */; }; - 484C717E000430738249C255273CCB23 /* PBXTargetDependency */ = { + 68E7FE2319566651F7A8B6EC465CF2F5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Nimble-iOS"; - target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; - targetProxy = 5EFE1BFB885B7168B00CA5A572BE3959 /* PBXContainerItemProxy */; + name = CwlPreconditionTesting; + target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; + targetProxy = 78E761A2989B857D3DB596C6E1BE72AB /* PBXContainerItemProxy */; }; - 49034156139168F55506A1C8F08FC154 /* PBXTargetDependency */ = { + 6A4D6E24A8C6B783EAAE649D42FE754C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-tvOS"; - target = 94DAD332BFFC672BBE92726504A716F8 /* ConsentViewController-tvOS */; - targetProxy = DCFE29988E2D059C9456CB14EA454F87 /* PBXContainerItemProxy */; - }; - 490B76BE728BCE388C1704AD89628935 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CwlMachBadInstructionHandler; - target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; - targetProxy = 25220B2488B02EE04D97088C750E5366 /* PBXContainerItemProxy */; - }; - 4950CB0D090DC7A1B2EFC61B50973238 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardReturnManager; - target = 0981F89DB5DA3FFCFFEBDE1F56287054 /* IQKeyboardReturnManager */; - targetProxy = CD9D3B7549559402D706CA07D936A2A7 /* PBXContainerItemProxy */; - }; - 496CB72D766E14FB1415D814AA1C4DC6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQTextView; - target = 12890DE3ABBC2CA295E108358D85EE69 /* IQTextView */; - targetProxy = CF83A55C41CF2C4A7A2A9706E7386091 /* PBXContainerItemProxy */; + name = CwlCatchExceptionSupport; + target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; + targetProxy = 59CA34A0863AC3F25DA205670C72776C /* PBXContainerItemProxy */; }; - 4AED70B3157D5E677F47C1FEF7549487 /* PBXTargetDependency */ = { + 6AF56D11A12B4B1AF67C71DF86664E28 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 6AD4055A450FFA7C0F2F4CB788F179E6 /* PBXContainerItemProxy */; + name = CwlCatchExceptionSupport; + target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; + targetProxy = 3BF16115EB452907502A54A3B880BD4D /* PBXContainerItemProxy */; }; - 4D30CAB7A72A43925B7482224C17D90D /* PBXTargetDependency */ = { + 6E25179905AF6A843207439E2A77077A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = C5FDE0C3DF2D8ECEBDA7BF7C9EBDCC20 /* PBXContainerItemProxy */; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = B5357DE0148E32E965237CE64D043AAC /* PBXContainerItemProxy */; }; - 50E2FBD45DFB71F3477C6507B4738827 /* PBXTargetDependency */ = { + 714147FA8EE8C506E6BCDA7DD28D4E35 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlCatchExceptionSupport; - target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; - targetProxy = 28EC4B09E9E2EB7A9C9814A38077225D /* PBXContainerItemProxy */; + name = "ConsentViewController-tvOS"; + target = 94DAD332BFFC672BBE92726504A716F8 /* ConsentViewController-tvOS */; + targetProxy = 5DE686AC4E2024068AF038779605D2CE /* PBXContainerItemProxy */; }; - 547753A2BB52A4FAE78DF08E9D2A66A5 /* PBXTargetDependency */ = { + 71BC089D92BED245E648C92CA7BC1297 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 5B10C2A8DD5F0F2DA94D92AFCC4FA3AE /* PBXContainerItemProxy */; + name = CwlCatchException; + target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; + targetProxy = A3C27B939CCFEE079EDEDAD66FE09B05 /* PBXContainerItemProxy */; }; - 549E803CF8AC3B97AFC095FB7EFB3F9D /* PBXTargetDependency */ = { + 7252DEE5523005EABFB6A269D6817301 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 801175A2ED0423C850F0DCEDB9A3306E /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 01BFB45BA0BE19605402BAA1B80EB983 /* PBXContainerItemProxy */; }; - 54CD8C4DDCADD7D3F3B9568FC3DBC3AC /* PBXTargetDependency */ = { + 72A0DBF33351322BA81F88F6DD99A998 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CwlPosixPreconditionTesting; target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; - targetProxy = 6697F15A7A9CA6746E47DC803F8DF689 /* PBXContainerItemProxy */; + targetProxy = 04C7151ED74F6490C70BA3827D464E0E /* PBXContainerItemProxy */; }; - 56E6B2FE158AF5399DE266D405BF66FE /* PBXTargetDependency */ = { + 732E9D11593E627B9020D513DE061DAE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 77451331D464318CB13AD370527555BE /* PBXContainerItemProxy */; + name = CwlCatchException; + target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; + targetProxy = C72BF8FE598EEBA7EA250AB6EBE9F8AB /* PBXContainerItemProxy */; + }; + 7578798A5C2F091BBDDDA8CB0D8DDF71 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "SPMobileCore-tvOS"; + target = 0010F36F9D103AAE441EA8E1058A19BC /* SPMobileCore-tvOS */; + targetProxy = EE7DC7908B3F2F5B393192D7F4A3E2AE /* PBXContainerItemProxy */; }; - 575E0100BE19865CD7868774B175B742 /* PBXTargetDependency */ = { + 761F8F7B8C1B413BFFC62C297B49F30B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "FirebaseCore-FirebaseCore_Privacy"; target = 1001C16510D946B47CFF8B19DBC0B787 /* FirebaseCore-FirebaseCore_Privacy */; - targetProxy = D7E5055E23ADA2BC1DC47F6D1576B851 /* PBXContainerItemProxy */; + targetProxy = 88376206A20AEC89EF020D49BD88CD5A /* PBXContainerItemProxy */; }; - 5A68C486375EB3F183E2C95D168367A1 /* PBXTargetDependency */ = { + 76C638813925DBB247981F9E9CEB206B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlCatchExceptionSupport; - target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; - targetProxy = 11C9C25E0473553D7CFE0450F4D214A7 /* PBXContainerItemProxy */; + name = CwlMachBadInstructionHandler; + target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; + targetProxy = 1619FDBD16FF68158D1F3A0B8FCAFE12 /* PBXContainerItemProxy */; }; - 5AE1945BF6F4DD72C7A3B84E594ED88C /* PBXTargetDependency */ = { + 79475965C9C56BE45E27E19D4C1594AD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SwiftLint; - target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; - targetProxy = 17B4F131F8F82FD8B18852BBBC568276 /* PBXContainerItemProxy */; + name = CwlPreconditionTesting; + target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; + targetProxy = 8B19E21DF1DDC7FA7AE91B39F5F69C28 /* PBXContainerItemProxy */; }; - 5DDD4CB22B521340839000410AF418E4 /* PBXTargetDependency */ = { + 7A1EAE0FA25A039190209BAD17297E8F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = B89C9B03AFFE36E69590C5B538656597 /* PBXContainerItemProxy */; + name = SwiftLint; + target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; + targetProxy = E21D006B0D5A3C105FB3B933FBB2A49F /* PBXContainerItemProxy */; }; - 5F2A125CFA47561B0F62D11EFA31FBDD /* PBXTargetDependency */ = { + 7A98A361DE3362F79CB219D9515D1492 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardManagerSwift; - target = B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */; - targetProxy = 624D91C6260CD9651380487E54ED619F /* PBXContainerItemProxy */; + name = "SPMobileCore-iOS"; + target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; + targetProxy = 6DED0B3175E567E4C815C960E4CB763D /* PBXContainerItemProxy */; }; - 6216F8ED2C5D0A78114A0A251C624980 /* PBXTargetDependency */ = { + 7B3219C4C6DD0E30A76F90DF02588B29 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Quick-iOS"; - target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; - targetProxy = 8D124951CF81FD75BEC49D5C024DAF5D /* PBXContainerItemProxy */; + name = "FirebaseInstallations-FirebaseInstallations_Privacy"; + target = 3EB14444A17F9D4F1F697F7C1FF32245 /* FirebaseInstallations-FirebaseInstallations_Privacy */; + targetProxy = 6A5D6AA00D4797CC5DB06334F7241E3A /* PBXContainerItemProxy */; }; - 62279DBE6BC0FF881DD2E63E2FCB720D /* PBXTargetDependency */ = { + 7BAD724B590733316CE788FEC86D2B19 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Nimble-iOS"; - target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; - targetProxy = C2CA7B3DB095F2EB3994928872729DDC /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 40435CAA34938397C32104D3787D72B3 /* PBXContainerItemProxy */; }; - 66F0797D445AE35B4E25F2ADF9E6079F /* PBXTargetDependency */ = { + 7BE4FD8DDCEE5F8EEA9F594F6F696D18 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 20734BD6C49559CF00C22388E6B079FF /* PBXContainerItemProxy */; + name = Wormholy; + target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; + targetProxy = 965F6AAA4A4853617CA2C221B2812F01 /* PBXContainerItemProxy */; }; - 6941983619C754F210B3F425CFA5D1F2 /* PBXTargetDependency */ = { + 7E8015FD711EFDE9A2981742962C9191 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 2F06C6F635C43E3BA483D64B13690E3F /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 9AA4B9E7211028DD1657BE0B33E87D29 /* PBXContainerItemProxy */; }; - 6C164BDD3C6E1BFF076088C7C22237E6 /* PBXTargetDependency */ = { + 83A19B2BA15C2DC4C7C8551C47794807 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "SPMobileCore-iOS"; target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 95C817AF29EAB0D639DF8A6EBE7533E4 /* PBXContainerItemProxy */; - }; - 6C3AFB25DD0F253AA4CB180AF8DB5064 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 9EF159B1F1FBF554B75D427B2CE3CBE4 /* PBXContainerItemProxy */; + targetProxy = B7D5734A55000A92352A24F12DCB6F17 /* PBXContainerItemProxy */; }; - 6DD3333F4FD7151B39E82F6706B6A016 /* PBXTargetDependency */ = { + 8526BC79D42D55F9B44E9FB3497D8C1F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 74BD9B859C1431673A91CBA9751080C1 /* PBXContainerItemProxy */; + targetProxy = DA98994E87A07764C4A5AE7A49F026AD /* PBXContainerItemProxy */; }; - 7032018AD9BFD6D39C2EA5B4FCA5FCAD /* PBXTargetDependency */ = { + 8762495EF9AFB33497464B704E5CC798 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlCatchException; - target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; - targetProxy = A11A3A6F580C2A051D5AF85750A39877 /* PBXContainerItemProxy */; - }; - 71CE48A48037F7A6FA98F928A2D324C8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IQTextView-IQTextView"; - target = A6602BCAA6F4F932A586C41D0B7E019C /* IQTextView-IQTextView */; - targetProxy = CD09572B177D8E265C14F55F3DA223C1 /* PBXContainerItemProxy */; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = 7FE8A57722B9E0001C781AB4682DB2BD /* PBXContainerItemProxy */; }; - 7258FCF7646056D29B9AF7B053ECAAB1 /* PBXTargetDependency */ = { + 8865B01BA28CFC2E0298D79F6E3A162C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = D60BBAFAACC2E57A719D3A141B2B48E0 /* PBXContainerItemProxy */; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = 21D5DFF34BC9420D29B95704DB9FACCF /* PBXContainerItemProxy */; }; - 74751C64182586356164453C1CF1EAB1 /* PBXTargetDependency */ = { + 887E0B367A6B33492D7ABA01F1E8BBDC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardReturnManager; - target = 0981F89DB5DA3FFCFFEBDE1F56287054 /* IQKeyboardReturnManager */; - targetProxy = 8508BDC0E41FC1A2CF3F983079225396 /* PBXContainerItemProxy */; + name = "SPMobileCore-tvOS"; + target = 0010F36F9D103AAE441EA8E1058A19BC /* SPMobileCore-tvOS */; + targetProxy = 872D502CFCC2EFC881800692BEDDE046 /* PBXContainerItemProxy */; }; - 755757EDC74EA82F8AB151F66BD1C99A /* PBXTargetDependency */ = { + 8970BA685CE7843531E70DA4AB3EB00E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Quick-iOS"; - target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; - targetProxy = FE9D585024E690528E6862C30F5DA314 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = FFEEF6E3E44856479DE0856ED4F98ED8 /* PBXContainerItemProxy */; }; - 79A01E215082614E3EA6081C65EA6D96 /* PBXTargetDependency */ = { + 925F8FDCDBA08E3800C3561BB1263A7E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Nimble-iOS"; target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; - targetProxy = D88B81E7B2D49D2DDF8573C1E3552971 /* PBXContainerItemProxy */; + targetProxy = FF17A1D80C4F7407858A61CBCAD9D715 /* PBXContainerItemProxy */; }; - 79BDA129000B20C1AE3443DFD88F80E9 /* PBXTargetDependency */ = { + 92B1B2157E329A90696E1D11E5E96630 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 720C6623FC6291C2B0B35CB40E6D64A2 /* PBXContainerItemProxy */; + name = CwlMachBadInstructionHandler; + target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; + targetProxy = E4CF39F7633727CED448C2C3DDF55CDA /* PBXContainerItemProxy */; }; - 7A6E00C1559043F39108C9D1DB7BF17A /* PBXTargetDependency */ = { + 9524AC90436E279462CE4A63F0DDE13B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlPosixPreconditionTesting; - target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; - targetProxy = 3BAD20ECC8B5877DE171BFAD6A053A4E /* PBXContainerItemProxy */; + name = JSONView; + target = 2450D89327C2F3947256DE8768B4B9B9 /* JSONView */; + targetProxy = 378D17DA209650955A68D7E3E92B57CF /* PBXContainerItemProxy */; }; - 7B649A0E652D7DF3E544B5ECAAB3CE60 /* PBXTargetDependency */ = { + 9DBEF957ED2687958CE56E6C713253D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleAppMeasurement; target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 7D9C2EA1E0342EFF8B972FAAEF84830F /* PBXContainerItemProxy */; + targetProxy = F9A5060664BC91FE75B929B70DF7AB36 /* PBXContainerItemProxy */; }; - 7D013335DA189539A44003240C49AAFE /* PBXTargetDependency */ = { + 9E59D5A10727FE579239DB81FBF4B592 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 3857853DE2B27221542735EE51A8544A /* PBXContainerItemProxy */; - }; - 7D70047FEF4AF8EF89C230CD7D042917 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CwlPreconditionTesting; - target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; - targetProxy = 06F4990EDDCB3BE98DF4C29889233EFA /* PBXContainerItemProxy */; + name = Wormholy; + target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; + targetProxy = 235291B5D649184B980DB7A013F7402B /* PBXContainerItemProxy */; }; - 7DECD9B7973A8DF5C0D6D7FCCC08518A /* PBXTargetDependency */ = { + 9E92673D0C36DB0447805A17B4D42BFF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 1324369D380C47FFB65D4F4BB693D76E /* PBXContainerItemProxy */; + name = FirebaseCoreInternal; + target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; + targetProxy = 123958AB32016BFC536EAE29A76F24BF /* PBXContainerItemProxy */; }; - 7DF74A0D4BCBD66D308685DBA015ADB1 /* PBXTargetDependency */ = { + A095ABE2EE14A1B272843EC43AF32497 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlPosixPreconditionTesting; - target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; - targetProxy = C838431BB933BB2D249A9A5EB0157B4B /* PBXContainerItemProxy */; + name = CwlPreconditionTesting; + target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; + targetProxy = BBE07FFE16A78CB116DF2B87B67F2D13 /* PBXContainerItemProxy */; }; - 80456ED01B0F1704445BA7C87ED43165 /* PBXTargetDependency */ = { + A391C8354F239136B18D457B8A2DD3D6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = A8EF7497D8CD728D36E2B3AD6BC6A3D7 /* PBXContainerItemProxy */; + name = Wormholy; + target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; + targetProxy = C67E516FEC05BC1E0A6EF93776CAB722 /* PBXContainerItemProxy */; }; - 81BACD5CA40B5EABDCBE6C869C417327 /* PBXTargetDependency */ = { + A54EBF1050DAB11E48999E3D27B2DEAE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardToolbar; - target = F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */; - targetProxy = 3016450C3E34CD5FC448043985879A6A /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 10C50C2A50737E8C2AD160736190B32C /* PBXContainerItemProxy */; }; - 81DD8805EDD1A7BD63EF56065A775858 /* PBXTargetDependency */ = { + A76A9F9D5B3D06AAFFD68582B2458C4E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SwiftLint; - target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; - targetProxy = BA52EAD9B3333D6A057A8CEBCE7C1BCF /* PBXContainerItemProxy */; + name = CwlMachBadInstructionHandler; + target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; + targetProxy = BF59DB8BCD637EC7591CCCC13FECF36A /* PBXContainerItemProxy */; }; - 82013F84F60B192A87EEBAFF3B1581D0 /* PBXTargetDependency */ = { + ACB1588C09124BCB707BEBBD8B407D28 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQKeyboardCore; - target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; - targetProxy = CB37DE5A9ABA8979B7007E32C88795B2 /* PBXContainerItemProxy */; + name = "Quick-iOS"; + target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; + targetProxy = 60EB1C4660C772FD2422DC1CC1895A83 /* PBXContainerItemProxy */; }; - 846AD3C7FFE7DB3914DE04A8FD630E06 /* PBXTargetDependency */ = { + B28D64E4830E01BF513C1E184C3DF9A4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "nanopb-nanopb_Privacy"; - target = 55522A91938FF505CFEBEAD2DD85AE2D /* nanopb-nanopb_Privacy */; - targetProxy = B992746E7B787DCF3A3360A8759F91BE /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 2C194C285CF9C44CA81BB06E5546C38E /* PBXContainerItemProxy */; }; - 85E2177EBD209109CEB948E95736955D /* PBXTargetDependency */ = { + B398A8F96A16FC67A5E993B3FF9529AD /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CwlPreconditionTesting; target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; - targetProxy = A66ADA97829817BAB40953CE434BC02F /* PBXContainerItemProxy */; + targetProxy = 966339EB0E53DBFE4127071BE1D51F73 /* PBXContainerItemProxy */; }; - 87263114BA9323CC6816962316F8CCEA /* PBXTargetDependency */ = { + B4DCEC83AE31150A3B0569EA267126A6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 3EF6386C03BC285F92D970959534872E /* PBXContainerItemProxy */; + name = "Nimble-tvOS"; + target = A897D2D55F6D87795224F846F8ED3A36 /* Nimble-tvOS */; + targetProxy = 47D1F7B59B0CD8F91741A14F61DE89C9 /* PBXContainerItemProxy */; }; - 873D9B19C821ADD71579ECE2BB496BC5 /* PBXTargetDependency */ = { + B7D64A10ECB8F00BE8A28C2E69E6BD26 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 4204CFA1FE861EFADF04EEF8881C74A6 /* PBXContainerItemProxy */; + name = CwlCatchException; + target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; + targetProxy = 9CE21AC630A5986127F9161F6E4DFB2A /* PBXContainerItemProxy */; }; - 87C64CDADEE5F0FECF6B2C644DEFA914 /* PBXTargetDependency */ = { + B95AC25B4A3A2661B52D9EE71B980486 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Quick-iOS"; - target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; - targetProxy = BF1F10B98849207EFA42A3D79359B46D /* PBXContainerItemProxy */; + name = "Nimble-iOS"; + target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; + targetProxy = 6DEC35EFF04012B4D880AC1CB82C7E0A /* PBXContainerItemProxy */; + }; + B9AEEDC85DCA98D8CF6859998F92B76A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CwlPreconditionTesting; + target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; + targetProxy = D4A570203B640152D4426F3D56FD6F18 /* PBXContainerItemProxy */; }; - 88D8F4DD66BEC836ACB70044D5AC2BAB /* PBXTargetDependency */ = { + BA2B7AA54F0B1B85108C0417CD5A0065 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "ConsentViewController-iOS"; target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = C19C73BE61DB2F13A5C20069F180CF42 /* PBXContainerItemProxy */; + targetProxy = CA5BAE163466C36B5FE4F8DF42F32C86 /* PBXContainerItemProxy */; }; - 8A366EA391A40C331C0480265A5BE22C /* PBXTargetDependency */ = { + BB34B068F0230D679261B3DC3256F3B9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Wormholy; - target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; - targetProxy = B52146CF9A9C90B03FEDEE4900F5B597 /* PBXContainerItemProxy */; + name = "ConsentViewController-iOS-ConsentViewController"; + target = F9B2C41D8F3FCEB2256091CF2667D600 /* ConsentViewController-iOS-ConsentViewController */; + targetProxy = BD6BB74BDFAAAFCBCDAD9C4876A10A27 /* PBXContainerItemProxy */; }; - 8C8E627C9047D0BF7A3FB53C70C1DC96 /* PBXTargetDependency */ = { + BC55B437DD16B82393D78EF568D62AC6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CwlPreconditionTesting; target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; - targetProxy = 52F638F1295648F17820014C77803ABB /* PBXContainerItemProxy */; + targetProxy = 8318877BD061F92FDB6765937D545086 /* PBXContainerItemProxy */; }; - 8D0137791BB5191E16819E200D368648 /* PBXTargetDependency */ = { + BEB14FF33A1B80DDCB1F7E71016798AA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IQKeyboardCore-IQKeyboardCore"; - target = EEE261386011CDF271BE289F73FF5959 /* IQKeyboardCore-IQKeyboardCore */; - targetProxy = 6D088541F9783628EFE31C7CDC4E3441 /* PBXContainerItemProxy */; - }; - 8D40A19A6E1CC7553F18972ABF08FA35 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = C7E3975C96A9D9FF24DFEA2F113B4E11 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 35D533DBFD39B0EE9B42B56E42C01168 /* PBXContainerItemProxy */; }; - 8D5E509CEF8FA3CD4FDC8FF241F07FFD /* PBXTargetDependency */ = { + BF1A9AD2E677C6982FD6CF4A45846E72 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = IQTextInputViewNotification; - target = 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */; - targetProxy = DE267E34EE0FB26D013A5A959E688F17 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = E29BB3500AA12707B55B69DDB895027B /* PBXContainerItemProxy */; }; - 8E078E25D0006D6F3BF60E3FE1D34C8D /* PBXTargetDependency */ = { + BFD0F1FF419CC7A996C6FCBECB4CD110 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 707E99840BA323B12A33818DB068B9EB /* PBXContainerItemProxy */; + name = CwlCatchException; + target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; + targetProxy = 7BFFF6508431388CC9A5645678BBCB21 /* PBXContainerItemProxy */; }; - 8E8EBB43284E83DBEEA09348876304E0 /* PBXTargetDependency */ = { + C05F93452AE9C05293C2A2BF748941F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IQTextInputViewNotification-IQTextInputViewNotification"; - target = 4502C7427440BEB17A50C0BF6E638A85 /* IQTextInputViewNotification-IQTextInputViewNotification */; - targetProxy = 354471FAC42E5E1A5B4C6141E7E02B37 /* PBXContainerItemProxy */; + name = "Quick-iOS"; + target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; + targetProxy = B0235C1FD5409A7CED5F4A374D9802AD /* PBXContainerItemProxy */; }; - 8F771E89EC8F67F91A6579ECB91ABE57 /* PBXTargetDependency */ = { + C3A909A18018374C8C1C1632AABA8144 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = A2052E7244E03F37D031FDC869D22437 /* PBXContainerItemProxy */; + targetProxy = 35D2D425C4FF8F8F634531A51CDE7FA2 /* PBXContainerItemProxy */; }; - 900A9C1E9BDB433E8DC18415FFA96ABF /* PBXTargetDependency */ = { + C3B55C7FA993E36F079C2BB8D7B0A8E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "FirebaseCoreInternal-FirebaseCoreInternal_Privacy"; - target = 2949783F7EDB27AD4666B5427B63DC79 /* FirebaseCoreInternal-FirebaseCoreInternal_Privacy */; - targetProxy = F30CF4401824E88781A9169E93D25EDE /* PBXContainerItemProxy */; + name = SwiftLint; + target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; + targetProxy = 992CB0882243C32EE36F94E843B83F7F /* PBXContainerItemProxy */; }; - 90B0A2F0BBAB1040657B72ECED880EEC /* PBXTargetDependency */ = { + C668EACFB508B26F9123B0871E752E07 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 9C0A2D292670C9BDF8EFFBAB0235B144 /* PBXContainerItemProxy */; + name = CwlMachBadInstructionHandler; + target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; + targetProxy = 3DB213E3E440CAB92589D2BEB64460A4 /* PBXContainerItemProxy */; + }; + C936AFC701AF94FEE066BF23D4B6BBAC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "SPMobileCore-iOS"; + target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; + targetProxy = F79930BB4791D1418E98A1D46FD854E1 /* PBXContainerItemProxy */; }; - 91AB31B827ACEAA6E22FC6ECB706FCF8 /* PBXTargetDependency */ = { + C93B4B4ADD8D0EF88D89CF779AD79E65 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreInternal; target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; - targetProxy = F5768730385A4A56D4008F3BFB1431ED /* PBXContainerItemProxy */; + targetProxy = 3A869A5A6A75B9C341436D0392C5E771 /* PBXContainerItemProxy */; }; - 930B7FA3E1A7E77FA6D28BDA58395FF4 /* PBXTargetDependency */ = { + CA86BDE0BA826FCA195A172661F18105 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IQKeyboardNotification-IQKeyboardNotification"; - target = 2B8FF445A5162845FAB9EC00FC92B694 /* IQKeyboardNotification-IQKeyboardNotification */; - targetProxy = C82BCEAF6B993DB2EA7587E7CFAAD257 /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = BA16AD84592C9CACE7217C9E585A3603 /* PBXContainerItemProxy */; }; - 9533827E72C7DBC238911AB6F79F8012 /* PBXTargetDependency */ = { + CAAE68A83B1D725830C0DF703C2CFA3B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlCatchExceptionSupport; - target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; - targetProxy = 4B5BFE7C60236F4C21D6822C696CFB57 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 856A1E2CB8EEDC9957C093B499A0AAD8 /* PBXContainerItemProxy */; }; - 967BCBADC2670AEE9B8B52E40529FE3F /* PBXTargetDependency */ = { + CC3F53143BF304980664593B574320DD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlPreconditionTesting; - target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; - targetProxy = FF0F0EB85E9B9C6370BB07C1F142F582 /* PBXContainerItemProxy */; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = E9B64FC666E8C9F0381F34A5C4B3C66A /* PBXContainerItemProxy */; }; - 967CF81DE76D7B163F5977DD694C9B75 /* PBXTargetDependency */ = { + D22FC9AE146C7553FE288840BDEFBC92 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlMachBadInstructionHandler; - target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; - targetProxy = CE913B5C5E549B687967E1B93B33ED00 /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 67555FAEC83DB63CD732D6D01626AD00 /* PBXContainerItemProxy */; }; - 98583423E6246338D23B1811BEA3EE47 /* PBXTargetDependency */ = { + D28E12DE4141E022D139E6781F04B548 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SwiftLint; - target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; - targetProxy = 41BA2E3A22120A872EF92AD1AF6AC000 /* PBXContainerItemProxy */; + name = "SPMobileCore-iOS"; + target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; + targetProxy = 9BAD9D61EECF57B1471E185E9E8D92C7 /* PBXContainerItemProxy */; }; - 99824BE02F51D9BF44E6985869648360 /* PBXTargetDependency */ = { + D2CDB94D21FB0A2E5EF8BF1EE9590556 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Nimble-iOS"; - target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; - targetProxy = B0ABFE468FD54C51D77150245E3701E3 /* PBXContainerItemProxy */; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = 9772DEF83B90F8C62DDC5573F16E4992 /* PBXContainerItemProxy */; }; - 9B9A3D435A8AA8AF3CDAC4F0117A1D8D /* PBXTargetDependency */ = { + D56E64B0407CC53CAF6E89717753C78A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlMachBadInstructionHandler; - target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; - targetProxy = 32555D83907864D327622D2FE8007A3E /* PBXContainerItemProxy */; + name = CwlPosixPreconditionTesting; + target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; + targetProxy = 007E6A87402CCCC56D1E23B7F5ABAA43 /* PBXContainerItemProxy */; }; - 9E4C2748064983314CBCEFCE8F0C6647 /* PBXTargetDependency */ = { + D6685CA239593C3087238A7A4727E677 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CwlMachBadInstructionHandler; - target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; - targetProxy = 47460FA62A18E0AC297C0927787DC9C9 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 09748AF18815F9B8608DD3F947610602 /* PBXContainerItemProxy */; + }; + D69AD10215C74D97AAECC5C51BEEDECF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "SPMobileCore-iOS"; + target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; + targetProxy = 5D84C8B90E1DE8215C141A7E4C650B44 /* PBXContainerItemProxy */; }; - A0746EDE0E89B9C4AD5B0E1954D5BF44 /* PBXTargetDependency */ = { + D867FD2A260A045499CDBDD6F2C7EEC5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IQKeyboardManagerSwift-IQKeyboardManagerSwift"; - target = 982A68D37F5DCBC1FC1FDC0BB2F0EB8E /* IQKeyboardManagerSwift-IQKeyboardManagerSwift */; - targetProxy = 8DCC7DF4FDA0EECF480C21934FE7203C /* PBXContainerItemProxy */; + name = "PromisesObjC-FBLPromises_Privacy"; + target = 1BFBEDBF7E03729D43C96530EE190825 /* PromisesObjC-FBLPromises_Privacy */; + targetProxy = C11795AEEC49A3D661B05EC8161B39DA /* PBXContainerItemProxy */; + }; + D9C19E126F07751852CD6A1DF8EA8601 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Quick-iOS"; + target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; + targetProxy = 1D08E71AF1EF081694ADF5AB8221F708 /* PBXContainerItemProxy */; }; - A3769FB39A9E42F04675DF89D6E18049 /* PBXTargetDependency */ = { + DC5D32910B29B4CBA60F93713D98ED3D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CwlCatchExceptionSupport; target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; - targetProxy = C4F099590FB3C860EA250717AD117CF3 /* PBXContainerItemProxy */; + targetProxy = 8ED2F8B1580C22E1AEFFA8F165B7A478 /* PBXContainerItemProxy */; }; - A4FBEB25F2C2D0724307D8AF81C08E65 /* PBXTargetDependency */ = { + DCFA337C1C0AEA37F2C149742B0B6DFA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = A53943D9A778B88157288A9DD85B9C39 /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 73126D00C8E6ADBFE89B04B16921EB47 /* PBXContainerItemProxy */; }; - A9D6B724021609737E6DAA0DA19685B6 /* PBXTargetDependency */ = { + DD8C17E7AFCC18D8B04BC486F9100810 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "ConsentViewController-iOS"; target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 025A0C93317103FE52F5D92C9820336C /* PBXContainerItemProxy */; - }; - AC083F59F100DD403BBEC3C609AB7306 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CwlCatchException; - target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; - targetProxy = 24A7498E4A084043772CD2BE734E1D92 /* PBXContainerItemProxy */; + targetProxy = 7FB8A17E3AAD9749AF0A50CEDF9EB6FF /* PBXContainerItemProxy */; }; - AD1F26DE2D06E1FD827A2B6BDF011F8A /* PBXTargetDependency */ = { + DDA0EDC288212817DBF16E8E3DFFDB2F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CwlCatchException; target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; - targetProxy = 5C9A4EFCCCE749427AC6E2C91C7E8DEC /* PBXContainerItemProxy */; - }; - AD4700B18A9E64DA2E8FDAE373646150 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Wormholy; - target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; - targetProxy = 256B08D99AFD9ADCE4C77EC5FA05FBFA /* PBXContainerItemProxy */; + targetProxy = 5DE291C4BA055D11589839F0EB814CFE /* PBXContainerItemProxy */; }; - AFB302B8C634C81748F53D26E73B365C /* PBXTargetDependency */ = { + DDA3678E94638F601B6E2DDBFBA54472 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 24CDD02B9DA1D0CFE90FB2C4C63CEAD9 /* PBXContainerItemProxy */; + name = CwlCatchExceptionSupport; + target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; + targetProxy = 1245E52BD8692550629711669F7318D4 /* PBXContainerItemProxy */; }; - B13E02894AA639BB1E2C96B53FF6E135 /* PBXTargetDependency */ = { + E27DBA5F8C199DBF6208449E53CCBC60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-tvOS"; - target = 0010F36F9D103AAE441EA8E1058A19BC /* SPMobileCore-tvOS */; - targetProxy = 5C6E82CCB705BC58971034CFF1B8FDE4 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 2E8CCCD9771CCA2D47A0F75B8DFE9B86 /* PBXContainerItemProxy */; }; - B43F4AF5A5D1F56BB4AC18AF3FCE9ED9 /* PBXTargetDependency */ = { + E712D2FE1DC63486363DDADD7189D3CF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "ConsentViewController-iOS"; target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 3655FD46BA6AD37F8E66FED0F6472063 /* PBXContainerItemProxy */; - }; - B6233E26A39BE257B0C37351E0535B65 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IQKeyboardToolbarManager-IQKeyboardToolbarManager"; - target = 7C5613175BBC4BF67E36DB4FBEBC01D0 /* IQKeyboardToolbarManager-IQKeyboardToolbarManager */; - targetProxy = 0367898ECB58FF05ED6C602215EEFAF5 /* PBXContainerItemProxy */; + targetProxy = 897EACF2050DF3BA4614E4F4A7B81F06 /* PBXContainerItemProxy */; }; - B70B9A6931524B857248EAE77DFE096E /* PBXTargetDependency */ = { + E77F0EA8AAF2EBA0C1E97FB92B88A087 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 9D522ADD1B7AEEC25ADFD1532B8510D3 /* PBXContainerItemProxy */; + name = "Wormholy-Wormholy"; + target = 93CEC7FFB57A497DE49471C5D9517C13 /* Wormholy-Wormholy */; + targetProxy = 7357B6A4314FB14CA6993D9AE117CA42 /* PBXContainerItemProxy */; }; - B7FF9F6B30FC809AB60388B77DCA6805 /* PBXTargetDependency */ = { + E85C11E2EA3E5BBF8DB651EF189C9E00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 0119E87051C67CEB2F1B19BBD2FBA79B /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = A2A010D51AC9A1338B24BE9BC64DD096 /* PBXContainerItemProxy */; }; - B9E3C3975EBACA25402657897E2C7383 /* PBXTargetDependency */ = { + E9DD8F6FAF2CDE9232140A15039DCA76 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = B435C609D4DD9E1A969FBBCE0D3600B3 /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = C15418B25F6486CC6002CD61C8502AED /* PBXContainerItemProxy */; }; - B9F790FA1204FCB0B6C93531D40E9496 /* PBXTargetDependency */ = { + EB9CFACA716577F6C7869BDF3D7D96C6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Wormholy; - target = 3E73ED39761329414C06DD4486C5058E /* Wormholy */; - targetProxy = 16A2BAB3962A485FF3CFF8158062D735 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 7A818A8BFD47167579A2A7DD07803093 /* PBXContainerItemProxy */; }; - BA5C4071D2425CBC01B32F46B5D0A7F9 /* PBXTargetDependency */ = { + F135E204B84930BF3A4B918E15D453B2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CwlPosixPreconditionTesting; target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; - targetProxy = EB8B4AFB98C8AA40E8C6718B4BD12A88 /* PBXContainerItemProxy */; + targetProxy = E7B648857EDEC97941232BD25FFDCB60 /* PBXContainerItemProxy */; }; - BAB82E7223D4D057AAE5DDC0843AC7E9 /* PBXTargetDependency */ = { + F3B8A43D12B137AEC9A17A2CE2740E82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SwiftLint; - target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; - targetProxy = 7ECDB462CC50846ADD2F2FA4CDA95ACC /* PBXContainerItemProxy */; + name = CwlPreconditionTesting; + target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; + targetProxy = D2F6DFD882AD38DA54C81DFC84701EEA /* PBXContainerItemProxy */; }; - BAE9A630370F6B02599E9BDE609CC63E /* PBXTargetDependency */ = { + F432D2CBA9D9D285A297BE49951C6B20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 6A0F25B1AD4263FEC082DAAEAD369943 /* PBXContainerItemProxy */; - }; - BFF0EDAA49180DF0207B3C652889048B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CwlPreconditionTesting; - target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; - targetProxy = C534401E16F13D0035ABC76DBDB85CA8 /* PBXContainerItemProxy */; - }; - C2927FA89C466E80FE599BE4DC5DE48A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CwlPosixPreconditionTesting; - target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; - targetProxy = E62605E5271F28C55F3BE13E7DAC423D /* PBXContainerItemProxy */; - }; - C37279134AC6E75A0ED23CD60334388A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQTextView; - target = 12890DE3ABBC2CA295E108358D85EE69 /* IQTextView */; - targetProxy = 026D88F41B3B306D9B5F6D7DD72C74FB /* PBXContainerItemProxy */; + name = FirebaseCoreInternal; + target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; + targetProxy = 4B17C77738547889CF968B105D6847AF /* PBXContainerItemProxy */; }; - C4DBE24AD383A405FEA227E58FAC4C3E /* PBXTargetDependency */ = { + F530339B42DDC312F4964EDCDC6B9835 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = CwlCatchException; target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; - targetProxy = 742920A449B5CE6B1AA135777E1C61A3 /* PBXContainerItemProxy */; - }; - C58604D9F0BC8FAAEE422C8CF5829668 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IQKeyboardReturnManager-IQKeyboardReturnManager"; - target = 88810798DA63A2F6611B0970EA276DEC /* IQKeyboardReturnManager-IQKeyboardReturnManager */; - targetProxy = 2B5E892ACBA3165FEABFF558033B68D7 /* PBXContainerItemProxy */; + targetProxy = A3BA4E7884A5EB36B2B21428CB6CC18D /* PBXContainerItemProxy */; }; - C6E6B39797ECED7F922D0C48DA40A09A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Quick-iOS"; - target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; - targetProxy = A7F8F36239C540B80A46DB887E3B753C /* PBXContainerItemProxy */; - }; - C74B1EBA518E93DB92BA3E12B0C54DF0 /* PBXTargetDependency */ = { + F543DB89F3217728412158C60D5CED2F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "SPMobileCore-iOS"; target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 0DF0911F666CB060D09A4256C32DCCAF /* PBXContainerItemProxy */; - }; - CC3D1D025804402805AA1086731D259B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 84B125CA7BA6D4978D6B3AF2DF387669 /* PBXContainerItemProxy */; - }; - CD38A3D9AAECFE0FA6882F9BC75CCCB6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardCore; - target = F9A1BF709B7BA4C24A83664EB1E1C7D4 /* IQKeyboardCore */; - targetProxy = DE680BB172537D7CCF3F3E18DD1FFCA6 /* PBXContainerItemProxy */; - }; - CE28F69F46E29161ED713248736DDDC4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 04704E5ED8B7A67DF7468320D37C8A87 /* PBXContainerItemProxy */; - }; - CF6F5EB013E219A3E0A349448FB19178 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CwlCatchExceptionSupport; - target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; - targetProxy = 4CDCBBE7D6C72CF7EDC0CA1B01156E56 /* PBXContainerItemProxy */; - }; - D152D84C6C9556C5A9FB648B8269F305 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CwlMachBadInstructionHandler; - target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; - targetProxy = 00B4DC3A6714595588257A63DE9E1CF6 /* PBXContainerItemProxy */; + targetProxy = 7CEC9542590CB0232BC7FAB1104B5351 /* PBXContainerItemProxy */; }; - D176F50792D8630DAC4147DAD4CFF5A8 /* PBXTargetDependency */ = { + F56D8F333557735D4E6CF7131AB2632B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "GoogleUtilities-GoogleUtilities_Privacy"; target = 5FF1A58DEEC5DB749FCD6C120B97CC82 /* GoogleUtilities-GoogleUtilities_Privacy */; - targetProxy = 770BE3374263C9EE0E3080C517F0589F /* PBXContainerItemProxy */; - }; - D19C01E5F6FFC0DA727283A5BB9C19EC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Nimble-tvOS"; - target = A897D2D55F6D87795224F846F8ED3A36 /* Nimble-tvOS */; - targetProxy = 46BE2C65B9C2025D100C022BED685CE2 /* PBXContainerItemProxy */; - }; - D4BFFACD854205F7E4CE273B991DDC12 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "SPMobileCore-tvOS"; - target = 0010F36F9D103AAE441EA8E1058A19BC /* SPMobileCore-tvOS */; - targetProxy = CC27C710DF59B5CFD9AC192062E5188B /* PBXContainerItemProxy */; - }; - D6A3563E4F26A5632811F0786A7DEE1C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = D0789DC0329358B73A75BBD906D2DB4B /* PBXContainerItemProxy */; - }; - D93F408C1C76C40F3A5123975F7E1C08 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 4148B3DC7F84A7D245CADBD8252F8298 /* PBXContainerItemProxy */; - }; - D98D2FBBADD6B27CF9ED90BF533C0907 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 733ACDB862097AD06C660176DDEA8A44 /* PBXContainerItemProxy */; - }; - DA643F744BF74159E4C6C37467ABFA51 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CwlCatchExceptionSupport; - target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; - targetProxy = F463BEFA52E9A14DB0C1075F873B48BA /* PBXContainerItemProxy */; - }; - DC0FF11DFBDF9B5A47223CE06F12338A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IQKeyboardToolbar-IQKeyboardToolbar"; - target = B247F77A0CD5E19C8187A9BA1EB58C09 /* IQKeyboardToolbar-IQKeyboardToolbar */; - targetProxy = DA71F16A2A56C850FEF28F86DCDA018A /* PBXContainerItemProxy */; - }; - DC7360FCCF34D3F2A63E22632C37194A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Quick-iOS"; - target = 89B29D1C701EFC639B36BC482FE72F13 /* Quick-iOS */; - targetProxy = CC65A0A023780572AE815FC3CA5EF442 /* PBXContainerItemProxy */; - }; - E089603DED3116AFF0EBF2C6FA807C35 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "ConsentViewController-iOS"; - target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; - targetProxy = 10FAB31BD8BEF24DC13573D2C64421A4 /* PBXContainerItemProxy */; - }; - E324064A76F5E58570B5D4A50CA2DBC5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQTextInputViewNotification; - target = 283C1F2EA88CD4413165801A6748A48E /* IQTextInputViewNotification */; - targetProxy = A0CF2C3BA3DE7EE292E3BC119F9E53EB /* PBXContainerItemProxy */; - }; - E486EB12F857DCB86DC0CA317A75E3A0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 50A8E938347BF128AEB00E9A27D8D7B3 /* PBXContainerItemProxy */; - }; - E572771101D6FF72FFD6A1A1FDF5F71E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Nimble-iOS"; - target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; - targetProxy = 1999F1AC0FE9027C893B411CF6093AD5 /* PBXContainerItemProxy */; - }; - E8318C296803A62395F983F58CDA6623 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = E8CD705EB1A60482D6484F4B646D2299 /* PBXContainerItemProxy */; - }; - EA8927A71C5FA29DEAAD75720CF0186C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "SPMobileCore-tvOS"; - target = 0010F36F9D103AAE441EA8E1058A19BC /* SPMobileCore-tvOS */; - targetProxy = 1AC8DA3C015CB1B5B4838349305C3FB0 /* PBXContainerItemProxy */; - }; - EBE2B51A1FD6473BE0E259E12F8E3D7C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CwlMachBadInstructionHandler; - target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; - targetProxy = A186CEFA6B63586AB867C7E2CEFD280A /* PBXContainerItemProxy */; - }; - EC1FA60387FB3F7E4F38131FA528719A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 646963F2DBA5B96C434C8CD7B24A1640 /* PBXContainerItemProxy */; - }; - EEC418108D97237C57048CDC3C843EE5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Nimble-iOS"; - target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; - targetProxy = 7081AF037204ADAF56BF7BB5EC850D4F /* PBXContainerItemProxy */; - }; - EFF587BFB42DE66769D5960BCC8D3A94 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CwlPosixPreconditionTesting; - target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; - targetProxy = E1445D4B3611816F8DC924C97B7169B3 /* PBXContainerItemProxy */; - }; - F381DED8F54682649181BA2363DF0C44 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 966427EE9DD062D14EE8296DE0B571D5 /* PBXContainerItemProxy */; - }; - F45C27804A971C54DE71617F6AB0FEDA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = D85DCC1A22C229E541F3C81ECE959A26 /* PBXContainerItemProxy */; - }; - F69BCFC436DCCA3C222CEBDDA04F4852 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CwlMachBadInstructionHandler; - target = 3BBD87E27EAD36B90D168213ED6DC32C /* CwlMachBadInstructionHandler */; - targetProxy = 384B9DA761ACF885747AFA8B522B3DB4 /* PBXContainerItemProxy */; - }; - F72A87A5DBA4B896DD5271C188F5AED7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardNotification; - target = A26E6FD851C20D652B2755C1464A9990 /* IQKeyboardNotification */; - targetProxy = 7A76B68FCF0DF209241D59A1781494C3 /* PBXContainerItemProxy */; - }; - F8EEBEBE654D824C629FD4E1C8F2EE21 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SwiftLint; - target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; - targetProxy = 151397321A1E1D2A743600101E76A4A5 /* PBXContainerItemProxy */; - }; - F9344716DAEB6E656DF4111FE4A3A843 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CwlCatchException; - target = 308B5C440C446909122081D367A27A8F /* CwlCatchException */; - targetProxy = 860A9B477E38B5BF941E9645732C0753 /* PBXContainerItemProxy */; - }; - F94C0393AC538C3562FC79FA0DFCE5A5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Nimble-iOS"; - target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; - targetProxy = 0E809A9680AD4276A1BC32AC3BDF96C4 /* PBXContainerItemProxy */; - }; - FA77D4AF9372B865829614D83E36B131 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CwlPosixPreconditionTesting; - target = EB8B23AD889CF5BE4A85CD0D8EF2DF99 /* CwlPosixPreconditionTesting */; - targetProxy = BCD76662CC0AA357552F7C748F0057E0 /* PBXContainerItemProxy */; - }; - FA876FA559999F8513DFF7907A6D3F57 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CwlPreconditionTesting; - target = E4D853F6FBAB5A9BDBE843E4EFB22EB7 /* CwlPreconditionTesting */; - targetProxy = 83744F768F6F395B89A6E85F050B2BB1 /* PBXContainerItemProxy */; - }; - FE5734456B2760D22BEA6C779DE58063 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardToolbar; - target = F4FE17428FD0E607723A44F17231B7A1 /* IQKeyboardToolbar */; - targetProxy = 6790E02FC3FC344A8EBB8B66132713DE /* PBXContainerItemProxy */; - }; - FEF95178123BEDB3295192D97057E6E5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = B7E7CC81BEB886C867DCA4669C29730A /* PBXContainerItemProxy */; - }; - FF4B8BC468732C1AECE60414C2B88DBC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JSONView; - target = 2450D89327C2F3947256DE8768B4B9B9 /* JSONView */; - targetProxy = 39AB65FA9D1213F769B4A37EC2DF285C /* PBXContainerItemProxy */; - }; - FFDB195C8B26840623CC1A5018EBAA27 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "SPMobileCore-iOS"; - target = 048075AF24CF4328D47A956D088610FE /* SPMobileCore-iOS */; - targetProxy = 9C2E24C6B93BA69E5378E33134F15FF4 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 00910A45DCE133C0463108831C3E38D7 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B7BDFAB7F2C3D6412FF9E6427BF0BF5E /* nanopb.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = nanopb_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 02661949AD1B877B467898C4A583050A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A89672116452AEA51E63CDD4641DF6AC /* IQKeyboardNotification.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardNotification; - PRODUCT_NAME = IQKeyboardNotification; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 0359B6E5C81C72F2A836F368541E137C /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 32F6B838E42284ACF0782FC442FFA5D9 /* CwlPreconditionTesting.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.modulemap"; - PRODUCT_MODULE_NAME = CwlPreconditionTesting; - PRODUCT_NAME = CwlPreconditionTesting; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.5; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 06E89B66603BB3817B6DD4358A37B33C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 64C1435AAFD0344CE9E34B6CFFB7E446 /* IQKeyboardCore.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardCore"; - IBSC_MODULE = IQKeyboardCore; - INFOPLIST_FILE = "Target Support Files/IQKeyboardCore/ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardCore; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 06FB9A0D78EC4D64B2E01E913AFC4F3D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = AFB1557A33F666C0A9D83F8FE7C9D111 /* Pods-Examples-ConsentViewController_Example.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 09576C7050EB76645356B9FBBDD8098C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2BA16E167D6EF79C689CE7ECBC63430C /* IQKeyboardManagerSwift.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardManagerSwift; - PRODUCT_NAME = IQKeyboardManagerSwift; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 0BA694B25A1A32B5C3357DBF55E24E91 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C71513E560B1CB1D8E9A60A2D72233D9 /* Wormholy.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Wormholy/Wormholy-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Wormholy/Wormholy-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Wormholy/Wormholy.modulemap"; - PRODUCT_MODULE_NAME = Wormholy; - PRODUCT_NAME = Wormholy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 0BCABF5071E93511CBE83B95C9D5D0D3 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 19A3208713532FEB443BA6C90BF523BC /* Pods-Examples-SourcepointFirebaseDemo.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 0ED3FB489B2F36FB9D45064F1B8E760C /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 331073598098173D1699703CF07AF019 /* ConsentViewController-iOS.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS.modulemap"; - PRODUCT_MODULE_NAME = ConsentViewController; - PRODUCT_NAME = ConsentViewController; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 100D0542326720D8D5D2B5B301409A20 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7659A6B7A2DCBEF9F67EF52B4C3237C0 /* Pods-Examples-ConsentViewController_Example.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 111B314DEBE9B397D778D90CFAA0DD1A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C71513E560B1CB1D8E9A60A2D72233D9 /* Wormholy.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Wormholy"; - IBSC_MODULE = Wormholy; - INFOPLIST_FILE = "Target Support Files/Wormholy/ResourceBundle-Wormholy-Wormholy-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = Wormholy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 168DAAB3547D8A0B537D7695AFC15E59 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5393C11706FE1D32CACED7EBDE82926B /* Nimble-tvOS.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Nimble-tvOS/Nimble-tvOS-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Nimble-tvOS/Nimble-tvOS-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Nimble-tvOS/Nimble-tvOS.modulemap"; - PRODUCT_MODULE_NAME = Nimble; - PRODUCT_NAME = Nimble; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 13.0; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 179F02B068D3A949CE974A8A247F5C88 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 312BF46E4E318C049EFD24288B49F860 /* IQTextInputViewNotification.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextInputViewNotification"; - IBSC_MODULE = IQTextInputViewNotification; - INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQTextInputViewNotification; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 17B75AFE066BBCE403255328353E64F5 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1502E63A37330EBB5C1A73A5190D09F5 /* IQTextView.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQTextView/IQTextView-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQTextView/IQTextView-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQTextView/IQTextView.modulemap"; - PRODUCT_MODULE_NAME = IQTextView; - PRODUCT_NAME = IQTextView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 181CE522775CEF3D1FB2C67A55AE0DD5 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 119BF7600B4B48D0FAF2C547AC752308 /* GoogleUtilities.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 198C3997F297ECA1DE780203DB2B9686 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1502E63A37330EBB5C1A73A5190D09F5 /* IQTextView.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextView"; - IBSC_MODULE = IQTextView; - INFOPLIST_FILE = "Target Support Files/IQTextView/ResourceBundle-IQTextView-IQTextView-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQTextView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 20ED51BAD5DE05615FFA0AEAAB2301CB /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 57F011CBC15D2E26EA44927B4C29E325 /* FirebaseCoreInternal.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreInternal"; - IBSC_MODULE = FirebaseCoreInternal; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = FirebaseCoreInternal_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 2524E26CAC2DB00DAB928076BF7EEE3E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E4269C979DF800C248CEE4EF6E553E03 /* PromisesObjC.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 25586FBC21BF46C33E4CBC0E64352E06 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 279F88EBA67943FE8DBA4704C9BA2C15 /* ConsentViewController-tvOS.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS.modulemap"; - PRODUCT_MODULE_NAME = ConsentViewController; - PRODUCT_NAME = ConsentViewController; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 12.0; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 283F6E1737D71180AADC0E7185377560 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C206E48C5FD72701093625C9FEDD1C14 /* IQTextView.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQTextView/IQTextView-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQTextView/IQTextView-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQTextView/IQTextView.modulemap"; - PRODUCT_MODULE_NAME = IQTextView; - PRODUCT_NAME = IQTextView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 297792429E20B86846683C49C8A16D19 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6F603B49005B06B768E07C75B6EA395B /* IQKeyboardReturnManager.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardReturnManager"; - IBSC_MODULE = IQKeyboardReturnManager; - INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardReturnManager; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 29E66BD6E2F057F8BA57F5C72FAD6C66 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 25D4F6A49E547E09FEE315D6A39438D8 /* IQKeyboardToolbarManager.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardToolbarManager; - PRODUCT_NAME = IQKeyboardToolbarManager; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 2B2F298DCDA9EEAF67441F0BE0DCD995 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C0957EB8E218AD92A68D3B9545B310B8 /* Pods-Examples-ObjC-ExampleApp.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; + targetProxy = E255D8F394DE50111B946C328930BAE0 /* PBXContainerItemProxy */; }; - 2B3133F528EAD9E9CD2996C313506EB4 /* Debug */ = { + F65A1E09790516FF8FDE81398F310089 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwiftLint; + target = 52B60EC2A583F24ACBB69C113F5488B9 /* SwiftLint */; + targetProxy = 7E55531353C8C6F700BB1E5551BBD9C9 /* PBXContainerItemProxy */; + }; + F669EB291B4D815077CDBCB875A4D0DF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = D3094D464F2808008E6819625F4D5B70 /* PBXContainerItemProxy */; + }; + F78F65B1680A726EA32C57E1E20AE7B5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Quick-tvOS"; + target = 28BE3303E3F4ECC2BDF79B1D886D2E74 /* Quick-tvOS */; + targetProxy = 0C9AF7FC282F183C52138D63A226214F /* PBXContainerItemProxy */; + }; + F888481AC39815A9EB355AE40430C719 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 77F936B34CE56939A51DA98AB8630397 /* PBXContainerItemProxy */; + }; + F93B30401555A2A840871C8103379318 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Nimble-iOS"; + target = 3AAFED87F58BAA2AC3177A35C2CF5B23 /* Nimble-iOS */; + targetProxy = C2C4B596E87CA9B166E8ED1510FBCC93 /* PBXContainerItemProxy */; + }; + FECCC6C14A5E6C9CC139A94BB918DA6C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = E2CF98A8AE51B3573ABE8BE0DA9FB327 /* PBXContainerItemProxy */; + }; + FF05DC1EC9B94D4EFE4368D8BE3D82CB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "ConsentViewController-iOS"; + target = 84E1147DCA59477E2E390B109585DCAF /* ConsentViewController-iOS */; + targetProxy = E85F2F0337671E6D6D55A0B49164EF7F /* PBXContainerItemProxy */; + }; + FFB53E29F1A38E6046889C31B6E3021B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CwlCatchExceptionSupport; + target = CA3D99499260B4C146BBB22670C1D8AD /* CwlCatchExceptionSupport */; + targetProxy = 5AEEBA82C00DACD3E3A4F43841531869 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 00C3BDCDA6B35C4F47FF3AC40F78EC67 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4B97AD650825ED664F18595A643EDB28 /* nanopb.debug.xcconfig */; + baseConfigurationReference = 6538B3C5263E056463EC7683F013E881 /* FirebaseInstallations.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11107,9 +8180,8 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -11118,23 +8190,24 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; + MODULEMAP_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations.modulemap"; + PRODUCT_MODULE_NAME = FirebaseInstallations; + PRODUCT_NAME = FirebaseInstallations; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 2F9E55DE3E998BAE8B4159A92BB19167 /* Debug */ = { + 0359B6E5C81C72F2A836F368541E137C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CF03731063A8BCF7639F74A1880DBAEF /* CwlCatchExceptionSupport.debug.xcconfig */; + baseConfigurationReference = 4A320257F794218399DCB0A09D36339A /* CwlPreconditionTesting.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11147,9 +8220,9 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-Info.plist"; + INFOPLIST_FILE = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -11158,143 +8231,60 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.modulemap"; - PRODUCT_MODULE_NAME = CwlCatchExceptionSupport; - PRODUCT_NAME = CwlCatchExceptionSupport; + MODULEMAP_FILE = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.modulemap"; + PRODUCT_MODULE_NAME = CwlPreconditionTesting; + PRODUCT_NAME = CwlPreconditionTesting; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 313E364743B2C52A27C7817D38BBB6F5 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 16E26D53D76686D672481814AA43BE6D /* IQKeyboardNotification.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardNotification/IQKeyboardNotification.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardNotification; - PRODUCT_NAME = IQKeyboardNotification; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - 347C7EB89DA42671D14EE3E09AC284D3 /* Debug */ = { + 03A44DE99B1497FE4757F640EC0BCC74 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8F1B2B1E2EA16E8AA8C6A4E3DB461D04 /* Pods-Tests-NativeMessageExampleUITests.debug.xcconfig */; + baseConfigurationReference = 25B64CDAC38DC0B4E6A010B69CB638F8 /* nanopb.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = nanopb_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 35D642F72B28E1932716FE739CC2899C /* Debug */ = { + 03B3E33E3ADE5D9544A14C2BF203B983 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19E8DF962E12F5CD09F0C1D4AE5F54AB /* IQKeyboardToolbar.debug.xcconfig */; + baseConfigurationReference = 415C4BB5DAE6607D35A2E9687629F147 /* GoogleAppMeasurement.release.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", - "@loader_path/Frameworks", ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardToolbar; - PRODUCT_NAME = IQKeyboardToolbar; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 3B5D70C6658E836308BD6369B370DF86 /* Debug */ = { + 05FF659CD9A560A505F3B55881BFD711 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 64C1435AAFD0344CE9E34B6CFFB7E446 /* IQKeyboardCore.debug.xcconfig */; + baseConfigurationReference = 6B25EA86E763C785603219CE4563ED76 /* FirebaseCoreInternal.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11307,34 +8297,35 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardCore/IQKeyboardCore-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardCore/IQKeyboardCore-Info.plist"; + INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardCore/IQKeyboardCore.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardCore; - PRODUCT_NAME = IQKeyboardCore; + MODULEMAP_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCoreInternal; + PRODUCT_NAME = FirebaseCoreInternal; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 3DCD05D7DDE215621D5F61B7BD222598 /* Debug */ = { + 0696AAEFEE54B3E0B744F1FBB0EB24FD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 885466C2B2B8F648EFA1950A9EB8426C /* Pods-Examples-ObjC-ExampleApp.debug.xcconfig */; + baseConfigurationReference = CCF3F09B4E16EEF6FD42841B31F72458 /* Pods-Examples-SourcepointFirebaseDemo.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -11348,16 +8339,16 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -11371,107 +8362,27 @@ }; name = Debug; }; - 41779282855C10AEC728B23688CB5127 /* Debug */ = { + 07157F33A60FBD608074F0D8411C2A6A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B173ED8DF89128C483E3884E1F880C4 /* FirebaseAnalytics.debug.xcconfig */; + baseConfigurationReference = B4428C5E59EB334813064CCC47CA11DF /* SPMobileCore-tvOS.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 43037CA804A1465AA9A9985EB2AA3503 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F9DA5DD14F328DC15C1B8894F9EBE99A /* Nimble-tvOS.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Nimble-tvOS/Nimble-tvOS-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Nimble-tvOS/Nimble-tvOS-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Nimble-tvOS/Nimble-tvOS.modulemap"; - PRODUCT_MODULE_NAME = Nimble; - PRODUCT_NAME = Nimble; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 13.0; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 43375729AABF400BDED4230A9C92CB27 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 57F011CBC15D2E26EA44927B4C29E325 /* FirebaseCoreInternal.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCoreInternal; - PRODUCT_NAME = FirebaseCoreInternal; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = appletvos; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 10.0; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; name = Release; }; - 436A507E46F0AB10C1F2F4195294C537 /* Release */ = { + 0BA694B25A1A32B5C3357DBF55E24E91 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D900D75BBBD137EE15A051E0E5E8234A /* FirebaseInstallations.release.xcconfig */; + baseConfigurationReference = FBCBC8108645B18CA20303D65BE535F2 /* Wormholy.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11484,24 +8395,25 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/Wormholy/Wormholy-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Wormholy/Wormholy-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations.modulemap"; - PRODUCT_MODULE_NAME = FirebaseInstallations; - PRODUCT_NAME = FirebaseInstallations; + MODULEMAP_FILE = "Target Support Files/Wormholy/Wormholy.modulemap"; + PRODUCT_MODULE_NAME = Wormholy; + PRODUCT_NAME = Wormholy; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -11509,28 +8421,11 @@ }; name = Release; }; - 43E0808F6CD0054BEAFD077A49910C25 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 546A5C96B214B4119CD401BBE32E8356 /* GoogleAppMeasurement.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 44CEE02C9383267489710B6FB1F13FF3 /* Release */ = { + 0BF30ABD796F0FEAAC472B4F754EBCFC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0ECA7FAF11E033462E93DA53335F86BB /* FirebaseCore.release.xcconfig */; + baseConfigurationReference = 40E481EFE0FFCF987FEAEBE638D68984 /* Pods-Tests-AuthExampleUITests.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11542,24 +8437,23 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/FirebaseCore/FirebaseCore.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCore; - PRODUCT_NAME = FirebaseCore; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -11567,10 +8461,28 @@ }; name = Release; }; - 4691590DDBE1EDA4AC53A2C5A0DF6637 /* Release */ = { + 0CF4A8FC2D07CB620EDAD51FAE2BC296 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C53DBBA1DC9C863531606F0AB932A772 /* FirebaseCoreInternal.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreInternal"; + IBSC_MODULE = FirebaseCoreInternal; + INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = FirebaseCoreInternal_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 0E6308316AC4467A93FB22CA192EFFA8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 72C7BE65FE543570C043A81113E9833F /* IQKeyboardManagerSwift.release.xcconfig */; + baseConfigurationReference = 966673C499A549AB91BE4CD6AB4B597A /* Pods-Examples-ObjC-ExampleApp.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11581,110 +8493,110 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist"; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardManagerSwift; - PRODUCT_NAME = IQKeyboardManagerSwift; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 47BABA8CBA7DCCCE40F2E2614217A764 /* Debug */ = { + 0E64A05560BF7B16A9FA865D52323E65 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CEEF2772E3AD8AFE9DAE3F2083371D77 /* PromisesObjC.debug.xcconfig */; + baseConfigurationReference = 0CBA7F63620C7799E7A2100BEDC5443D /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 482333FC5194F316A083B8BD78733009 /* Debug */ = { + 0ED3FB489B2F36FB9D45064F1B8E760C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6F603B49005B06B768E07C75B6EA395B /* IQKeyboardReturnManager.debug.xcconfig */; + baseConfigurationReference = 331073598098173D1699703CF07AF019 /* ConsentViewController-iOS.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-Info.plist"; + INFOPLIST_FILE = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardReturnManager; - PRODUCT_NAME = IQKeyboardReturnManager; + MODULEMAP_FILE = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS.modulemap"; + PRODUCT_MODULE_NAME = ConsentViewController; + PRODUCT_NAME = ConsentViewController; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; + SWIFT_VERSION = 5.1; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 48C39086E7411855E912CFC5497A233B /* Debug */ = { + 1039D2AC3A41F55B5665900BFA4313FF /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -11719,16 +8631,13 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( - "POD_CONFIGURATION_DEBUG=1", - "DEBUG=1", + "POD_CONFIGURATION_RELEASE=1", "$(inherited)", ); GCC_WARN_64_TO_32_BIT_CONVERSION = YES; @@ -11737,80 +8646,24 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; + MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; - ONLY_ACTIVE_ARCH = YES; PRODUCT_NAME = "$(TARGET_NAME)"; STRIP_INSTALLED_PRODUCT = NO; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; SWIFT_VERSION = 5.0; SYMROOT = "${SRCROOT}/../build"; - TVOS_DEPLOYMENT_TARGET = 12.0; - }; - name = Debug; - }; - 48DC5CA9CBDBCD292AA1B5CE96B86A81 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B6AA1166CD5E836C9349D4C8FB74D2E5 /* ConsentViewController-tvOS.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS.modulemap"; - PRODUCT_MODULE_NAME = ConsentViewController; - PRODUCT_NAME = ConsentViewController; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 12.0; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + TVOS_DEPLOYMENT_TARGET = 18.0; }; name = Release; }; - 4BA18A21CB1B4F249E5996AB5DB178D2 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 91621E1BA3A89BE74D1E7D017C175F49 /* IQKeyboardToolbarManager.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbarManager"; - IBSC_MODULE = IQKeyboardToolbarManager; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardToolbarManager; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 4FD6CA0A6B2F796EE0F07A01F371D1EF /* Debug */ = { + 13C4ED82E36E4FFBFF35A36A860EC86E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2CBDA5A98EA670762ABFC2E1D265F305 /* CwlPosixPreconditionTesting.debug.xcconfig */; + baseConfigurationReference = 3131C3F4A28AC13180C4E311131193C7 /* Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11822,182 +8675,148 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.modulemap"; - PRODUCT_MODULE_NAME = CwlPosixPreconditionTesting; - PRODUCT_NAME = CwlPosixPreconditionTesting; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 4FE5D50BA20AC9B9AC9C1F7141E5ADFE /* Release */ = { + 168DAAB3547D8A0B537D7695AFC15E59 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E031F91F1F99C88F5C25D358A8C2080 /* Pods-Tests-AuthExampleUITests.release.xcconfig */; + baseConfigurationReference = 9F566E49378EA375C6F422F15239AB7C /* Nimble-tvOS.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/Nimble-tvOS/Nimble-tvOS-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/Nimble-tvOS/Nimble-tvOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 50A4210F9241CB6251F85F141507A19C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 985E2F8DBB92E8FF07EB736106587CA2 /* FirebaseCoreInternal.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreInternal"; - IBSC_MODULE = FirebaseCoreInternal; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = FirebaseCoreInternal_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 535642C8E96314EC66B8447004397685 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 16E26D53D76686D672481814AA43BE6D /* IQKeyboardNotification.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardNotification"; - IBSC_MODULE = IQKeyboardNotification; - INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardNotification; - SDKROOT = iphoneos; + MODULEMAP_FILE = "Target Support Files/Nimble-tvOS/Nimble-tvOS.modulemap"; + PRODUCT_MODULE_NAME = Nimble; + PRODUCT_NAME = Nimble; + SDKROOT = appletvos; SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 13.0; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 59619FF05234376C3EAC921AE49A2A96 /* Debug */ = { + 1B3AA7133E63F587E2DB120F11726947 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9AB91992ADD70EED081100015CB5338E /* SwiftLint.debug.xcconfig */; + baseConfigurationReference = 90BF493E1F9D2BDA9D04385008767469 /* FirebaseCore.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", + "@loader_path/Frameworks", ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 59BFADD7238EC69013FF74537A43BDED /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DC2639B1E829A5F90E03607464AF4414 /* GoogleUtilities.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = GoogleUtilities_Privacy; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/FirebaseCore/FirebaseCore.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCore; + PRODUCT_NAME = FirebaseCore; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 59E6151C17FC8A951AAE628AD5144604 /* Debug */ = { + 25586FBC21BF46C33E4CBC0E64352E06 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 408D31239F9070332AFEAD914F96DFFF /* Pods-Examples-AuthExample.debug.xcconfig */; + baseConfigurationReference = 279F88EBA67943FE8DBA4704C9BA2C15 /* ConsentViewController-tvOS.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; + MODULEMAP_FILE = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS.modulemap"; + PRODUCT_MODULE_NAME = ConsentViewController; + PRODUCT_NAME = ConsentViewController; + SDKROOT = appletvos; SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 12.0; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 5D286BA7A3266AA5C3B4BA1320AFE4CC /* Release */ = { + 25D981DB15045EC284CD62485DEFBD16 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3AB123675C504DBA426F7267B79D3ACD /* Pods-Tests-SourcePointMetaAppUITests.release.xcconfig */; + baseConfigurationReference = C201D0FBA20B4E61D6C6EB4E437F2437 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -12011,16 +8830,16 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -12035,26 +8854,43 @@ }; name = Release; }; - 5FE628F8135C7922727A4F309A9AC921 /* Release */ = { + 29D64397FC7B1379FEB8DD7ADE06B8E9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0ECA7FAF11E033462E93DA53335F86BB /* FirebaseCore.release.xcconfig */; + baseConfigurationReference = F06CECB781AD3E9067662A0AC7DE9DD4 /* FirebaseInstallations.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCore"; - IBSC_MODULE = FirebaseCore; - INFOPLIST_FILE = "Target Support Files/FirebaseCore/ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseInstallations"; + IBSC_MODULE = FirebaseInstallations; + INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = FirebaseCore_Privacy; + PRODUCT_NAME = FirebaseInstallations_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; + }; + 34D4E0502EFF1E4CBB927B41782A742F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6C5861E19176ED390054CBED3842109B /* ConsentViewController-iOS.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ConsentViewController-iOS"; + IBSC_MODULE = ConsentViewController; + INFOPLIST_FILE = "Target Support Files/ConsentViewController-iOS/ResourceBundle-ConsentViewController-ConsentViewController-iOS-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = ConsentViewController; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; }; - 61777F39BA975962D7231F5C4FB92C18 /* Debug */ = { + 38E16C614AA64C7E5C862B9FF077053B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4A7C470969D8D9C13E2AC186A25DCCD /* Pods-Tests-AuthExampleUITests.debug.xcconfig */; + baseConfigurationReference = 79911075C9BA537C7A595057F5C998F3 /* Pods-Tests-ConsentViewController_ExampleTests.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -12068,16 +8904,16 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -12086,14 +8922,15 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 619903AF24531B57E8A1EB3205BE7F69 /* Debug */ = { + 39B96D195240BF1E4479625E40BBD942 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 02A196CEB3DFD80618F39736B5983336 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig */; + baseConfigurationReference = 889214D4EA88BABE53D191096E67C1BC /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -12109,7 +8946,7 @@ ENABLE_USER_SCRIPT_SANDBOXING = NO; INFOPLIST_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -12125,14 +8962,32 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; + }; + 3DDCF6B140ABDC4970AECA42D4886894 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FBCBC8108645B18CA20303D65BE535F2 /* Wormholy.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Wormholy"; + IBSC_MODULE = Wormholy; + INFOPLIST_FILE = "Target Support Files/Wormholy/ResourceBundle-Wormholy-Wormholy-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = Wormholy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; }; - 62A42620E107148938527ABCD9D55649 /* Release */ = { + 41779282855C10AEC728B23688CB5127 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B87338A60396DC7C8B9E9C14E50D1517 /* GoogleAppMeasurement.release.xcconfig */; + baseConfigurationReference = 42474F1E93115B16AA6C7E9E73C6BEFD /* FirebaseAnalytics.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12145,13 +9000,12 @@ ); SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - 64193CBACD4A98A9FE55F541B6602744 /* Debug */ = { + 43037CA804A1465AA9A9985EB2AA3503 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C61F8B32B14E4029D7A1CA2DE208A5A5 /* Quick-tvOS.debug.xcconfig */; + baseConfigurationReference = AB5A4EEB3FE0342A37DC1899604B72E8 /* Nimble-tvOS.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12162,9 +9016,9 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Quick-tvOS/Quick-tvOS-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Nimble-tvOS/Nimble-tvOS-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Quick-tvOS/Quick-tvOS-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Nimble-tvOS/Nimble-tvOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", @@ -12172,9 +9026,9 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Quick-tvOS/Quick-tvOS.modulemap"; - PRODUCT_MODULE_NAME = Quick; - PRODUCT_NAME = Quick; + MODULEMAP_FILE = "Target Support Files/Nimble-tvOS/Nimble-tvOS.modulemap"; + PRODUCT_MODULE_NAME = Nimble; + PRODUCT_NAME = Nimble; SDKROOT = appletvos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; @@ -12182,14 +9036,15 @@ SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 3; TVOS_DEPLOYMENT_TARGET = 13.0; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 6AFDE725EECC687BB5377E4E36321BAE /* Release */ = { + 48101AA3F49E89AC9C5CA168ED37F141 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 921BD04D1137665DAA00C54FD7449ED3 /* Pods-Examples-NativeMessageExample.release.xcconfig */; + baseConfigurationReference = 3C8DBA703AA45E2CC3DB44A2D0C3CF84 /* Pods-Tests-AuthExampleUITests.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -12203,16 +9058,16 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-NativeMessageExample/Pods-Examples-NativeMessageExample-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-NativeMessageExample/Pods-Examples-NativeMessageExample.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-AuthExampleUITests/Pods-Tests-AuthExampleUITests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -12221,130 +9076,53 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; - }; - 6C73A30C3E70AECA49DBA8DA38C654B2 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2BE18B625D19EDDBF19C786FA9C4CD23 /* SPMobileCore-iOS.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; name = Debug; }; - 6D219CD9F20656CB347F1C55A4D36ED2 /* Release */ = { + 48DC5CA9CBDBCD292AA1B5CE96B86A81 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B7BDFAB7F2C3D6412FF9E6427BF0BF5E /* nanopb.release.xcconfig */; + baseConfigurationReference = B6AA1166CD5E836C9349D4C8FB74D2E5 /* ConsentViewController-tvOS.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; + INFOPLIST_FILE = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; - SDKROOT = iphoneos; + MODULEMAP_FILE = "Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS.modulemap"; + PRODUCT_MODULE_NAME = ConsentViewController; + PRODUCT_NAME = ConsentViewController; + SDKROOT = appletvos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 12.0; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - 703CB38488CFBC76CD6A8D6225020189 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 19E8DF962E12F5CD09F0C1D4AE5F54AB /* IQKeyboardToolbar.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbar"; - IBSC_MODULE = IQKeyboardToolbar; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardToolbar; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 73170304D5722E5AB4C389BC25C3C796 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A0CA2E223EE61D297A117842655ACF18 /* FirebaseCore.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/FirebaseCore/FirebaseCore.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCore; - PRODUCT_NAME = FirebaseCore; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 7366331A9E9139D62C5D0BFDF92ACD57 /* Debug */ = { + 4AC0B3FB61EB17DE2B8AD3D1AE2E5307 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0618BA28BDC28DE55C59EC817BEE6BC6 /* Pods-Examples-NativeMessageExample.debug.xcconfig */; + baseConfigurationReference = 9F461C95909B4A46AA6D1E7A464B3BE0 /* Pods-Tests-NativeMessageExampleUITests.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -12358,16 +9136,16 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-NativeMessageExample/Pods-Examples-NativeMessageExample-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-NativeMessageExample/Pods-Examples-NativeMessageExample.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -12381,11 +9159,11 @@ }; name = Debug; }; - 7379A3CCDEBFD11E812A0227DB8914B3 /* Debug */ = { + 4FD6CA0A6B2F796EE0F07A01F371D1EF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B39D983F41A2F4973CCFC6C189B8AD3 /* Pods-TVOSExampleAppUITests.debug.xcconfig */; + baseConfigurationReference = ED8F27718291C15FD0831F6D68CC99D6 /* CwlPosixPreconditionTesting.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -12396,32 +9174,34 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-TVOSExampleAppUITests/Pods-TVOSExampleAppUITests-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-TVOSExampleAppUITests/Pods-TVOSExampleAppUITests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = appletvos; + MODULEMAP_FILE = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.modulemap"; + PRODUCT_MODULE_NAME = CwlPosixPreconditionTesting; + PRODUCT_NAME = CwlPosixPreconditionTesting; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 12.0; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.5; + TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 7573AFBB8FE07DA5AFB18436786E8FEA /* Release */ = { + 557D664DB9E994DC3462709BF01EE2C6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 312BF46E4E318C049EFD24288B49F860 /* IQTextInputViewNotification.release.xcconfig */; + baseConfigurationReference = C48A26F1C27CB3218255C545C1804A12 /* GoogleUtilities.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12433,58 +9213,58 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-prefix.pch"; + ENABLE_USER_SCRIPT_SANDBOXING = NO; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.modulemap"; - PRODUCT_MODULE_NAME = IQTextInputViewNotification; - PRODUCT_NAME = IQTextInputViewNotification; + MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilities; + PRODUCT_NAME = GoogleUtilities; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 793AC32F57CD65C0C24747E3516C1585 /* Debug */ = { + 59619FF05234376C3EAC921AE49A2A96 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CC14A8A1A0D472EF58D5491F0B14547E /* IQTextInputViewNotification.debug.xcconfig */; + baseConfigurationReference = 9D962A5A86A6D53EF95A7EBC61F981A8 /* SwiftLint.debug.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextInputViewNotification"; - IBSC_MODULE = IQTextInputViewNotification; - INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQTextInputViewNotification; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 7F52C9CAB18B21EF455F8E6691F056CA /* Release */ = { + 5AC9B4E3B765C3F2DFEDD9AACC6CE51E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DEB7328BDFB8614EAD2EAD799824C0FE /* FirebaseAnalytics.release.xcconfig */; + baseConfigurationReference = 267B71FD4B948D67BDBDE034F887089D /* SPMobileCore-iOS.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -12495,26 +9275,9 @@ }; name = Release; }; - 839B7B41DFF63F5844CD9A1F56FDFC9C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 279F88EBA67943FE8DBA4704C9BA2C15 /* ConsentViewController-tvOS.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ConsentViewController-tvOS"; - IBSC_MODULE = ConsentViewController; - INFOPLIST_FILE = "Target Support Files/ConsentViewController-tvOS/ResourceBundle-ConsentViewController-ConsentViewController-tvOS-Info.plist"; - PRODUCT_NAME = ConsentViewController; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 12.0; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 8542BB23110353B53E23390610CC17DC /* Release */ = { + 6289B2CFA66819DA52B79262B622E980 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 40902E1C1B82C32A82C26838C74E00BD /* Pods-Tests-ObjC-ExampleAppUITests.release.xcconfig */; + baseConfigurationReference = 60CBFED711348A6A95F7BE9194E67B4A /* Pods-Examples-NativeMessageExample.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -12528,16 +9291,16 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-NativeMessageExample/Pods-Examples-NativeMessageExample-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-NativeMessageExample/Pods-Examples-NativeMessageExample.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -12552,50 +9315,49 @@ }; name = Release; }; - 85F3EA07969E1FB2BE878F17A9FC6DE1 /* Debug */ = { + 64193CBACD4A98A9FE55F541B6602744 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A25E299620E4156A2638D0F3DE5EC583 /* CwlCatchException.debug.xcconfig */; + baseConfigurationReference = F5FF509FBD88B953E54C764F9C69301D /* Quick-tvOS.debug.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/CwlCatchException/CwlCatchException-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Quick-tvOS/Quick-tvOS-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/CwlCatchException/CwlCatchException-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Quick-tvOS/Quick-tvOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/CwlCatchException/CwlCatchException.modulemap"; - PRODUCT_MODULE_NAME = CwlCatchException; - PRODUCT_NAME = CwlCatchException; - SDKROOT = iphoneos; + MODULEMAP_FILE = "Target Support Files/Quick-tvOS/Quick-tvOS.modulemap"; + PRODUCT_MODULE_NAME = Quick; + PRODUCT_NAME = Quick; + SDKROOT = appletvos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.5; - TARGETED_DEVICE_FAMILY = "1,2"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 13.0; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 86CFC7915A12CEAE7456122BB8790D3E /* Debug */ = { + 6874E3C0A80D7178DE89B40B1CBA26FF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 58E0351200843A0258ABD52F8867F39C /* CwlMachBadInstructionHandler.debug.xcconfig */; + baseConfigurationReference = 75EB5850E036D875B645903BA7A6A854 /* Pods-Examples-AuthExample.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12607,89 +9369,75 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.modulemap"; - PRODUCT_MODULE_NAME = CwlMachBadInstructionHandler; - PRODUCT_NAME = CwlMachBadInstructionHandler; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; - }; - 88933E87DF5FCC53F1B6CDE3106341B8 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2BA16E167D6EF79C689CE7ECBC63430C /* IQKeyboardManagerSwift.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardManagerSwift"; - IBSC_MODULE = IQKeyboardManagerSwift; - INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardManagerSwift; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; + name = Release; }; - 897248D5D2667E3217EF57232EA1750B /* Release */ = { + 688B9C256E71B287923A9BE2E2C08B57 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 15984851E2434A1A83C71AEAED338F2E /* SPMobileCore-iOS.release.xcconfig */; + baseConfigurationReference = C5BF5F4E462DBE0E23350DE73012B8AB /* Pods-Tests-ObjC-ExampleAppUITests.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", + "@loader_path/Frameworks", ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 8F92F524B4505109D827498556153A92 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B2E8B7E8BA00F2628706C0AA85E4F5BB /* SPMobileCore-tvOS.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = appletvos; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 10.0; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 943A7CFA488BFBE271756245EFDD4E71 /* Release */ = { + 6A6AC83323D8A0C1083C5F84D4405B5E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8308C54DE95C976F10FACAADA52D2C28 /* JSONView.release.xcconfig */; + baseConfigurationReference = D3718492951C5A3E540D015C422E4101 /* Pods-Examples-AuthExample.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12701,34 +9449,99 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/JSONView/JSONView-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/JSONView/JSONView-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/JSONView/JSONView.modulemap"; - PRODUCT_MODULE_NAME = JSONView; - PRODUCT_NAME = JSONView; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; + }; + 6A6D2938B9DA6255CA6C18035655D57A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_DEBUG=1", + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + TVOS_DEPLOYMENT_TARGET = 18.0; + }; + name = Debug; }; - 947741EAC317B557FF73926E1CFCE293 /* Debug */ = { + 6B00BC59C5333FFFBAA35048A391A1C0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E74D488FAB1BF71E1683399DE24561E3 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.debug.xcconfig */; + baseConfigurationReference = B7D57265727F12753BFA0A851204AE57 /* Pods-Examples-SourcepointFirebaseDemo.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -12742,16 +9555,16 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -12760,56 +9573,72 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 965934B6BCAC23646E20A3B9C8C9C5E5 /* Debug */ = { + 6D1AAAAFD434E28A382EADDE687D3ABA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CC14A8A1A0D472EF58D5491F0B14547E /* IQTextInputViewNotification.debug.xcconfig */; + baseConfigurationReference = BC81E72BC721CDE1C69C15247B5A8D4E /* PromisesObjC.debug.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-prefix.pch"; + ENABLE_USER_SCRIPT_SANDBOXING = NO; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-Info.plist"; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.modulemap"; - PRODUCT_MODULE_NAME = IQTextInputViewNotification; - PRODUCT_NAME = IQTextInputViewNotification; + MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; + PRODUCT_MODULE_NAME = FBLPromises; + PRODUCT_NAME = FBLPromises; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 978F720BAB8AECE5494661B4940D124F /* Release */ = { + 6F91AC179720256F984BC2DD37A8884A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1209EA6EBCF62A05EE4AF10A38C73B9C /* Pods-Tests-SPGDPRExampleAppUITests.release.xcconfig */; + baseConfigurationReference = BEF1D61F07EF0C0AB2768503E58792D6 /* GoogleAppMeasurement.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 7712266B69E48ED908722C347A046175 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 95E11D7E045EA6E32AA0C093BBCEA740 /* Pods-TVOSExampleApp.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -12820,33 +9649,33 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; + SDKROOT = appletvos; SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 18.0; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - 9D98A7C47587EA934248BF374EB526E9 /* Release */ = { + 79A2A5594038BA6D1270DF40ECE20A81 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A11B05957DEC3AB840DA74DE56267828 /* IQKeyboardToolbar.release.xcconfig */; + baseConfigurationReference = 55D3A53AAEA41B111E5221B41BDDCD65 /* CwlCatchExceptionSupport.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12859,25 +9688,25 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-Info.plist"; + INFOPLIST_FILE = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardToolbar; - PRODUCT_NAME = IQKeyboardToolbar; + MODULEMAP_FILE = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.modulemap"; + PRODUCT_MODULE_NAME = CwlCatchExceptionSupport; + PRODUCT_NAME = CwlCatchExceptionSupport; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; + SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -12885,26 +9714,45 @@ }; name = Release; }; - 9E342C83BAB76D2784E2641DDE39F905 /* Release */ = { + 7D7C067636DD0D07344CD1A93E4660FE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 331073598098173D1699703CF07AF019 /* ConsentViewController-iOS.release.xcconfig */; + baseConfigurationReference = BC81E72BC721CDE1C69C15247B5A8D4E /* PromisesObjC.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ConsentViewController-iOS"; - IBSC_MODULE = ConsentViewController; - INFOPLIST_FILE = "Target Support Files/ConsentViewController-iOS/ResourceBundle-ConsentViewController-ConsentViewController-iOS-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = ConsentViewController; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = FBLPromises_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; + name = Debug; + }; + 7F52C9CAB18B21EF455F8E6691F056CA /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B799A5DBFA15959DB60811F4BFFC4A54 /* FirebaseAnalytics.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; name = Release; }; - 9EC4CCBDCB5B5BF7C22E557CB35BF1B1 /* Debug */ = { + 825026BBBE76C396C947D09A14F311C3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 985E2F8DBB92E8FF07EB736106587CA2 /* FirebaseCoreInternal.debug.xcconfig */; + baseConfigurationReference = 25B64CDAC38DC0B4E6A010B69CB638F8 /* nanopb.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12917,9 +9765,9 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-Info.plist"; + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -12928,25 +9776,24 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCoreInternal; - PRODUCT_NAME = FirebaseCoreInternal; + MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; + PRODUCT_MODULE_NAME = nanopb; + PRODUCT_NAME = nanopb; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - A0803C08A428BEE8A4C6A01286EA10DF /* Release */ = { + 85F3EA07969E1FB2BE878F17A9FC6DE1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1FEFC5DF623E0B735C831F197EB46676 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.release.xcconfig */; + baseConfigurationReference = 1E020A0CF5F17E3A232DECF3ABC8D0B9 /* CwlCatchException.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12958,35 +9805,35 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/CwlCatchException/CwlCatchException-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/CwlCatchException/CwlCatchException-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/CwlCatchException/CwlCatchException.modulemap"; + PRODUCT_MODULE_NAME = CwlCatchException; + PRODUCT_NAME = CwlCatchException; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - A1CDF998F23DDEED098F74B9F254879A /* Debug */ = { + 86CFC7915A12CEAE7456122BB8790D3E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E3030523C1A187A0F7FB9046B6FD01B /* Pods-Tests-ObjC-ExampleAppUITests.debug.xcconfig */; + baseConfigurationReference = 7E1570CADFB386D0553E96EBC0C10F49 /* CwlMachBadInstructionHandler.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12998,34 +9845,36 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.modulemap"; + PRODUCT_MODULE_NAME = CwlMachBadInstructionHandler; + PRODUCT_NAME = CwlMachBadInstructionHandler; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - A212979653B3DF61D5E55276F3264040 /* Debug */ = { + 8E9CAB1DE6BC67FBFB77FD69437D131E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 75C4888BF100C27C1D9364F923E8C519 /* CwlPreconditionTesting.debug.xcconfig */; + baseConfigurationReference = 3FC642299C8549A1C8CE4D110E7882CE /* Pods-TVOSExampleAppUITests.debug.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -13036,150 +9885,51 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-TVOSExampleAppUITests/Pods-TVOSExampleAppUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.modulemap"; - PRODUCT_MODULE_NAME = CwlPreconditionTesting; - PRODUCT_NAME = CwlPreconditionTesting; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.5; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - A2437AF994C576A0BC09DEB6B358FDCD /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4B97AD650825ED664F18595A643EDB28 /* nanopb.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; - IBSC_MODULE = nanopb; - INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = nanopb_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - A3C5A2F9180B3B316FFF334621174657 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D900D75BBBD137EE15A051E0E5E8234A /* FirebaseInstallations.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseInstallations"; - IBSC_MODULE = FirebaseInstallations; - INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = FirebaseInstallations_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - A718AA676A35E03FDAEED25DC039F4B0 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "POD_CONFIGURATION_RELEASE=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; - STRIP_INSTALLED_PRODUCT = NO; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - SWIFT_VERSION = 5.0; - SYMROOT = "${SRCROOT}/../build"; - TVOS_DEPLOYMENT_TARGET = 12.0; + MODULEMAP_FILE = "Target Support Files/Pods-TVOSExampleAppUITests/Pods-TVOSExampleAppUITests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = appletvos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 18.0; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - A766D22DD19730841ED43EDD4BFE2E1B /* Release */ = { + 8F94DA818FAA07E37D7E0366F409BCA6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B6AA1166CD5E836C9349D4C8FB74D2E5 /* ConsentViewController-tvOS.release.xcconfig */; + baseConfigurationReference = 6538B3C5263E056463EC7683F013E881 /* FirebaseInstallations.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ConsentViewController-tvOS"; - IBSC_MODULE = ConsentViewController; - INFOPLIST_FILE = "Target Support Files/ConsentViewController-tvOS/ResourceBundle-ConsentViewController-ConsentViewController-tvOS-Info.plist"; - PRODUCT_NAME = ConsentViewController; - SDKROOT = appletvos; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseInstallations"; + IBSC_MODULE = FirebaseInstallations; + INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = FirebaseInstallations_Privacy; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 12.0; + TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; name = Release; }; - A96CB34ACBFCEC863EBCA57D6A3AAA36 /* Debug */ = { + 8F9D90B96679594B643C790BB467BB29 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 090867511CD2BA024093F61173297740 /* Wormholy.debug.xcconfig */; + baseConfigurationReference = 834E5228A2C3747EDD8DF0071E59F403 /* Pods-TVOSExampleAppUITests.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -13190,34 +9940,33 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Wormholy/Wormholy-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Wormholy/Wormholy-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-TVOSExampleAppUITests/Pods-TVOSExampleAppUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Wormholy/Wormholy.modulemap"; - PRODUCT_MODULE_NAME = Wormholy; - PRODUCT_NAME = Wormholy; - SDKROOT = iphoneos; + MODULEMAP_FILE = "Target Support Files/Pods-TVOSExampleAppUITests/Pods-TVOSExampleAppUITests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = appletvos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 18.0; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - ADE32372A990AB47C803A9023B51AA23 /* Debug */ = { + 90502BAC0EB804327B0489818B0245CC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FC706AD81CC3AB9974F689DF1937213B /* SPMobileCore-tvOS.debug.xcconfig */; + baseConfigurationReference = 5F15BF8424C6F0A58016EFE91A450340 /* SPMobileCore-tvOS.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -13232,11 +9981,27 @@ }; name = Debug; }; - AE19982F15B79C39EDE47EC5BD56F27D /* Debug */ = { + 91D1675C08642B76F2C3B3688090E3C6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 983BDF8D0A591D54CB03F4ACB6E58CDA /* Pods-Examples-SourcePointMetaApp.debug.xcconfig */; + baseConfigurationReference = 6B25EA86E763C785603219CE4563ED76 /* FirebaseCoreInternal.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreInternal"; + IBSC_MODULE = FirebaseCoreInternal; + INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = FirebaseCoreInternal_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 943A7CFA488BFBE271756245EFDD4E71 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 97EE33A24B21B28D02CA6FED3F00E565 /* JSONView.release.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -13248,7 +10013,9 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/JSONView/JSONView-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/JSONView/JSONView-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -13257,23 +10024,23 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/JSONView/JSONView.modulemap"; + PRODUCT_MODULE_NAME = JSONView; + PRODUCT_NAME = JSONView; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - B06EC718BC1C24E92F905A5541FB6AA6 /* Release */ = { + 94E2DE007B13E34314C4F483FC5A5B3F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6751AA628C9101CE0A38B998514B0423 /* Pods-Tests-ConsentViewController_ExampleTests.release.xcconfig */; + baseConfigurationReference = 1893E19DE84F2A0B6BC917DDB6462183 /* Pods-Tests-SPGDPRExampleAppUITests.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -13287,16 +10054,16 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -13311,68 +10078,67 @@ }; name = Release; }; - B5D4C2CBA4DED11444D4BF3C630AF3F8 /* Debug */ = { + 9B889732207B5D8B4585AD88773051F9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6C5861E19176ED390054CBED3842109B /* ConsentViewController-iOS.debug.xcconfig */; + baseConfigurationReference = 84186C01B20273E40B6386C0AF6A94DB /* nanopb.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ConsentViewController-iOS"; - IBSC_MODULE = ConsentViewController; - INFOPLIST_FILE = "Target Support Files/ConsentViewController-iOS/ResourceBundle-ConsentViewController-ConsentViewController-iOS-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - PRODUCT_NAME = ConsentViewController; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb"; + IBSC_MODULE = nanopb; + INFOPLIST_FILE = "Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = nanopb_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - B8934ACA914104F6CAFABAB2B89C286E /* Release */ = { + 9C347B016A77B8B74E5BFF6962BCE73E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B3A3D24201B2F1A39E6787ECA7D65505 /* Quick-iOS.release.xcconfig */; + baseConfigurationReference = 184DF050A094BAECB715C55152421B65 /* Pods-TVOSExampleApp.debug.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Quick-iOS/Quick-iOS-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Quick-iOS/Quick-iOS-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Quick-iOS/Quick-iOS.modulemap"; - PRODUCT_MODULE_NAME = Quick; - PRODUCT_NAME = Quick; - SDKROOT = iphoneos; + MODULEMAP_FILE = "Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = appletvos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 18.0; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - B9DE5DEF00194D2BAC307903FD5A53EC /* Release */ = { + 9C7073918E233E1B2BC129C318EDD319 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 213D4ECBFA7309B07DF2DEED0D23AC9E /* Pods-TVOSExampleApp.release.xcconfig */; + baseConfigurationReference = 4E9C5FB6628EC9A3D3E2F9BBC5760F25 /* Pods-Examples-NativeMessageExample.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -13383,33 +10149,32 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-NativeMessageExample/Pods-Examples-NativeMessageExample-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-NativeMessageExample/Pods-Examples-NativeMessageExample.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = appletvos; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 12.0; - VALIDATE_PRODUCT = YES; + TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - C199163ADE41485EE0B58ABA407CA16B /* Release */ = { + A212979653B3DF61D5E55276F3264040 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C9391B97E8AE9BB43422D8C5BC9536AC /* CwlMachBadInstructionHandler.release.xcconfig */; + baseConfigurationReference = FF25A8B95A82598D7E2E4A0A8E1B2E97 /* CwlPreconditionTesting.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13422,9 +10187,9 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-Info.plist"; + INFOPLIST_FILE = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -13433,31 +10198,86 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.modulemap"; - PRODUCT_MODULE_NAME = CwlMachBadInstructionHandler; - PRODUCT_NAME = CwlMachBadInstructionHandler; + MODULEMAP_FILE = "Target Support Files/CwlPreconditionTesting/CwlPreconditionTesting.modulemap"; + PRODUCT_MODULE_NAME = CwlPreconditionTesting; + PRODUCT_NAME = CwlPreconditionTesting; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; + name = Debug; + }; + A749D5876D7A5F7345EF8CB1D4A84DB4 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 3613BC1D9C76B49AA73C8A373C766DF7 /* FirebaseCore.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/FirebaseCore/FirebaseCore.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCore; + PRODUCT_NAME = FirebaseCore; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + A8A0E0826DCED7F8E88A885DA6E4D165 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 90BF493E1F9D2BDA9D04385008767469 /* FirebaseCore.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCore"; + IBSC_MODULE = FirebaseCore; + INFOPLIST_FILE = "Target Support Files/FirebaseCore/ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = FirebaseCore_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; name = Release; }; - C1C7C501508BB6500786571B4E945137 /* Release */ = { + A922D3D477AFB764F89DA62069F4188D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E9EAAA300C2D6362912AE15C9D01E4CF /* IQKeyboardReturnManager.release.xcconfig */; + baseConfigurationReference = 4780B3F7DD14B0085A2095F9BFCE0154 /* GoogleUtilities.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardReturnManager"; - IBSC_MODULE = IQKeyboardReturnManager; - INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardReturnManager; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = GoogleUtilities_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -13465,9 +10285,9 @@ }; name = Release; }; - C265306D8B7880C9F8C3230C6F0D8845 /* Release */ = { + A96CB34ACBFCEC863EBCA57D6A3AAA36 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E9EAAA300C2D6362912AE15C9D01E4CF /* IQKeyboardReturnManager.release.xcconfig */; + baseConfigurationReference = CC123F1E84A44117353611B88C0097AC /* Wormholy.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13480,25 +10300,64 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Wormholy/Wormholy-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Wormholy/Wormholy-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Wormholy/Wormholy.modulemap"; + PRODUCT_MODULE_NAME = Wormholy; + PRODUCT_NAME = Wormholy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + AD4CEA252139ABA87AE836FED43CF11F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F8F6444C5E803ADDC3C044E78B24027E /* Pods-Examples-ConsentViewController_Example.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardReturnManager; - PRODUCT_NAME = IQKeyboardReturnManager; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -13506,9 +10365,9 @@ }; name = Release; }; - C31EFB36C87B453E49617E51D7399B3B /* Debug */ = { + AE835A357185BBAEA9384B9D01A2568F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 91621E1BA3A89BE74D1E7D017C175F49 /* IQKeyboardToolbarManager.debug.xcconfig */; + baseConfigurationReference = E961EDCCDDC00D8E1CE5B2C8E47AD6B6 /* CwlCatchExceptionSupport.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13520,34 +10379,52 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-prefix.pch"; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-Info.plist"; + INFOPLIST_FILE = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardToolbarManager; - PRODUCT_NAME = IQKeyboardToolbarManager; + MODULEMAP_FILE = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.modulemap"; + PRODUCT_MODULE_NAME = CwlCatchExceptionSupport; + PRODUCT_NAME = CwlCatchExceptionSupport; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; + SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - C3AFC6255078B482631F15926FF56A7E /* Release */ = { + B09099CEC45CB1231737D2E095D431AD /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CC123F1E84A44117353611B88C0097AC /* Wormholy.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Wormholy"; + IBSC_MODULE = Wormholy; + INFOPLIST_FILE = "Target Support Files/Wormholy/ResourceBundle-Wormholy-Wormholy-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = Wormholy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + B3AFC27BF58AB74BAA186A82CECF750B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 60A70F335EE93EADD5D96E8BA805610B /* CwlPosixPreconditionTesting.release.xcconfig */; + baseConfigurationReference = 4780B3F7DD14B0085A2095F9BFCE0154 /* GoogleUtilities.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13560,9 +10437,8 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-Info.plist"; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -13571,14 +10447,14 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.modulemap"; - PRODUCT_MODULE_NAME = CwlPosixPreconditionTesting; - PRODUCT_NAME = CwlPosixPreconditionTesting; + MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; + PRODUCT_MODULE_NAME = GoogleUtilities; + PRODUCT_NAME = GoogleUtilities; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.5; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -13586,11 +10462,12 @@ }; name = Release; }; - C42A7EA8BB1FB011AF2FAF2BA99D02FB /* Release */ = { + B75A1932F0AD091B59C782AFA7D3640D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CF2874772D1FCD934DCD53213E94B8D6 /* Pods-TVOSExampleAppUITests.release.xcconfig */; + baseConfigurationReference = CBBF33C16A255D7666561C58214A8DDA /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -13601,72 +10478,89 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-TVOSExampleAppUITests/Pods-TVOSExampleAppUITests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-TVOSExampleAppUITests/Pods-TVOSExampleAppUITests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + B81794093AE0AF88721267B853C0A05F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 279F88EBA67943FE8DBA4704C9BA2C15 /* ConsentViewController-tvOS.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ConsentViewController-tvOS"; + IBSC_MODULE = ConsentViewController; + INFOPLIST_FILE = "Target Support Files/ConsentViewController-tvOS/ResourceBundle-ConsentViewController-ConsentViewController-tvOS-Info.plist"; + PRODUCT_NAME = ConsentViewController; SDKROOT = appletvos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = 3; TVOS_DEPLOYMENT_TARGET = 12.0; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - C47934DD7A46BFD0CD7470D2F241D9A8 /* Debug */ = { + B8934ACA914104F6CAFABAB2B89C286E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 41BAC8F250BD7588F95DD766836F4A64 /* FirebaseInstallations.debug.xcconfig */; + baseConfigurationReference = EB79275C499218CB1DBD03A24EAE9C04 /* Quick-iOS.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/Quick-iOS/Quick-iOS-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Quick-iOS/Quick-iOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations.modulemap"; - PRODUCT_MODULE_NAME = FirebaseInstallations; - PRODUCT_NAME = FirebaseInstallations; + MODULEMAP_FILE = "Target Support Files/Quick-iOS/Quick-iOS.modulemap"; + PRODUCT_MODULE_NAME = Quick; + PRODUCT_NAME = Quick; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - C50368B0EAA1F717CA3CDFE1FAB81926 /* Release */ = { + BF746F9695F55CAEF3FC5270BD677B6F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 88E5A68E490D25730B9530B224AC6B05 /* CwlCatchException.release.xcconfig */; + baseConfigurationReference = C53DBBA1DC9C863531606F0AB932A772 /* FirebaseCoreInternal.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13679,9 +10573,9 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/CwlCatchException/CwlCatchException-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/CwlCatchException/CwlCatchException-Info.plist"; + INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -13690,31 +10584,30 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/CwlCatchException/CwlCatchException.modulemap"; - PRODUCT_MODULE_NAME = CwlCatchException; - PRODUCT_NAME = CwlCatchException; + MODULEMAP_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal.modulemap"; + PRODUCT_MODULE_NAME = FirebaseCoreInternal; + PRODUCT_NAME = FirebaseCoreInternal; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.5; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - C5C2ABCE418FE9B749EBEA45ED1C77EB /* Release */ = { + C1616BDA74970EC895DDE8A602FEB349 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 25D4F6A49E547E09FEE315D6A39438D8 /* IQKeyboardToolbarManager.release.xcconfig */; + baseConfigurationReference = 331073598098173D1699703CF07AF019 /* ConsentViewController-iOS.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbarManager"; - IBSC_MODULE = IQKeyboardToolbarManager; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbarManager/ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardToolbarManager; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ConsentViewController-iOS"; + IBSC_MODULE = ConsentViewController; + INFOPLIST_FILE = "Target Support Files/ConsentViewController-iOS/ResourceBundle-ConsentViewController-ConsentViewController-iOS-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + PRODUCT_NAME = ConsentViewController; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -13722,10 +10615,11 @@ }; name = Release; }; - CA4609710386965DE58C51431F3CC911 /* Release */ = { + C16A21875F0CD5C18F6124ECC86E6297 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1B9F50AC0729A3A5253FB09DBB050D14 /* IQKeyboardCore.release.xcconfig */; + baseConfigurationReference = A5D06178309AA95C57E8B9B24E7D9D2C /* Pods-Tests-NativeMessageExampleUITests.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -13737,25 +10631,23 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/IQKeyboardCore/IQKeyboardCore-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/IQKeyboardCore/IQKeyboardCore-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/IQKeyboardCore/IQKeyboardCore.modulemap"; - PRODUCT_MODULE_NAME = IQKeyboardCore; - PRODUCT_NAME = IQKeyboardCore; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -13763,84 +10655,51 @@ }; name = Release; }; - CAEE34DBAC93428CEF98F1F637BAF1F0 /* Debug */ = { + C199163ADE41485EE0B58ABA407CA16B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6C5861E19176ED390054CBED3842109B /* ConsentViewController-iOS.debug.xcconfig */; + baseConfigurationReference = 853DF6D815EF025762106323111CAF85 /* CwlMachBadInstructionHandler.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-Info.plist"; + INFOPLIST_FILE = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS.modulemap"; - PRODUCT_MODULE_NAME = ConsentViewController; - PRODUCT_NAME = ConsentViewController; + MODULEMAP_FILE = "Target Support Files/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.modulemap"; + PRODUCT_MODULE_NAME = CwlMachBadInstructionHandler; + PRODUCT_NAME = CwlMachBadInstructionHandler; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.1; + SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; - }; - CB64E29ED8083B02079F26CC3D0F9FA8 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1B9F50AC0729A3A5253FB09DBB050D14 /* IQKeyboardCore.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardCore"; - IBSC_MODULE = IQKeyboardCore; - INFOPLIST_FILE = "Target Support Files/IQKeyboardCore/ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardCore; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; name = Release; }; - CBBD1EE104455BC781CE71B35418E005 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C206E48C5FD72701093625C9FEDD1C14 /* IQTextView.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQTextView"; - IBSC_MODULE = IQTextView; - INFOPLIST_FILE = "Target Support Files/IQTextView/ResourceBundle-IQTextView-IQTextView-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQTextView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - CC87F67E5394EE6BE9F4BEB048B508B9 /* Debug */ = { + C3AFC6255078B482631F15926FF56A7E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 36E1993376CB5E7006909115A0334DE0 /* Pods-Tests-ConsentViewController_ExampleTests.debug.xcconfig */; + baseConfigurationReference = 4EBB725AC5BF7E0F77E625A5DA4315CA /* CwlPosixPreconditionTesting.release.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -13852,34 +10711,36 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.modulemap"; + PRODUCT_MODULE_NAME = CwlPosixPreconditionTesting; + PRODUCT_NAME = CwlPosixPreconditionTesting; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - CDA4DD10F8F0EE8AA826B1F302D9CFEB /* Release */ = { + C50368B0EAA1F717CA3CDFE1FAB81926 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 526CB7DD55C46C5D61E56736B270451E /* Pods-Examples-SourcePointMetaApp.release.xcconfig */; + baseConfigurationReference = 876B81D97FF07E797985B21078D2BE11 /* CwlCatchException.release.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -13891,23 +10752,25 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/CwlCatchException/CwlCatchException-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/CwlCatchException/CwlCatchException-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/CwlCatchException/CwlCatchException.modulemap"; + PRODUCT_MODULE_NAME = CwlCatchException; + PRODUCT_NAME = CwlCatchException; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.5; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -13915,49 +10778,87 @@ }; name = Release; }; - CE2250ED592B587ACD353234CB7052D0 /* Debug */ = { + C59711B4BB3B2165AC820E4F9149B930 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4393CF8AA70020C0E7F43105EC1DEEBF /* PromisesObjC.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; + IBSC_MODULE = FBLPromises; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = FBLPromises_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + C826F6EB19072CCE845D984B3E44C12B /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E56720F7641E6178548E80A357F58E29 /* SPMobileCore-iOS.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + C95DB1E367421641EDFF91A61DFC84AB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0EDDE07DCB417401246AED370804DA0C /* Nimble-iOS.debug.xcconfig */; + baseConfigurationReference = 84186C01B20273E40B6386C0AF6A94DB /* nanopb.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Nimble-iOS/Nimble-iOS-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Nimble-iOS/Nimble-iOS-Info.plist"; + INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Nimble-iOS/Nimble-iOS.modulemap"; - PRODUCT_MODULE_NAME = Nimble; - PRODUCT_NAME = Nimble; + MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; + PRODUCT_MODULE_NAME = nanopb; + PRODUCT_NAME = nanopb; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - CEA1C6633D182988DD20C372CC05CB29 /* Release */ = { + CAEE34DBAC93428CEF98F1F637BAF1F0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A70A5FFB77406837B331831AFA067EA9 /* Quick-tvOS.release.xcconfig */; + baseConfigurationReference = 6C5861E19176ED390054CBED3842109B /* ConsentViewController-iOS.debug.xcconfig */; buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -13967,35 +10868,34 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Quick-tvOS/Quick-tvOS-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Quick-tvOS/Quick-tvOS-Info.plist"; + INFOPLIST_FILE = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Quick-tvOS/Quick-tvOS.modulemap"; - PRODUCT_MODULE_NAME = Quick; - PRODUCT_NAME = Quick; - SDKROOT = appletvos; + MODULEMAP_FILE = "Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS.modulemap"; + PRODUCT_MODULE_NAME = ConsentViewController; + PRODUCT_NAME = ConsentViewController; + SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 13.0; - VALIDATE_PRODUCT = YES; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - D64FD8B858B988C908880C81851CC20A /* Release */ = { + CE1AC5665377E8733107F763F15FB305 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C5AE4F2FE6962D2D5782A193601217D4 /* Pods-Examples-SourcepointFirebaseDemo.release.xcconfig */; + baseConfigurationReference = 9F881E818A129CDB4DD5CEAB85319E59 /* Pods-Tests-ObjC-ExampleAppUITests.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -14009,16 +10909,16 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-SourcepointFirebaseDemo/Pods-Examples-SourcepointFirebaseDemo.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-ObjC-ExampleAppUITests/Pods-Tests-ObjC-ExampleAppUITests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -14027,48 +10927,28 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; - }; - D834AEAA334DEA04A1BF19DFA0DD207F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 285FA291E715D679D7FE0BA7CA91DB12 /* SwiftLint.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; + name = Debug; }; - D90EE8250D7C3B967A693BA986337355 /* Release */ = { + CE2250ED592B587ACD353234CB7052D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5F0BAEF807330D071BABE9BE7ADD3BE3 /* Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.release.xcconfig */; + baseConfigurationReference = D8ECA930C85EEF0681176E902707ADBA /* Nimble-iOS.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/Nimble-iOS/Nimble-iOS-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/Nimble-iOS/Nimble-iOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -14077,184 +10957,81 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests/Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/Nimble-iOS/Nimble-iOS.modulemap"; + PRODUCT_MODULE_NAME = Nimble; + PRODUCT_NAME = Nimble; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; - }; - D993ADC32508C4F5BC5089E63E193331 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 119BF7600B4B48D0FAF2C547AC752308 /* GoogleUtilities.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; - IBSC_MODULE = GoogleUtilities; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = GoogleUtilities_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; + name = Debug; }; - DC021ABE7E3425E47582BD698A924878 /* Release */ = { + CEA1C6633D182988DD20C372CC05CB29 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D40DAEECEA07B34CD1EA6C66DCEB2C6C /* CwlCatchExceptionSupport.release.xcconfig */; + baseConfigurationReference = 367F0B37BA4F6AC11F3828F7FF5FCB69 /* Quick-tvOS.release.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Quick-tvOS/Quick-tvOS-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Quick-tvOS/Quick-tvOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/CwlCatchExceptionSupport/CwlCatchExceptionSupport.modulemap"; - PRODUCT_MODULE_NAME = CwlCatchExceptionSupport; - PRODUCT_NAME = CwlCatchExceptionSupport; - SDKROOT = iphoneos; + MODULEMAP_FILE = "Target Support Files/Quick-tvOS/Quick-tvOS.modulemap"; + PRODUCT_MODULE_NAME = Quick; + PRODUCT_NAME = Quick; + SDKROOT = appletvos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.5; - TARGETED_DEVICE_FAMILY = "1,2"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 13.0; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - DC5E60C1150300E0EE0E5982F5A328D0 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 41BAC8F250BD7588F95DD766836F4A64 /* FirebaseInstallations.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseInstallations"; - IBSC_MODULE = FirebaseInstallations; - INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = FirebaseInstallations_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - E0C4F053C297D2218026DEB75B60D0D5 /* Debug */ = { + D834AEAA334DEA04A1BF19DFA0DD207F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 090867511CD2BA024093F61173297740 /* Wormholy.debug.xcconfig */; + baseConfigurationReference = 640199601037D9F58D130F079A21C25C /* SwiftLint.release.xcconfig */; buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Wormholy"; - IBSC_MODULE = Wormholy; - INFOPLIST_FILE = "Target Support Files/Wormholy/ResourceBundle-Wormholy-Wormholy-Info.plist"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = Wormholy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - E5536B15C895CD5BAAE17ADFAE647264 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E4269C979DF800C248CEE4EF6E553E03 /* PromisesObjC.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = FBLPromises_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - E5B0250E0BD854CD7C13F82F0170B7B9 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 72C7BE65FE543570C043A81113E9833F /* IQKeyboardManagerSwift.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardManagerSwift"; - IBSC_MODULE = IQKeyboardManagerSwift; - INFOPLIST_FILE = "Target Support Files/IQKeyboardManagerSwift/ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardManagerSwift; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; }; name = Release; }; - E63CA6603525446F42CE92EC6FA6500F /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A89672116452AEA51E63CDD4641DF6AC /* IQKeyboardNotification.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardNotification"; - IBSC_MODULE = IQKeyboardNotification; - INFOPLIST_FILE = "Target Support Files/IQKeyboardNotification/ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardNotification; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - E6C672C97A34BF21E86CCE3B0318F11C /* Debug */ = { + DAB2C323885FCF7C6A3EBC8849669535 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A0CA2E223EE61D297A117842655ACF18 /* FirebaseCore.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCore"; - IBSC_MODULE = FirebaseCore; - INFOPLIST_FILE = "Target Support Files/FirebaseCore/ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = FirebaseCore_Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - EA9F5298B8B12CE84F42274709A73C7D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 27F52904F8E2C67669D2B25113119F8C /* Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig */; + baseConfigurationReference = D027DCACE4D142B20B4BD5E6E6D432C2 /* Pods-Tests-ConsentViewController_ExampleTests.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -14268,16 +11045,16 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Tests-ConsentViewController_ExampleTests/Pods-Tests-ConsentViewController_ExampleTests.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -14291,65 +11068,26 @@ }; name = Debug; }; - EE17A09E7F83C06669063470286EE4FA /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A94D32980FE8EEFD4BF3C5D8AB171AFC /* Quick-iOS.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Quick-iOS/Quick-iOS-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Quick-iOS/Quick-iOS-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Quick-iOS/Quick-iOS.modulemap"; - PRODUCT_MODULE_NAME = Quick; - PRODUCT_NAME = Quick; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - EF33553832DCEE23A14321C5539AF5BD /* Debug */ = { + E97518788E7F87F62E6A2E5484FB0058 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CEEF2772E3AD8AFE9DAE3F2083371D77 /* PromisesObjC.debug.xcconfig */; + baseConfigurationReference = B6AA1166CD5E836C9349D4C8FB74D2E5 /* ConsentViewController-tvOS.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC"; - IBSC_MODULE = FBLPromises; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = FBLPromises_Privacy; - SDKROOT = iphoneos; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/ConsentViewController-tvOS"; + IBSC_MODULE = ConsentViewController; + INFOPLIST_FILE = "Target Support Files/ConsentViewController-tvOS/ResourceBundle-ConsentViewController-ConsentViewController-tvOS-Info.plist"; + PRODUCT_NAME = ConsentViewController; + SDKROOT = appletvos; SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 12.0; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - EF45C33CF88331E3800EC5AD8762C13F /* Release */ = { + EAF6A21D21607AA0021B81AF9B395EA5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 994E32106A3E483B71224175EE751364 /* Pods-Tests-NativeMessageExampleUITests.release.xcconfig */; + baseConfigurationReference = 9401E63DC925798D15C7ED576E634CFB /* Pods-Examples-ConsentViewController_Example.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -14363,16 +11101,16 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-NativeMessageExampleUITests/Pods-Tests-NativeMessageExampleUITests.modulemap"; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-ConsentViewController_Example/Pods-Examples-ConsentViewController_Example.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -14381,30 +11119,28 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - EFE2E118643E7196A62B5E3039A9A4BA /* Debug */ = { + EE17A09E7F83C06669063470286EE4FA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A9F239EB342CD33668E7657BEF9023C2 /* JSONView.debug.xcconfig */; + baseConfigurationReference = 53BCCF0731509F7CF340D2763034DFD5 /* Quick-iOS.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/JSONView/JSONView-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Quick-iOS/Quick-iOS-prefix.pch"; GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/JSONView/JSONView-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Quick-iOS/Quick-iOS-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -14413,24 +11149,24 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/JSONView/JSONView.modulemap"; - PRODUCT_MODULE_NAME = JSONView; - PRODUCT_NAME = JSONView; + MODULEMAP_FILE = "Target Support Files/Quick-iOS/Quick-iOS.modulemap"; + PRODUCT_MODULE_NAME = Quick; + PRODUCT_NAME = Quick; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - F09A6D7CC9773C049C6A39BA034D5C3A /* Release */ = { + EFE2E118643E7196A62B5E3039A9A4BA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5D31896522ED33BA384049E391718EA8 /* Pods-Examples-AuthExample.release.xcconfig */; + baseConfigurationReference = 6B1CB913D0C795005011229ABCA67947 /* JSONView.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -14442,7 +11178,9 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/JSONView/JSONView-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/JSONView/JSONView-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -14451,26 +11189,23 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Examples-AuthExample/Pods-Examples-AuthExample.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/JSONView/JSONView.modulemap"; + PRODUCT_MODULE_NAME = JSONView; + PRODUCT_NAME = JSONView; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - F11F5864CB133F6CA5B1B102E198C025 /* Debug */ = { + F5303D5850C33E954296E3FC8FC5E84A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 42DDA6EA4552D7101BA8815109178F18 /* Pods-Tests-SPGDPRExampleAppUITests.debug.xcconfig */; + baseConfigurationReference = F06CECB781AD3E9067662A0AC7DE9DD4 /* FirebaseInstallations.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -14482,49 +11217,50 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests-Info.plist"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-Tests-SPGDPRExampleAppUITests/Pods-Tests-SPGDPRExampleAppUITests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/FirebaseInstallations/FirebaseInstallations.modulemap"; + PRODUCT_MODULE_NAME = FirebaseInstallations; + PRODUCT_NAME = FirebaseInstallations; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.9; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - F617B8FBB5B5D681C61CB996746E62F9 /* Release */ = { + F68E6C1B1F76AABE37EE6350336960B9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A11B05957DEC3AB840DA74DE56267828 /* IQKeyboardToolbar.release.xcconfig */; + baseConfigurationReference = 3613BC1D9C76B49AA73C8A373C766DF7 /* FirebaseCore.debug.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/IQKeyboardToolbar"; - IBSC_MODULE = IQKeyboardToolbar; - INFOPLIST_FILE = "Target Support Files/IQKeyboardToolbar/ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - PRODUCT_NAME = IQKeyboardToolbar; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCore"; + IBSC_MODULE = FirebaseCore; + INFOPLIST_FILE = "Target Support Files/FirebaseCore/ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = FirebaseCore_Privacy; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; F782E619EF607753E0F6806CDB1A656C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 477405BF4D1FBDEDBF1A82AD3DE52801 /* Nimble-iOS.release.xcconfig */; + baseConfigurationReference = E7A6CA6E393D185DC7E955D806EE679D /* Nimble-iOS.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -14562,48 +11298,66 @@ }; name = Release; }; - F9B692B6D88048DCC6E0542E83CF1D54 /* Debug */ = { + F8485F9CE5EE705795040AB4A3FA180B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5CA7BC50BD57C2265DA3CD531E6B596A /* Pods-TVOSExampleApp.debug.xcconfig */; + baseConfigurationReference = C48A26F1C27CB3218255C545C1804A12 /* GoogleUtilities.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities"; + IBSC_MODULE = GoogleUtilities; + INFOPLIST_FILE = "Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = GoogleUtilities_Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + FD26C7669FF952CA827F78C1FFF2D20C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4393CF8AA70020C0E7F43105EC1DEEBF /* PromisesObjC.release.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp-Info.plist"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-TVOSExampleApp/Pods-TVOSExampleApp.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = appletvos; + MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; + PRODUCT_MODULE_NAME = FBLPromises; + PRODUCT_NAME = FBLPromises; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 12.0; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - FC4229FB7E572F0F9BBEA2E162011588 /* Debug */ = { + FDF60E2E93B85853E0ED2D8B5D84D7F6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DC2639B1E829A5F90E03607464AF4414 /* GoogleUtilities.debug.xcconfig */; + baseConfigurationReference = 9723F96C65562CA6296D32D3BC624C1E /* Pods-Examples-ObjC-ExampleApp.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -14615,56 +11369,56 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + IPHONEOS_DEPLOYMENT_TARGET = 18.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + MODULEMAP_FILE = "Target Support Files/Pods-Examples-ObjC-ExampleApp/Pods-Examples-ObjC-ExampleApp.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 090BFCBA155B7F3F0E0F283626E85DE0 /* Build configuration list for PBXNativeTarget "IQTextView-IQTextView" */ = { + 09F47D5B53DBDD6B0C9CA4AB0D1A87B5 /* Build configuration list for PBXNativeTarget "FirebaseInstallations-FirebaseInstallations_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - CBBD1EE104455BC781CE71B35418E005 /* Debug */, - 198C3997F297ECA1DE780203DB2B9686 /* Release */, + 29D64397FC7B1379FEB8DD7ADE06B8E9 /* Debug */, + 8F94DA818FAA07E37D7E0366F409BCA6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0D682EBF930B47EF926E9C5D9326DBD0 /* Build configuration list for PBXNativeTarget "Pods-Examples-ObjC-ExampleApp" */ = { + 0AF443C231D2AC48896904B660904AD3 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3DCD05D7DDE215621D5F61B7BD222598 /* Debug */, - 2B2F298DCDA9EEAF67441F0BE0DCD995 /* Release */, + 6F91AC179720256F984BC2DD37A8884A /* Debug */, + 03B3E33E3ADE5D9544A14C2BF203B983 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0DF35521CC8895B60E55B132E01EC6E3 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal-FirebaseCoreInternal_Privacy" */ = { + 0D682EBF930B47EF926E9C5D9326DBD0 /* Build configuration list for PBXNativeTarget "Pods-Examples-ObjC-ExampleApp" */ = { isa = XCConfigurationList; buildConfigurations = ( - 50A4210F9241CB6251F85F141507A19C /* Debug */, - 20ED51BAD5DE05615FFA0AEAAB2301CB /* Release */, + 0E6308316AC4467A93FB22CA192EFFA8 /* Debug */, + FDF60E2E93B85853E0ED2D8B5D84D7F6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -14687,128 +11441,119 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1EBC19BA904E766FE0D14F5786FC3F54 /* Build configuration list for PBXAggregateTarget "SPMobileCore-tvOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - ADE32372A990AB47C803A9023B51AA23 /* Debug */, - 8F92F524B4505109D827498556153A92 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 257CB04BA79C2D718D4AC1E76481EFA7 /* Build configuration list for PBXNativeTarget "Quick-tvOS" */ = { + 1C4BE6933B19E792235F6ED3C244AE69 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */ = { isa = XCConfigurationList; buildConfigurations = ( - 64193CBACD4A98A9FE55F541B6602744 /* Debug */, - CEA1C6633D182988DD20C372CC05CB29 /* Release */, + BF746F9695F55CAEF3FC5270BD677B6F /* Debug */, + 05FF659CD9A560A505F3B55881BFD711 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2BBC4D609AAC3EB076227051A51C2317 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */ = { + 1F62EBA619E8F7F41D706C63499598A5 /* Build configuration list for PBXNativeTarget "FirebaseCore-FirebaseCore_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - C47934DD7A46BFD0CD7470D2F241D9A8 /* Debug */, - 436A507E46F0AB10C1F2F4195294C537 /* Release */, + F68E6C1B1F76AABE37EE6350336960B9 /* Debug */, + A8A0E0826DCED7F8E88A885DA6E4D165 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 32105BE899BF4B6FC6BC033DE8A476E8 /* Build configuration list for PBXNativeTarget "Pods-Tests-AuthExampleUITests" */ = { + 257CB04BA79C2D718D4AC1E76481EFA7 /* Build configuration list for PBXNativeTarget "Quick-tvOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 61777F39BA975962D7231F5C4FB92C18 /* Debug */, - 4FE5D50BA20AC9B9AC9C1F7141E5ADFE /* Release */, + 64193CBACD4A98A9FE55F541B6602744 /* Debug */, + CEA1C6633D182988DD20C372CC05CB29 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3B269303E283FB706D3DE1F9407A2030 /* Build configuration list for PBXNativeTarget "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests" */ = { + 292A4274262212A5A9ED6259A7597242 /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { isa = XCConfigurationList; buildConfigurations = ( - 947741EAC317B557FF73926E1CFCE293 /* Debug */, - D90EE8250D7C3B967A693BA986337355 /* Release */, + 6D1AAAAFD434E28A382EADDE687D3ABA /* Debug */, + FD26C7669FF952CA827F78C1FFF2D20C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 401DBC16ED3825ED5C7AC8777548FE91 /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager-IQKeyboardReturnManager" */ = { + 306B5B2DC158483B3798B46CE47F8025 /* Build configuration list for PBXNativeTarget "GoogleUtilities-GoogleUtilities_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 297792429E20B86846683C49C8A16D19 /* Debug */, - C1C7C501508BB6500786571B4E945137 /* Release */, + F8485F9CE5EE705795040AB4A3FA180B /* Debug */, + A922D3D477AFB764F89DA62069F4188D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 40F354CEEC0E7EF3EB291A40F327FACE /* Build configuration list for PBXNativeTarget "nanopb" */ = { + 30D9091F2437EBB7E8929218F017C0B2 /* Build configuration list for PBXNativeTarget "nanopb" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2B3133F528EAD9E9CD2996C313506EB4 /* Debug */, - 6D219CD9F20656CB347F1C55A4D36ED2 /* Release */, + 825026BBBE76C396C947D09A14F311C3 /* Debug */, + C95DB1E367421641EDFF91A61DFC84AB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 42523495ED6DDC79EB50B80655F2FAD7 /* Build configuration list for PBXNativeTarget "Wormholy-Wormholy" */ = { + 32105BE899BF4B6FC6BC033DE8A476E8 /* Build configuration list for PBXNativeTarget "Pods-Tests-AuthExampleUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( - E0C4F053C297D2218026DEB75B60D0D5 /* Debug */, - 111B314DEBE9B397D778D90CFAA0DD1A /* Release */, + 48101AA3F49E89AC9C5CA168ED37F141 /* Debug */, + 0BF30ABD796F0FEAAC472B4F754EBCFC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4286674F1ACAAEDD8D0AD9D838746D77 /* Build configuration list for PBXNativeTarget "CwlPreconditionTesting" */ = { + 3561FA1B00E318837192B1D66095CA38 /* Build configuration list for PBXNativeTarget "nanopb-nanopb_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - A212979653B3DF61D5E55276F3264040 /* Debug */, - 0359B6E5C81C72F2A836F368541E137C /* Release */, + 03A44DE99B1497FE4757F640EC0BCC74 /* Debug */, + 9B889732207B5D8B4585AD88773051F9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 433737C2FF9F1D1A1916E4C80A7EA0D1 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager-IQKeyboardToolbarManager" */ = { + 3B269303E283FB706D3DE1F9407A2030 /* Build configuration list for PBXNativeTarget "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoTests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4BA18A21CB1B4F249E5996AB5DB178D2 /* Debug */, - C5C2ABCE418FE9B749EBEA45ED1C77EB /* Release */, + 0E64A05560BF7B16A9FA865D52323E65 /* Debug */, + 25D981DB15045EC284CD62485DEFBD16 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { + 41DE24283FB7479957D1BB52288806BF /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal-FirebaseCoreInternal_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 48C39086E7411855E912CFC5497A233B /* Debug */, - A718AA676A35E03FDAEED25DC039F4B0 /* Release */, + 0CF4A8FC2D07CB620EDAD51FAE2BC296 /* Debug */, + 91D1675C08642B76F2C3B3688090E3C6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 486BDD66DBDF5FAB3ACB3C712F8DA481 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification-IQKeyboardNotification" */ = { + 4286674F1ACAAEDD8D0AD9D838746D77 /* Build configuration list for PBXNativeTarget "CwlPreconditionTesting" */ = { isa = XCConfigurationList; buildConfigurations = ( - E63CA6603525446F42CE92EC6FA6500F /* Debug */, - 535642C8E96314EC66B8447004397685 /* Release */, + A212979653B3DF61D5E55276F3264040 /* Debug */, + 0359B6E5C81C72F2A836F368541E137C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 57C20D375067F47300EF4A6323715370 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift-IQKeyboardManagerSwift" */ = { + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( - 88933E87DF5FCC53F1B6CDE3106341B8 /* Debug */, - E5B0250E0BD854CD7C13F82F0170B7B9 /* Release */, + 6A6D2938B9DA6255CA6C18035655D57A /* Debug */, + 1039D2AC3A41F55B5665900BFA4313FF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 584139164D6737A69E7A1563180B2BD5 /* Build configuration list for PBXNativeTarget "PromisesObjC-FBLPromises_Privacy" */ = { + 518BBA4A971F7CB5BC49F64D8F24416A /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */ = { isa = XCConfigurationList; buildConfigurations = ( - EF33553832DCEE23A14321C5539AF5BD /* Debug */, - E5536B15C895CD5BAAE17ADFAE647264 /* Release */, + F5303D5850C33E954296E3FC8FC5E84A /* Debug */, + 00C3BDCDA6B35C4F47FF3AC40F78EC67 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -14822,110 +11567,47 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6098B9CDCC5E3B555285349576DFBE48 /* Build configuration list for PBXAggregateTarget "SPMobileCore-iOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 6C73A30C3E70AECA49DBA8DA38C654B2 /* Debug */, - 897248D5D2667E3217EF57232EA1750B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 6512C9FAD9515EB626377761483824F7 /* Build configuration list for PBXNativeTarget "Pods-Tests-SPGDPRExampleAppUITests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F11F5864CB133F6CA5B1B102E198C025 /* Debug */, - 978F720BAB8AECE5494661B4940D124F /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 65C72768F72492115A09FE41F509527D /* Build configuration list for PBXNativeTarget "Pods-Tests-ConsentViewController_ExampleTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - CC87F67E5394EE6BE9F4BEB048B508B9 /* Debug */, - B06EC718BC1C24E92F905A5541FB6AA6 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 6A21E486CD1D6FADF816EDED6A7FF6EF /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 73170304D5722E5AB4C389BC25C3C796 /* Debug */, - 44CEE02C9383267489710B6FB1F13FF3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 6CA6778A211DD4F32331F054CA967EC3 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar-IQKeyboardToolbar" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 703CB38488CFBC76CD6A8D6225020189 /* Debug */, - F617B8FBB5B5D681C61CB996746E62F9 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 6CE62D9C5C190237F9EDA656415E1F8F /* Build configuration list for PBXNativeTarget "IQKeyboardToolbarManager" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C31EFB36C87B453E49617E51D7399B3B /* Debug */, - 29E66BD6E2F057F8BA57F5C72FAD6C66 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 6F6F35FEE6A349E33F085A79DA040D7B /* Build configuration list for PBXNativeTarget "CwlCatchExceptionSupport" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2F9E55DE3E998BAE8B4159A92BB19167 /* Debug */, - DC021ABE7E3425E47582BD698A924878 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 70380F48246B5923842FDF6A0CE89726 /* Build configuration list for PBXNativeTarget "IQKeyboardNotification" */ = { + 5D8D9E0EA6130ED9F3B59896604767D2 /* Build configuration list for PBXNativeTarget "CwlCatchExceptionSupport" */ = { isa = XCConfigurationList; buildConfigurations = ( - 02661949AD1B877B467898C4A583050A /* Debug */, - 313E364743B2C52A27C7817D38BBB6F5 /* Release */, + AE835A357185BBAEA9384B9D01A2568F /* Debug */, + 79A2A5594038BA6D1270DF40ECE20A81 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7271A8AF871EE482A86F0F6A5D5FAF43 /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification" */ = { + 61D8C2BA98D653234937AED8F9CEE32F /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { isa = XCConfigurationList; buildConfigurations = ( - 965934B6BCAC23646E20A3B9C8C9C5E5 /* Debug */, - 7573AFBB8FE07DA5AFB18436786E8FEA /* Release */, + A749D5876D7A5F7345EF8CB1D4A84DB4 /* Debug */, + 1B3AA7133E63F587E2DB120F11726947 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 73698F5E307483982BBBFFD4EE9A21F0 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */ = { + 6512C9FAD9515EB626377761483824F7 /* Build configuration list for PBXNativeTarget "Pods-Tests-SPGDPRExampleAppUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 43E0808F6CD0054BEAFD077A49910C25 /* Debug */, - 62A42620E107148938527ABCD9D55649 /* Release */, + 13C4ED82E36E4FFBFF35A36A860EC86E /* Debug */, + 94E2DE007B13E34314C4F483FC5A5B3F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7373B65621B275793394FC1FDDECFC0C /* Build configuration list for PBXNativeTarget "FirebaseCore-FirebaseCore_Privacy" */ = { + 65C72768F72492115A09FE41F509527D /* Build configuration list for PBXNativeTarget "Pods-Tests-ConsentViewController_ExampleTests" */ = { isa = XCConfigurationList; buildConfigurations = ( - E6C672C97A34BF21E86CCE3B0318F11C /* Debug */, - 5FE628F8135C7922727A4F309A9AC921 /* Release */, + DAB2C323885FCF7C6A3EBC8849669535 /* Debug */, + 38E16C614AA64C7E5C862B9FF077053B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 79112FA6765628ED10F3B221D35A2037 /* Build configuration list for PBXNativeTarget "IQTextInputViewNotification-IQTextInputViewNotification" */ = { + 6F7AFC32EBFAEB95DDCEB9B866DB100E /* Build configuration list for PBXAggregateTarget "SPMobileCore-tvOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 793AC32F57CD65C0C24747E3516C1585 /* Debug */, - 179F02B068D3A949CE974A8A247F5C88 /* Release */, + 90502BAC0EB804327B0489818B0245CC /* Debug */, + 07157F33A60FBD608074F0D8411C2A6A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -14933,17 +11615,17 @@ 7CB09BE506701397B736AB7176B621EF /* Build configuration list for PBXNativeTarget "Pods-Examples-SourcepointFirebaseDemo" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0BCABF5071E93511CBE83B95C9D5D0D3 /* Debug */, - D64FD8B858B988C908880C81851CC20A /* Release */, + 0696AAEFEE54B3E0B744F1FBB0EB24FD /* Debug */, + 6B00BC59C5333FFFBAA35048A391A1C0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8244633BD3A6491EAF9FE7B565296A1D /* Build configuration list for PBXNativeTarget "IQTextView" */ = { + 808385E807CE29A17E23DDD13973FF6F /* Build configuration list for PBXAggregateTarget "SPMobileCore-iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 283F6E1737D71180AADC0E7185377560 /* Debug */, - 17B75AFE066BBCE403255328353E64F5 /* Release */, + C826F6EB19072CCE845D984B3E44C12B /* Debug */, + 5AC9B4E3B765C3F2DFEDD9AACC6CE51E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -14960,17 +11642,8 @@ 8632C49663D356F5D840C280D0D2378B /* Build configuration list for PBXNativeTarget "Pods-TVOSExampleApp" */ = { isa = XCConfigurationList; buildConfigurations = ( - F9B692B6D88048DCC6E0542E83CF1D54 /* Debug */, - B9DE5DEF00194D2BAC307903FD5A53EC /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 86C2086694666CC28CF9CE092DBA7C04 /* Build configuration list for PBXNativeTarget "IQKeyboardCore-IQKeyboardCore" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 06E89B66603BB3817B6DD4358A37B33C /* Debug */, - CB64E29ED8083B02079F26CC3D0F9FA8 /* Release */, + 9C347B016A77B8B74E5BFF6962BCE73E /* Debug */, + 7712266B69E48ED908722C347A046175 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -14984,24 +11657,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 898CA5EFF2E0150911B41009E0516A20 /* Build configuration list for PBXNativeTarget "FirebaseInstallations-FirebaseInstallations_Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DC5E60C1150300E0EE0E5982F5A328D0 /* Debug */, - A3C5A2F9180B3B316FFF334621174657 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 8A33DEFF72EBF072A7FD92464FADA790 /* Build configuration list for PBXNativeTarget "ConsentViewController-iOS-ConsentViewController" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - B5D4C2CBA4DED11444D4BF3C630AF3F8 /* Debug */, - 9E342C83BAB76D2784E2641DDE39F905 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 8AC46CF02836F734776D62A2C6470190 /* Build configuration list for PBXNativeTarget "CwlMachBadInstructionHandler" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -15014,17 +11669,8 @@ 961DC382BBC722E5FC6767CB7CEADAB7 /* Build configuration list for PBXNativeTarget "Pods-Tests-ObjC-ExampleAppUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( - A1CDF998F23DDEED098F74B9F254879A /* Debug */, - 8542BB23110353B53E23390610CC17DC /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 970202E1E901E13A711396780ADC71A2 /* Build configuration list for PBXNativeTarget "Pods-Tests-SourcePointMetaAppUITests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - EA9F5298B8B12CE84F42274709A73C7D /* Debug */, - 5D286BA7A3266AA5C3B4BA1320AFE4CC /* Release */, + CE1AC5665377E8733107F763F15FB305 /* Debug */, + 688B9C256E71B287923A9BE2E2C08B57 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -15032,8 +11678,8 @@ 97611EFAC8B8B3108E3DE58450DFEC61 /* Build configuration list for PBXNativeTarget "Pods-Tests-FirebaseTests-SourcepointFirebaseDemoUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 619903AF24531B57E8A1EB3205BE7F69 /* Debug */, - A0803C08A428BEE8A4C6A01286EA10DF /* Release */, + B75A1932F0AD091B59C782AFA7D3640D /* Debug */, + 39B96D195240BF1E4479625E40BBD942 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -15041,17 +11687,8 @@ 97AA0DB95E30F64CE54BC1BA27D47234 /* Build configuration list for PBXNativeTarget "Pods-Tests-NativeMessageExampleUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 347C7EB89DA42671D14EE3E09AC284D3 /* Debug */, - EF45C33CF88331E3800EC5AD8762C13F /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 99E30F74ACFEEF95AE57851BA6C5BF83 /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 47BABA8CBA7DCCCE40F2E2614217A764 /* Debug */, - 2524E26CAC2DB00DAB928076BF7EEE3E /* Release */, + 4AC0B3FB61EB17DE2B8AD3D1AE2E5307 /* Debug */, + C16A21875F0CD5C18F6124ECC86E6297 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -15059,8 +11696,8 @@ 9B451FD2D8514E4EF5346240450F5803 /* Build configuration list for PBXNativeTarget "Pods-Examples-NativeMessageExample" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7366331A9E9139D62C5D0BFDF92ACD57 /* Debug */, - 6AFDE725EECC687BB5377E4E36321BAE /* Release */, + 9C7073918E233E1B2BC129C318EDD319 /* Debug */, + 6289B2CFA66819DA52B79262B622E980 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -15074,15 +11711,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A15181D4FC3350625E622B5721FFEE60 /* Build configuration list for PBXNativeTarget "ConsentViewController-tvOS-ConsentViewController" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 839B7B41DFF63F5844CD9A1F56FDFC9C /* Debug */, - A766D22DD19730841ED43EDD4BFE2E1B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; A5C3E29C57F267050344FDDC39AA7BE0 /* Build configuration list for PBXNativeTarget "CwlCatchException" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -15104,17 +11732,8 @@ AC56FF05BC8C596E65C45E159EA59B15 /* Build configuration list for PBXNativeTarget "Pods-Examples-ConsentViewController_Example" */ = { isa = XCConfigurationList; buildConfigurations = ( - 06FB9A0D78EC4D64B2E01E913AFC4F3D /* Debug */, - 100D0542326720D8D5D2B5B301409A20 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - AD8520DF4CD939F3DE9594BB44260177 /* Build configuration list for PBXNativeTarget "GoogleUtilities-GoogleUtilities_Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 59BFADD7238EC69013FF74537A43BDED /* Debug */, - D993ADC32508C4F5BC5089E63E193331 /* Release */, + EAF6A21D21607AA0021B81AF9B395EA5 /* Debug */, + AD4CEA252139ABA87AE836FED43CF11F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -15128,29 +11747,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B30C652DAAE17BC97480108EB67250A0 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - FC4229FB7E572F0F9BBEA2E162011588 /* Debug */, - 181CE522775CEF3D1FB2C67A55AE0DD5 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - B6F32C337E6985623A8DF177B99BD6F5 /* Build configuration list for PBXNativeTarget "IQKeyboardToolbar" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 35D642F72B28E1932716FE739CC2899C /* Debug */, - 9D98A7C47587EA934248BF374EB526E9 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - B71B7EE10E636DCC4A2F895F82A93FBE /* Build configuration list for PBXNativeTarget "Pods-Examples-SourcePointMetaApp" */ = { + AEAA2D7D25147D02EC6E6F1008B2B0DE /* Build configuration list for PBXNativeTarget "Wormholy-Wormholy" */ = { isa = XCConfigurationList; buildConfigurations = ( - AE19982F15B79C39EDE47EC5BD56F27D /* Debug */, - CDA4DD10F8F0EE8AA826B1F302D9CFEB /* Release */, + B09099CEC45CB1231737D2E095D431AD /* Debug */, + 3DDCF6B140ABDC4970AECA42D4886894 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -15158,35 +11759,26 @@ C499BA1D48C2BFE777E5427B2A6909FF /* Build configuration list for PBXNativeTarget "Pods-Examples-AuthExample" */ = { isa = XCConfigurationList; buildConfigurations = ( - 59E6151C17FC8A951AAE628AD5144604 /* Debug */, - F09A6D7CC9773C049C6A39BA034D5C3A /* Release */, + 6A6AC83323D8A0C1083C5F84D4405B5E /* Debug */, + 6874E3C0A80D7178DE89B40B1CBA26FF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C96DD47E92A8BE265E306DE07C36E79B /* Build configuration list for PBXNativeTarget "IQKeyboardReturnManager" */ = { + CE1413B7499B3CAC11029C1037489630 /* Build configuration list for PBXNativeTarget "ConsentViewController-tvOS-ConsentViewController" */ = { isa = XCConfigurationList; buildConfigurations = ( - 482333FC5194F316A083B8BD78733009 /* Debug */, - C265306D8B7880C9F8C3230C6F0D8845 /* Release */, + B81794093AE0AF88721267B853C0A05F /* Debug */, + E97518788E7F87F62E6A2E5484FB0058 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D99C2FEB34DC0FFE7CC96B41DE3ECD52 /* Build configuration list for PBXNativeTarget "nanopb-nanopb_Privacy" */ = { + D336ACDFCBA28BD429A897CD53C75F51 /* Build configuration list for PBXNativeTarget "ConsentViewController-iOS-ConsentViewController" */ = { isa = XCConfigurationList; buildConfigurations = ( - A2437AF994C576A0BC09DEB6B358FDCD /* Debug */, - 00910A45DCE133C0463108831C3E38D7 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - DA3FFFE83F01DFB3BFB7CBD2A71DEBA9 /* Build configuration list for PBXNativeTarget "IQKeyboardCore" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 3B5D70C6658E836308BD6369B370DF86 /* Debug */, - CA4609710386965DE58C51431F3CC911 /* Release */, + 34D4E0502EFF1E4CBB927B41782A742F /* Debug */, + C1616BDA74970EC895DDE8A602FEB349 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -15200,20 +11792,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FA03436DBF5E9A5AB7D1C9927C448B72 /* Build configuration list for PBXNativeTarget "Pods-TVOSExampleAppUITests" */ = { + EEAB4264B94CDAD9F987D19B3516B567 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7379A3CCDEBFD11E812A0227DB8914B3 /* Debug */, - C42A7EA8BB1FB011AF2FAF2BA99D02FB /* Release */, + 557D664DB9E994DC3462709BF01EE2C6 /* Debug */, + B3AFC27BF58AB74BAA186A82CECF750B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FBF2F7551D15B3FBAB05A47254E9F869 /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */ = { + FA03436DBF5E9A5AB7D1C9927C448B72 /* Build configuration list for PBXNativeTarget "Pods-TVOSExampleAppUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9EC4CCBDCB5B5BF7C22E557CB35BF1B1 /* Debug */, - 43375729AABF400BDED4230A9C92CB27 /* Release */, + 8E9CAB1DE6BC67FBFB77FD69437D131E /* Debug */, + 8F9D90B96679594B643C790BB467BB29 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -15227,11 +11819,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FF39A522B38942441F5BDB892784EFD6 /* Build configuration list for PBXNativeTarget "IQKeyboardManagerSwift" */ = { + FF8DA67CFDEF66D8922CC53C84ACF64A /* Build configuration list for PBXNativeTarget "PromisesObjC-FBLPromises_Privacy" */ = { isa = XCConfigurationList; buildConfigurations = ( - 09576C7050EB76645356B9FBBDD8098C /* Debug */, - 4691590DDBE1EDA4AC53A2C5A0DF6637 /* Release */, + 7D7C067636DD0D07344CD1A93E4660FE /* Debug */, + C59711B4BB3B2165AC820E4F9149B930 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS.debug.xcconfig b/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS.debug.xcconfig index 088ad0f65..79171c529 100644 --- a/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS.debug.xcconfig +++ b/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS.debug.xcconfig @@ -5,6 +5,7 @@ DEFINES_MODULE = YES FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +OTHER_SWIFT_FLAGS[config=Debug] = $(inherited) -enable-testing PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} diff --git a/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS.release.xcconfig b/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS.release.xcconfig index 088ad0f65..79171c529 100644 --- a/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS.release.xcconfig +++ b/Example/Pods/Target Support Files/ConsentViewController-iOS/ConsentViewController-iOS.release.xcconfig @@ -5,6 +5,7 @@ DEFINES_MODULE = YES FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +OTHER_SWIFT_FLAGS[config=Debug] = $(inherited) -enable-testing PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} diff --git a/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS.debug.xcconfig b/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS.debug.xcconfig index bececaea8..dd4eb81c4 100644 --- a/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS.debug.xcconfig +++ b/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS.debug.xcconfig @@ -5,6 +5,7 @@ DEFINES_MODULE = YES FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +OTHER_SWIFT_FLAGS[config=Debug] = $(inherited) -enable-testing PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} diff --git a/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS.release.xcconfig b/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS.release.xcconfig index bececaea8..dd4eb81c4 100644 --- a/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS.release.xcconfig +++ b/Example/Pods/Target Support Files/ConsentViewController-tvOS/ConsentViewController-tvOS.release.xcconfig @@ -5,6 +5,7 @@ DEFINES_MODULE = YES FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +OTHER_SWIFT_FLAGS[config=Debug] = $(inherited) -enable-testing PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} diff --git a/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore-Info.plist b/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore-Info.plist deleted file mode 100644 index 0b89d7036..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0.5 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore-dummy.m b/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore-dummy.m deleted file mode 100644 index aee0796c4..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_IQKeyboardCore : NSObject -@end -@implementation PodsDummy_IQKeyboardCore -@end diff --git a/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore-prefix.pch b/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore-prefix.pch deleted file mode 100644 index beb2a2441..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore-prefix.pch +++ /dev/null @@ -1,12 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - diff --git a/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore-umbrella.h b/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore-umbrella.h deleted file mode 100644 index 64dd2f149..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double IQKeyboardCoreVersionNumber; -FOUNDATION_EXPORT const unsigned char IQKeyboardCoreVersionString[]; - diff --git a/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore.debug.xcconfig b/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore.debug.xcconfig deleted file mode 100644 index 23ee4d2dc..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore.debug.xcconfig +++ /dev/null @@ -1,13 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/IQKeyboardCore -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore.modulemap b/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore.modulemap deleted file mode 100644 index cca043fa0..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module IQKeyboardCore { - umbrella header "IQKeyboardCore-umbrella.h" - - export * - module * { export * } -} diff --git a/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore.release.xcconfig b/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore.release.xcconfig deleted file mode 100644 index 23ee4d2dc..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardCore/IQKeyboardCore.release.xcconfig +++ /dev/null @@ -1,13 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/IQKeyboardCore -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/IQKeyboardCore/ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist b/Example/Pods/Target Support Files/IQKeyboardCore/ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist deleted file mode 100644 index 3efc7e96a..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardCore/ResourceBundle-IQKeyboardCore-IQKeyboardCore-Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0.5 - CFBundleSignature - ???? - CFBundleVersion - 1 - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist b/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist deleted file mode 100644 index 6ecc7d656..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 8.0.1 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-dummy.m b/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-dummy.m deleted file mode 100644 index 7937f277d..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_IQKeyboardManagerSwift : NSObject -@end -@implementation PodsDummy_IQKeyboardManagerSwift -@end diff --git a/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-prefix.pch b/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-prefix.pch deleted file mode 100644 index beb2a2441..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-prefix.pch +++ /dev/null @@ -1,12 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - diff --git a/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-umbrella.h b/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-umbrella.h deleted file mode 100644 index e95b39874..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double IQKeyboardManagerSwiftVersionNumber; -FOUNDATION_EXPORT const unsigned char IQKeyboardManagerSwiftVersionString[]; - diff --git a/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.debug.xcconfig b/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.debug.xcconfig deleted file mode 100644 index c09e00a4c..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.debug.xcconfig +++ /dev/null @@ -1,15 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift -ENABLE_USER_SCRIPT_SANDBOXING = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextView" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/IQKeyboardManagerSwift -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap b/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap deleted file mode 100644 index 6d9b3439a..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module IQKeyboardManagerSwift { - umbrella header "IQKeyboardManagerSwift-umbrella.h" - - export * - module * { export * } -} diff --git a/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.release.xcconfig b/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.release.xcconfig deleted file mode 100644 index c09e00a4c..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.release.xcconfig +++ /dev/null @@ -1,15 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift -ENABLE_USER_SCRIPT_SANDBOXING = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextView" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/IQKeyboardManagerSwift -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/IQKeyboardManagerSwift/ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist b/Example/Pods/Target Support Files/IQKeyboardManagerSwift/ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist deleted file mode 100644 index cae52347a..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardManagerSwift/ResourceBundle-IQKeyboardManagerSwift-IQKeyboardManagerSwift-Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - BNDL - CFBundleShortVersionString - 8.0.1 - CFBundleSignature - ???? - CFBundleVersion - 1 - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification-Info.plist b/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification-Info.plist deleted file mode 100644 index fa6742c51..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0.3 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification-dummy.m b/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification-dummy.m deleted file mode 100644 index 8a83edeb8..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_IQKeyboardNotification : NSObject -@end -@implementation PodsDummy_IQKeyboardNotification -@end diff --git a/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification-prefix.pch b/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification-prefix.pch deleted file mode 100644 index beb2a2441..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification-prefix.pch +++ /dev/null @@ -1,12 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - diff --git a/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification-umbrella.h b/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification-umbrella.h deleted file mode 100644 index 16fb1ef07..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double IQKeyboardNotificationVersionNumber; -FOUNDATION_EXPORT const unsigned char IQKeyboardNotificationVersionString[]; - diff --git a/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification.debug.xcconfig b/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification.debug.xcconfig deleted file mode 100644 index 2c81516ee..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification.debug.xcconfig +++ /dev/null @@ -1,13 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/IQKeyboardNotification -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification.modulemap b/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification.modulemap deleted file mode 100644 index dc8f8c482..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module IQKeyboardNotification { - umbrella header "IQKeyboardNotification-umbrella.h" - - export * - module * { export * } -} diff --git a/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification.release.xcconfig b/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification.release.xcconfig deleted file mode 100644 index 2c81516ee..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardNotification/IQKeyboardNotification.release.xcconfig +++ /dev/null @@ -1,13 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/IQKeyboardNotification -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/IQKeyboardNotification/ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist b/Example/Pods/Target Support Files/IQKeyboardNotification/ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist deleted file mode 100644 index 66c8b45a0..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardNotification/ResourceBundle-IQKeyboardNotification-IQKeyboardNotification-Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0.3 - CFBundleSignature - ???? - CFBundleVersion - 1 - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-Info.plist b/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-Info.plist deleted file mode 100644 index b49db6d8f..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0.4 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-dummy.m b/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-dummy.m deleted file mode 100644 index c4b85c859..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_IQKeyboardReturnManager : NSObject -@end -@implementation PodsDummy_IQKeyboardReturnManager -@end diff --git a/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-prefix.pch b/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-prefix.pch deleted file mode 100644 index beb2a2441..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-prefix.pch +++ /dev/null @@ -1,12 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - diff --git a/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-umbrella.h b/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-umbrella.h deleted file mode 100644 index 5b8c1c920..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double IQKeyboardReturnManagerVersionNumber; -FOUNDATION_EXPORT const unsigned char IQKeyboardReturnManagerVersionString[]; - diff --git a/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.debug.xcconfig b/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.debug.xcconfig deleted file mode 100644 index 13cac265b..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.debug.xcconfig +++ /dev/null @@ -1,14 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/IQKeyboardReturnManager -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.modulemap b/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.modulemap deleted file mode 100644 index 5c7882e89..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module IQKeyboardReturnManager { - umbrella header "IQKeyboardReturnManager-umbrella.h" - - export * - module * { export * } -} diff --git a/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.release.xcconfig b/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.release.xcconfig deleted file mode 100644 index 13cac265b..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardReturnManager/IQKeyboardReturnManager.release.xcconfig +++ /dev/null @@ -1,14 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/IQKeyboardReturnManager -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/IQKeyboardReturnManager/ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist b/Example/Pods/Target Support Files/IQKeyboardReturnManager/ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist deleted file mode 100644 index 82617c3bb..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardReturnManager/ResourceBundle-IQKeyboardReturnManager-IQKeyboardReturnManager-Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0.4 - CFBundleSignature - ???? - CFBundleVersion - 1 - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-Info.plist b/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-Info.plist deleted file mode 100644 index de6ebe827..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.1.1 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-dummy.m b/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-dummy.m deleted file mode 100644 index 509d0667b..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_IQKeyboardToolbar : NSObject -@end -@implementation PodsDummy_IQKeyboardToolbar -@end diff --git a/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-prefix.pch b/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-prefix.pch deleted file mode 100644 index beb2a2441..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-prefix.pch +++ /dev/null @@ -1,12 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - diff --git a/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-umbrella.h b/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-umbrella.h deleted file mode 100644 index 9697a171c..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double IQKeyboardToolbarVersionNumber; -FOUNDATION_EXPORT const unsigned char IQKeyboardToolbarVersionString[]; - diff --git a/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.debug.xcconfig b/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.debug.xcconfig deleted file mode 100644 index 2e3f09ab1..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.debug.xcconfig +++ /dev/null @@ -1,14 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/IQKeyboardToolbar -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.modulemap b/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.modulemap deleted file mode 100644 index 01b12d530..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module IQKeyboardToolbar { - umbrella header "IQKeyboardToolbar-umbrella.h" - - export * - module * { export * } -} diff --git a/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.release.xcconfig b/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.release.xcconfig deleted file mode 100644 index 2e3f09ab1..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardToolbar/IQKeyboardToolbar.release.xcconfig +++ /dev/null @@ -1,14 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/IQKeyboardToolbar -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/IQKeyboardToolbar/ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist b/Example/Pods/Target Support Files/IQKeyboardToolbar/ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist deleted file mode 100644 index b72e7f273..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardToolbar/ResourceBundle-IQKeyboardToolbar-IQKeyboardToolbar-Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.1.1 - CFBundleSignature - ???? - CFBundleVersion - 1 - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-Info.plist b/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-Info.plist deleted file mode 100644 index 263f9c078..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.1.3 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-dummy.m b/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-dummy.m deleted file mode 100644 index 16aad41af..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_IQKeyboardToolbarManager : NSObject -@end -@implementation PodsDummy_IQKeyboardToolbarManager -@end diff --git a/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-prefix.pch b/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-prefix.pch deleted file mode 100644 index beb2a2441..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-prefix.pch +++ /dev/null @@ -1,12 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - diff --git a/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-umbrella.h b/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-umbrella.h deleted file mode 100644 index afc8d95f0..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double IQKeyboardToolbarManagerVersionNumber; -FOUNDATION_EXPORT const unsigned char IQKeyboardToolbarManagerVersionString[]; - diff --git a/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.debug.xcconfig b/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.debug.xcconfig deleted file mode 100644 index 4426aee7f..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.debug.xcconfig +++ /dev/null @@ -1,15 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager -ENABLE_USER_SCRIPT_SANDBOXING = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/IQKeyboardToolbarManager -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.modulemap b/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.modulemap deleted file mode 100644 index 3c4144064..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module IQKeyboardToolbarManager { - umbrella header "IQKeyboardToolbarManager-umbrella.h" - - export * - module * { export * } -} diff --git a/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.release.xcconfig b/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.release.xcconfig deleted file mode 100644 index 4426aee7f..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardToolbarManager/IQKeyboardToolbarManager.release.xcconfig +++ /dev/null @@ -1,15 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager -ENABLE_USER_SCRIPT_SANDBOXING = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/IQKeyboardToolbarManager -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/IQKeyboardToolbarManager/ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist b/Example/Pods/Target Support Files/IQKeyboardToolbarManager/ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist deleted file mode 100644 index 3bb9fa381..000000000 --- a/Example/Pods/Target Support Files/IQKeyboardToolbarManager/ResourceBundle-IQKeyboardToolbarManager-IQKeyboardToolbarManager-Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.1.3 - CFBundleSignature - ???? - CFBundleVersion - 1 - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-Info.plist b/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-Info.plist deleted file mode 100644 index 3fa062ac8..000000000 --- a/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0.8 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-dummy.m b/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-dummy.m deleted file mode 100644 index 128bc1606..000000000 --- a/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_IQTextInputViewNotification : NSObject -@end -@implementation PodsDummy_IQTextInputViewNotification -@end diff --git a/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-prefix.pch b/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-prefix.pch deleted file mode 100644 index beb2a2441..000000000 --- a/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-prefix.pch +++ /dev/null @@ -1,12 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - diff --git a/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-umbrella.h b/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-umbrella.h deleted file mode 100644 index 1752c3db7..000000000 --- a/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double IQTextInputViewNotificationVersionNumber; -FOUNDATION_EXPORT const unsigned char IQTextInputViewNotificationVersionString[]; - diff --git a/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.debug.xcconfig b/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.debug.xcconfig deleted file mode 100644 index df7ddde96..000000000 --- a/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.debug.xcconfig +++ /dev/null @@ -1,15 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification -ENABLE_USER_SCRIPT_SANDBOXING = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/IQTextInputViewNotification -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.modulemap b/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.modulemap deleted file mode 100644 index 12b0bca38..000000000 --- a/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module IQTextInputViewNotification { - umbrella header "IQTextInputViewNotification-umbrella.h" - - export * - module * { export * } -} diff --git a/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.release.xcconfig b/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.release.xcconfig deleted file mode 100644 index df7ddde96..000000000 --- a/Example/Pods/Target Support Files/IQTextInputViewNotification/IQTextInputViewNotification.release.xcconfig +++ /dev/null @@ -1,15 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification -ENABLE_USER_SCRIPT_SANDBOXING = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/IQTextInputViewNotification -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/IQTextInputViewNotification/ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist b/Example/Pods/Target Support Files/IQTextInputViewNotification/ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist deleted file mode 100644 index 6350d865e..000000000 --- a/Example/Pods/Target Support Files/IQTextInputViewNotification/ResourceBundle-IQTextInputViewNotification-IQTextInputViewNotification-Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0.8 - CFBundleSignature - ???? - CFBundleVersion - 1 - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/IQTextView/IQTextView-Info.plist b/Example/Pods/Target Support Files/IQTextView/IQTextView-Info.plist deleted file mode 100644 index 0b89d7036..000000000 --- a/Example/Pods/Target Support Files/IQTextView/IQTextView-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0.5 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/IQTextView/IQTextView-dummy.m b/Example/Pods/Target Support Files/IQTextView/IQTextView-dummy.m deleted file mode 100644 index 3ee207be4..000000000 --- a/Example/Pods/Target Support Files/IQTextView/IQTextView-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_IQTextView : NSObject -@end -@implementation PodsDummy_IQTextView -@end diff --git a/Example/Pods/Target Support Files/IQTextView/IQTextView-prefix.pch b/Example/Pods/Target Support Files/IQTextView/IQTextView-prefix.pch deleted file mode 100644 index beb2a2441..000000000 --- a/Example/Pods/Target Support Files/IQTextView/IQTextView-prefix.pch +++ /dev/null @@ -1,12 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - diff --git a/Example/Pods/Target Support Files/IQTextView/IQTextView-umbrella.h b/Example/Pods/Target Support Files/IQTextView/IQTextView-umbrella.h deleted file mode 100644 index 6aa14c28c..000000000 --- a/Example/Pods/Target Support Files/IQTextView/IQTextView-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double IQTextViewVersionNumber; -FOUNDATION_EXPORT const unsigned char IQTextViewVersionString[]; - diff --git a/Example/Pods/Target Support Files/IQTextView/IQTextView.debug.xcconfig b/Example/Pods/Target Support Files/IQTextView/IQTextView.debug.xcconfig deleted file mode 100644 index 13c3f85e5..000000000 --- a/Example/Pods/Target Support Files/IQTextView/IQTextView.debug.xcconfig +++ /dev/null @@ -1,15 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQTextView -ENABLE_USER_SCRIPT_SANDBOXING = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/IQTextView -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/IQTextView/IQTextView.modulemap b/Example/Pods/Target Support Files/IQTextView/IQTextView.modulemap deleted file mode 100644 index 1a2cd91f6..000000000 --- a/Example/Pods/Target Support Files/IQTextView/IQTextView.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module IQTextView { - umbrella header "IQTextView-umbrella.h" - - export * - module * { export * } -} diff --git a/Example/Pods/Target Support Files/IQTextView/IQTextView.release.xcconfig b/Example/Pods/Target Support Files/IQTextView/IQTextView.release.xcconfig deleted file mode 100644 index 13c3f85e5..000000000 --- a/Example/Pods/Target Support Files/IQTextView/IQTextView.release.xcconfig +++ /dev/null @@ -1,15 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQTextView -ENABLE_USER_SCRIPT_SANDBOXING = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/IQTextView -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/IQTextView/ResourceBundle-IQTextView-IQTextView-Info.plist b/Example/Pods/Target Support Files/IQTextView/ResourceBundle-IQTextView-IQTextView-Info.plist deleted file mode 100644 index 3efc7e96a..000000000 --- a/Example/Pods/Target Support Files/IQTextView/ResourceBundle-IQTextView-IQTextView-Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0.5 - CFBundleSignature - ???? - CFBundleVersion - 1 - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-Info.plist b/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-Info.plist deleted file mode 100644 index 19cf209d2..000000000 --- a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0.0 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-acknowledgements.markdown deleted file mode 100644 index 0a4384038..000000000 --- a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-acknowledgements.markdown +++ /dev/null @@ -1,300 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: - -## ConsentViewController - -Copyright (c) 2019 SourcePoint - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -## SPMobileCore - -MIT License - -Copyright (c) 2024 SourcePointUSA - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## SwiftLint - -The MIT License (MIT) - -Copyright (c) 2025 The SwiftLint Contributors. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## Wormholy - -The MIT License (MIT) - -Copyright (c) 2018 Paolo Musolino - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - - -## IQKeyboardCore - -MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## IQKeyboardManagerSwift - -MIT License - -Copyright (c) 2013-2023 Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## IQKeyboardNotification - -MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## IQKeyboardReturnManager - -MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## IQKeyboardToolbar - -MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## IQKeyboardToolbarManager - -MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## IQTextInputViewNotification - -Copyright (c) 2024 hackiftekhar - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -## IQTextView - -MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -Generated by CocoaPods - https://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-acknowledgements.plist deleted file mode 100644 index ff5d00153..000000000 --- a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-acknowledgements.plist +++ /dev/null @@ -1,398 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2019 SourcePoint <contact@sourcepoint.com> - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - License - MIT - Title - ConsentViewController - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2024 SourcePointUSA - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - APACHE 2 - Title - SPMobileCore - Type - PSGroupSpecifier - - - FooterText - The MIT License (MIT) - -Copyright (c) 2025 The SwiftLint Contributors. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - SwiftLint - Type - PSGroupSpecifier - - - FooterText - The MIT License (MIT) - -Copyright (c) 2018 Paolo Musolino - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - - License - MIT - Title - Wormholy - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - IQKeyboardCore - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2013-2023 Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - IQKeyboardManagerSwift - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - IQKeyboardNotification - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - IQKeyboardReturnManager - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - IQKeyboardToolbar - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - IQKeyboardToolbarManager - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2024 hackiftekhar <ideviftekhar@gmail.com> - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - License - MIT - Title - IQTextInputViewNotification - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2024 Mohd Iftekhar Qurashi - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - MIT - Title - IQTextView - Type - PSGroupSpecifier - - - FooterText - Generated by CocoaPods - https://cocoapods.org - Title - - Type - PSGroupSpecifier - - - StringsTable - Acknowledgements - Title - Acknowledgements - - diff --git a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-dummy.m b/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-dummy.m deleted file mode 100644 index 2d87cef75..000000000 --- a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_Examples_SourcePointMetaApp : NSObject -@end -@implementation PodsDummy_Pods_Examples_SourcePointMetaApp -@end diff --git a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-Debug-input-files.xcfilelist b/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-Debug-input-files.xcfilelist deleted file mode 100644 index f3351a891..000000000 --- a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-Debug-input-files.xcfilelist +++ /dev/null @@ -1,16 +0,0 @@ -${PODS_ROOT}/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources.sh -${PODS_ROOT}/../../ConsentViewController/Assets/images/Barcode.png -${PODS_ROOT}/../../ConsentViewController/Assets/images/SP_Icon.png -${PODS_ROOT}/../../ConsentViewController/Assets/javascript/jest.config.json -${PODS_ROOT}/../../ConsentViewController/Assets/javascript/SPJSReceiver.js -${PODS_ROOT}/../../ConsentViewController/Assets/javascript/SPJSReceiver.spec.js -${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.bundle -${PODS_CONFIGURATION_BUILD_DIR}/Wormholy/Wormholy.bundle -${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore/IQKeyboardCore.bundle -${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.bundle -${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification/IQKeyboardNotification.bundle -${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager/IQKeyboardReturnManager.bundle -${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar/IQKeyboardToolbar.bundle -${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager/IQKeyboardToolbarManager.bundle -${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification/IQTextInputViewNotification.bundle -${PODS_CONFIGURATION_BUILD_DIR}/IQTextView/IQTextView.bundle \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-Debug-output-files.xcfilelist b/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-Debug-output-files.xcfilelist deleted file mode 100644 index afa0ca040..000000000 --- a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-Debug-output-files.xcfilelist +++ /dev/null @@ -1,15 +0,0 @@ -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Barcode.png -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SP_Icon.png -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/jest.config.json -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SPJSReceiver.js -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SPJSReceiver.spec.js -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ConsentViewController.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Wormholy.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQKeyboardCore.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQKeyboardManagerSwift.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQKeyboardNotification.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQKeyboardReturnManager.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQKeyboardToolbar.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQKeyboardToolbarManager.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQTextInputViewNotification.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQTextView.bundle \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-Release-input-files.xcfilelist b/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-Release-input-files.xcfilelist deleted file mode 100644 index f3351a891..000000000 --- a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-Release-input-files.xcfilelist +++ /dev/null @@ -1,16 +0,0 @@ -${PODS_ROOT}/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources.sh -${PODS_ROOT}/../../ConsentViewController/Assets/images/Barcode.png -${PODS_ROOT}/../../ConsentViewController/Assets/images/SP_Icon.png -${PODS_ROOT}/../../ConsentViewController/Assets/javascript/jest.config.json -${PODS_ROOT}/../../ConsentViewController/Assets/javascript/SPJSReceiver.js -${PODS_ROOT}/../../ConsentViewController/Assets/javascript/SPJSReceiver.spec.js -${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.bundle -${PODS_CONFIGURATION_BUILD_DIR}/Wormholy/Wormholy.bundle -${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore/IQKeyboardCore.bundle -${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.bundle -${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification/IQKeyboardNotification.bundle -${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager/IQKeyboardReturnManager.bundle -${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar/IQKeyboardToolbar.bundle -${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager/IQKeyboardToolbarManager.bundle -${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification/IQTextInputViewNotification.bundle -${PODS_CONFIGURATION_BUILD_DIR}/IQTextView/IQTextView.bundle \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-Release-output-files.xcfilelist b/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-Release-output-files.xcfilelist deleted file mode 100644 index afa0ca040..000000000 --- a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources-Release-output-files.xcfilelist +++ /dev/null @@ -1,15 +0,0 @@ -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Barcode.png -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SP_Icon.png -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/jest.config.json -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SPJSReceiver.js -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SPJSReceiver.spec.js -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ConsentViewController.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Wormholy.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQKeyboardCore.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQKeyboardManagerSwift.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQKeyboardNotification.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQKeyboardReturnManager.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQKeyboardToolbar.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQKeyboardToolbarManager.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQTextInputViewNotification.bundle -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQTextView.bundle \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources.sh b/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources.sh deleted file mode 100755 index f18dc4a8e..000000000 --- a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-resources.sh +++ /dev/null @@ -1,157 +0,0 @@ -#!/bin/sh -set -e -set -u -set -o pipefail - -function on_error { - echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" -} -trap 'on_error $LINENO' ERR - -if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then - # If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy - # resources to, so exit 0 (signalling the script phase was successful). - exit 0 -fi - -mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - -RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt -> "$RESOURCES_TO_COPY" - -XCASSET_FILES=() - -# This protects against multiple targets copying the same framework dependency at the same time. The solution -# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html -RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") - -case "${TARGETED_DEVICE_FAMILY:-}" in - 1,2) - TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" - ;; - 1) - TARGET_DEVICE_ARGS="--target-device iphone" - ;; - 2) - TARGET_DEVICE_ARGS="--target-device ipad" - ;; - 3) - TARGET_DEVICE_ARGS="--target-device tv" - ;; - 4) - TARGET_DEVICE_ARGS="--target-device watch" - ;; - *) - TARGET_DEVICE_ARGS="--target-device mac" - ;; -esac - -install_resource() -{ - if [[ "$1" = /* ]] ; then - RESOURCE_PATH="$1" - else - RESOURCE_PATH="${PODS_ROOT}/$1" - fi - if [[ ! -e "$RESOURCE_PATH" ]] ; then - cat << EOM -error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. -EOM - exit 1 - fi - case $RESOURCE_PATH in - *.storyboard) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true - ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} - ;; - *.xib) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true - ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} - ;; - *.framework) - echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true - mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true - rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - ;; - *.xcdatamodel) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true - xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" - ;; - *.xcdatamodeld) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true - xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" - ;; - *.xcmappingmodel) - echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true - xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" - ;; - *.xcassets) - ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" - XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") - ;; - *) - echo "$RESOURCE_PATH" || true - echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" - ;; - esac -} -if [[ "$CONFIGURATION" == "Debug" ]]; then - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/images/Barcode.png" - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/images/SP_Icon.png" - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/javascript/jest.config.json" - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/javascript/SPJSReceiver.js" - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/javascript/SPJSReceiver.spec.js" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/Wormholy/Wormholy.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore/IQKeyboardCore.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification/IQKeyboardNotification.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager/IQKeyboardReturnManager.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar/IQKeyboardToolbar.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager/IQKeyboardToolbarManager.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification/IQTextInputViewNotification.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/IQTextView/IQTextView.bundle" -fi -if [[ "$CONFIGURATION" == "Release" ]]; then - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/images/Barcode.png" - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/images/SP_Icon.png" - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/javascript/jest.config.json" - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/javascript/SPJSReceiver.js" - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/javascript/SPJSReceiver.spec.js" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/Wormholy/Wormholy.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore/IQKeyboardCore.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification/IQKeyboardNotification.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager/IQKeyboardReturnManager.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar/IQKeyboardToolbar.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager/IQKeyboardToolbarManager.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification/IQTextInputViewNotification.bundle" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/IQTextView/IQTextView.bundle" -fi - -mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then - mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -fi -rm -f "$RESOURCES_TO_COPY" - -if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ] -then - # Find all other xcassets (this unfortunately includes those of path pods and other targets). - OTHER_XCASSETS=$(find -L "$PWD" -iname "*.xcassets" -type d) - while read line; do - if [[ $line != "${PODS_ROOT}*" ]]; then - XCASSET_FILES+=("$line") - fi - done <<<"$OTHER_XCASSETS" - - if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then - printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - else - printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_TEMP_DIR}/assetcatalog_generated_info_cocoapods.plist" - fi -fi diff --git a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-umbrella.h b/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-umbrella.h deleted file mode 100644 index 31a7e1c6d..000000000 --- a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double Pods_Examples_SourcePointMetaAppVersionNumber; -FOUNDATION_EXPORT const unsigned char Pods_Examples_SourcePointMetaAppVersionString[]; - diff --git a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.debug.xcconfig b/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.debug.xcconfig deleted file mode 100644 index b94518ec9..000000000 --- a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.debug.xcconfig +++ /dev/null @@ -1,16 +0,0 @@ -ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -ENABLE_USER_SCRIPT_SANDBOXING = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextView" "${PODS_CONFIGURATION_BUILD_DIR}/Wormholy" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore/IQKeyboardCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification/IQKeyboardNotification.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager/IQKeyboardReturnManager.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar/IQKeyboardToolbar.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager/IQKeyboardToolbarManager.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification/IQTextInputViewNotification.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextView/IQTextView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Wormholy/Wormholy.framework/Headers" -LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "Combine" -framework "ConsentViewController" -framework "Foundation" -framework "IQKeyboardCore" -framework "IQKeyboardManagerSwift" -framework "IQKeyboardNotification" -framework "IQKeyboardReturnManager" -framework "IQKeyboardToolbar" -framework "IQKeyboardToolbarManager" -framework "IQTextInputViewNotification" -framework "IQTextView" -framework "SPMobileCore" -framework "UIKit" -framework "Wormholy" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftLint" "-F${PODS_CONFIGURATION_BUILD_DIR}/Wormholy" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQTextView" -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_PODFILE_DIR_PATH = ${SRCROOT}/. -PODS_ROOT = ${SRCROOT}/Pods -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.modulemap b/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.modulemap deleted file mode 100644 index 1b37a0fe1..000000000 --- a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Pods_Examples_SourcePointMetaApp { - umbrella header "Pods-Examples-SourcePointMetaApp-umbrella.h" - - export * - module * { export * } -} diff --git a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.release.xcconfig b/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.release.xcconfig deleted file mode 100644 index b94518ec9..000000000 --- a/Example/Pods/Target Support Files/Pods-Examples-SourcePointMetaApp/Pods-Examples-SourcePointMetaApp.release.xcconfig +++ /dev/null @@ -1,16 +0,0 @@ -ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -ENABLE_USER_SCRIPT_SANDBOXING = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextView" "${PODS_CONFIGURATION_BUILD_DIR}/Wormholy" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore/IQKeyboardCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification/IQKeyboardNotification.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager/IQKeyboardReturnManager.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar/IQKeyboardToolbar.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager/IQKeyboardToolbarManager.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification/IQTextInputViewNotification.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/IQTextView/IQTextView.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Wormholy/Wormholy.framework/Headers" -LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "Combine" -framework "ConsentViewController" -framework "Foundation" -framework "IQKeyboardCore" -framework "IQKeyboardManagerSwift" -framework "IQKeyboardNotification" -framework "IQKeyboardReturnManager" -framework "IQKeyboardToolbar" -framework "IQKeyboardToolbarManager" -framework "IQTextInputViewNotification" -framework "IQTextView" -framework "SPMobileCore" -framework "UIKit" -framework "Wormholy" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SwiftLint" "-F${PODS_CONFIGURATION_BUILD_DIR}/Wormholy" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardCore" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardNotification" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardReturnManager" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbar" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardToolbarManager" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQTextInputViewNotification" "-F${PODS_CONFIGURATION_BUILD_DIR}/IQTextView" -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_PODFILE_DIR_PATH = ${SRCROOT}/. -PODS_ROOT = ${SRCROOT}/Pods -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-Info.plist b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-Info.plist deleted file mode 100644 index 19cf209d2..000000000 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0.0 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-acknowledgements.markdown deleted file mode 100644 index d4d1c63f5..000000000 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-acknowledgements.markdown +++ /dev/null @@ -1,556 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: - -## ConsentViewController - -Copyright (c) 2019 SourcePoint - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -## SPMobileCore - -MIT License - -Copyright (c) 2024 SourcePointUSA - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -## CwlCatchException - -ISC License - -Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - -## CwlCatchExceptionSupport - -ISC License - -Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - -## CwlMachBadInstructionHandler - -ISC License - -Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - -## CwlPosixPreconditionTesting - -ISC License - -Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - -## CwlPreconditionTesting - -ISC License - -Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - -## Nimble - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2016 Quick Team - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -## Quick - -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2014, Quick Team - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -Generated by CocoaPods - https://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-acknowledgements.plist deleted file mode 100644 index 8669b8e7c..000000000 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-acknowledgements.plist +++ /dev/null @@ -1,636 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2019 SourcePoint <contact@sourcepoint.com> - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - License - MIT - Title - ConsentViewController - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2024 SourcePointUSA - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - License - APACHE 2 - Title - SPMobileCore - Type - PSGroupSpecifier - - - FooterText - ISC License - -Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - License - ISC - Title - CwlCatchException - Type - PSGroupSpecifier - - - FooterText - ISC License - -Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - License - ISC - Title - CwlCatchExceptionSupport - Type - PSGroupSpecifier - - - FooterText - ISC License - -Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - License - ISC - Title - CwlMachBadInstructionHandler - Type - PSGroupSpecifier - - - FooterText - ISC License - -Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - License - ISC - Title - CwlPosixPreconditionTesting - Type - PSGroupSpecifier - - - FooterText - ISC License - -Copyright © 2017 Matt Gallagher ( http://cocoawithlove.com ). All rights reserved. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - License - ISC - Title - CwlPreconditionTesting - Type - PSGroupSpecifier - - - FooterText - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2016 Quick Team - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache 2.0 - Title - Nimble - Type - PSGroupSpecifier - - - FooterText - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2014, Quick Team - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache 2.0 - Title - Quick - Type - PSGroupSpecifier - - - FooterText - Generated by CocoaPods - https://cocoapods.org - Title - - Type - PSGroupSpecifier - - - StringsTable - Acknowledgements - Title - Acknowledgements - - diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-dummy.m b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-dummy.m deleted file mode 100644 index 9aa7c796b..000000000 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_Tests_SourcePointMetaAppUITests : NSObject -@end -@implementation PodsDummy_Pods_Tests_SourcePointMetaAppUITests -@end diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-Debug-input-files.xcfilelist b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-Debug-input-files.xcfilelist deleted file mode 100644 index c8a7be8af..000000000 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-Debug-input-files.xcfilelist +++ /dev/null @@ -1,7 +0,0 @@ -${PODS_ROOT}/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources.sh -${PODS_ROOT}/../../ConsentViewController/Assets/images/Barcode.png -${PODS_ROOT}/../../ConsentViewController/Assets/images/SP_Icon.png -${PODS_ROOT}/../../ConsentViewController/Assets/javascript/jest.config.json -${PODS_ROOT}/../../ConsentViewController/Assets/javascript/SPJSReceiver.js -${PODS_ROOT}/../../ConsentViewController/Assets/javascript/SPJSReceiver.spec.js -${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.bundle \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-Debug-output-files.xcfilelist b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-Debug-output-files.xcfilelist deleted file mode 100644 index 7da0cb71a..000000000 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-Debug-output-files.xcfilelist +++ /dev/null @@ -1,6 +0,0 @@ -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Barcode.png -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SP_Icon.png -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/jest.config.json -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SPJSReceiver.js -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SPJSReceiver.spec.js -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ConsentViewController.bundle \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-Release-input-files.xcfilelist b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-Release-input-files.xcfilelist deleted file mode 100644 index c8a7be8af..000000000 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-Release-input-files.xcfilelist +++ /dev/null @@ -1,7 +0,0 @@ -${PODS_ROOT}/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources.sh -${PODS_ROOT}/../../ConsentViewController/Assets/images/Barcode.png -${PODS_ROOT}/../../ConsentViewController/Assets/images/SP_Icon.png -${PODS_ROOT}/../../ConsentViewController/Assets/javascript/jest.config.json -${PODS_ROOT}/../../ConsentViewController/Assets/javascript/SPJSReceiver.js -${PODS_ROOT}/../../ConsentViewController/Assets/javascript/SPJSReceiver.spec.js -${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.bundle \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-Release-output-files.xcfilelist b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-Release-output-files.xcfilelist deleted file mode 100644 index 7da0cb71a..000000000 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources-Release-output-files.xcfilelist +++ /dev/null @@ -1,6 +0,0 @@ -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Barcode.png -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SP_Icon.png -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/jest.config.json -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SPJSReceiver.js -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SPJSReceiver.spec.js -${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ConsentViewController.bundle \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources.sh b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources.sh deleted file mode 100755 index 9ea46e637..000000000 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-resources.sh +++ /dev/null @@ -1,139 +0,0 @@ -#!/bin/sh -set -e -set -u -set -o pipefail - -function on_error { - echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" -} -trap 'on_error $LINENO' ERR - -if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then - # If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy - # resources to, so exit 0 (signalling the script phase was successful). - exit 0 -fi - -mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - -RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt -> "$RESOURCES_TO_COPY" - -XCASSET_FILES=() - -# This protects against multiple targets copying the same framework dependency at the same time. The solution -# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html -RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") - -case "${TARGETED_DEVICE_FAMILY:-}" in - 1,2) - TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" - ;; - 1) - TARGET_DEVICE_ARGS="--target-device iphone" - ;; - 2) - TARGET_DEVICE_ARGS="--target-device ipad" - ;; - 3) - TARGET_DEVICE_ARGS="--target-device tv" - ;; - 4) - TARGET_DEVICE_ARGS="--target-device watch" - ;; - *) - TARGET_DEVICE_ARGS="--target-device mac" - ;; -esac - -install_resource() -{ - if [[ "$1" = /* ]] ; then - RESOURCE_PATH="$1" - else - RESOURCE_PATH="${PODS_ROOT}/$1" - fi - if [[ ! -e "$RESOURCE_PATH" ]] ; then - cat << EOM -error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. -EOM - exit 1 - fi - case $RESOURCE_PATH in - *.storyboard) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true - ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} - ;; - *.xib) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true - ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} - ;; - *.framework) - echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true - mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true - rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - ;; - *.xcdatamodel) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true - xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" - ;; - *.xcdatamodeld) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true - xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" - ;; - *.xcmappingmodel) - echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true - xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" - ;; - *.xcassets) - ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" - XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") - ;; - *) - echo "$RESOURCE_PATH" || true - echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" - ;; - esac -} -if [[ "$CONFIGURATION" == "Debug" ]]; then - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/images/Barcode.png" - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/images/SP_Icon.png" - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/javascript/jest.config.json" - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/javascript/SPJSReceiver.js" - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/javascript/SPJSReceiver.spec.js" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.bundle" -fi -if [[ "$CONFIGURATION" == "Release" ]]; then - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/images/Barcode.png" - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/images/SP_Icon.png" - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/javascript/jest.config.json" - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/javascript/SPJSReceiver.js" - install_resource "${PODS_ROOT}/../../ConsentViewController/Assets/javascript/SPJSReceiver.spec.js" - install_resource "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.bundle" -fi - -mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then - mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -fi -rm -f "$RESOURCES_TO_COPY" - -if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ] -then - # Find all other xcassets (this unfortunately includes those of path pods and other targets). - OTHER_XCASSETS=$(find -L "$PWD" -iname "*.xcassets" -type d) - while read line; do - if [[ $line != "${PODS_ROOT}*" ]]; then - XCASSET_FILES+=("$line") - fi - done <<<"$OTHER_XCASSETS" - - if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then - printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - else - printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_TEMP_DIR}/assetcatalog_generated_info_cocoapods.plist" - fi -fi diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-umbrella.h b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-umbrella.h deleted file mode 100644 index ecfbe1a85..000000000 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double Pods_Tests_SourcePointMetaAppUITestsVersionNumber; -FOUNDATION_EXPORT const unsigned char Pods_Tests_SourcePointMetaAppUITestsVersionString[]; - diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig deleted file mode 100644 index 005321f98..000000000 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.debug.xcconfig +++ /dev/null @@ -1,15 +0,0 @@ -ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" -LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_PODFILE_DIR_PATH = ${SRCROOT}/. -PODS_ROOT = ${SRCROOT}/Pods -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.modulemap b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.modulemap deleted file mode 100644 index 1fdaa052b..000000000 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Pods_Tests_SourcePointMetaAppUITests { - umbrella header "Pods-Tests-SourcePointMetaAppUITests-umbrella.h" - - export * - module * { export * } -} diff --git a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.release.xcconfig b/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.release.xcconfig deleted file mode 100644 index 005321f98..000000000 --- a/Example/Pods/Target Support Files/Pods-Tests-SourcePointMetaAppUITests/Pods-Tests-SourcePointMetaAppUITests.release.xcconfig +++ /dev/null @@ -1,15 +0,0 @@ -ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" "${PODS_ROOT}/SPMobileCore" "${PODS_XCFRAMEWORKS_BUILD_DIR}/SPMobileCore" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS/ConsentViewController.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException/CwlCatchException.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport/CwlCatchExceptionSupport.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting/CwlPosixPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting/CwlPreconditionTesting.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS/Nimble.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS/Quick.framework/Headers" -LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "ConsentViewController" -framework "CwlCatchException" -framework "CwlCatchExceptionSupport" -framework "CwlMachBadInstructionHandler" -framework "CwlPosixPreconditionTesting" -framework "CwlPreconditionTesting" -framework "Nimble" -framework "Quick" -framework "SPMobileCore" -framework "XCTest" -weak_framework "XCTest" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/ConsentViewController-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/SPMobileCore-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchException" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlCatchExceptionSupport" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlMachBadInstructionHandler" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPosixPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/CwlPreconditionTesting" "-F${PODS_CONFIGURATION_BUILD_DIR}/Nimble-iOS" "-F${PODS_CONFIGURATION_BUILD_DIR}/Quick-iOS" -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_PODFILE_DIR_PATH = ${SRCROOT}/. -PODS_ROOT = ${SRCROOT}/Pods -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Example/SPGDPRExampleAppUITests/Helpers/CustomMatchers.swift b/Example/SPGDPRExampleAppUITests/Helpers/CustomMatchers.swift index 4da7cfe8c..8abbb4816 100644 --- a/Example/SPGDPRExampleAppUITests/Helpers/CustomMatchers.swift +++ b/Example/SPGDPRExampleAppUITests/Helpers/CustomMatchers.swift @@ -10,8 +10,6 @@ import Nimble import Quick import XCTest -public typealias Predicate = Nimble.Predicate - extension TimeInterval { init(dispatchTimeInterval: DispatchTimeInterval) { switch dispatchTimeInterval { @@ -36,72 +34,70 @@ extension TimeInterval { } /// A matcher that checks if a `XCUIElement` contains the given text -public func containText(_ text: String) -> Predicate { - Predicate.simple("contain text") { actualExpression in +public func containText(_ text: String) -> Matcher { + Matcher.simple("contain text") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.label.contains(text)) + return MatcherStatus(bool: actual.label.contains(text)) } } /// A Nimble matcher that succeeds when an XCUIElement shows up after /// a certain amount of time. 10 seconds by default -public func showUp() -> Predicate { - Predicate.simple("show up") { actualExpression in +public func showUp() -> Matcher { + Matcher.simple("show up") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.waitForExistence(timeout: TimeInterval(dispatchTimeInterval: Nimble.AsyncDefaults.timeout) - )) + return MatcherStatus(bool: actual.waitForExistence(timeout: Nimble.PollingDefaults.timeout.timeInterval)) } } /// A Nimble matcher that succeeds when an XCUIElement shows up after /// a certain amount of time. -public func showUp(in timeout: TimeInterval) -> Predicate { - Predicate.simple("show up") { actualExpression in +public func showUp(in timeout: TimeInterval) -> Matcher { + Matcher.simple("show up") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.waitForExistence(timeout: timeout)) + return MatcherStatus(bool: actual.waitForExistence(timeout: timeout)) } } /// A Nimble matcher that succeeds when an XCUIElement no longer exists. Due to its async nature, it should /// be used together with `.toEventually`. -public func disappear() -> Predicate { - Predicate.simple("disappear") { actualExpression in +public func disappear() -> Matcher { + Matcher.simple("disappear") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } QuickSpec.current.expectation(for: NSPredicate(format: "exists == FALSE"), evaluatedWith: actual) - QuickSpec.current.waitForExpectations(timeout: TimeInterval(dispatchTimeInterval: Nimble.AsyncDefaults.timeout) - ) - return PredicateStatus(bool: !actual.exists) + QuickSpec.current.waitForExpectations(timeout: Nimble.PollingDefaults.timeout.timeInterval) + return MatcherStatus(bool: !actual.exists) } } /// A Nimble matcher that succeeds when an XCUIElement is enable -public func beEnabled() -> Predicate { - Predicate.simple("beEnabled") { actualExpression in +public func beEnabled() -> Matcher { + Matcher.simple("beEnabled") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.isEnabled) + return MatcherStatus(bool: actual.isEnabled) } } /// A Nimble matcher that succeeds when an XCUIElement is disabled -public func beDisabled() -> Predicate { - Predicate.simple("beDisabled") { actualExpression in +public func beDisabled() -> Matcher { + Matcher.simple("beDisabled") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: !actual.isEnabled) + return MatcherStatus(bool: !actual.isEnabled) } } /// A Nimble matcher that succeeds when an XCUIElement is disabled -public func beToggledOn() -> Predicate { - Predicate.simple("beToggledOn") { actualExpression in +public func beToggledOn() -> Matcher { + Matcher.simple("beToggledOn") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.value as? String == "1") + return MatcherStatus(bool: actual.value as? String == "1") } } /// A Nimble matcher that succeeds when an XCUIElement is disabled -public func beToggledOff() -> Predicate { - Predicate.simple("beToggledOff") { actualExpression in +public func beToggledOff() -> Matcher { + Matcher.simple("beToggledOff") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.value as? String != "1") + return MatcherStatus(bool: actual.value as? String != "1") } } diff --git a/Example/SPGDPRExampleAppUITests/SPGDPRExampleAppUITests.swift b/Example/SPGDPRExampleAppUITests/SPGDPRExampleAppUITests.swift index b3a901903..bcd667ed0 100644 --- a/Example/SPGDPRExampleAppUITests/SPGDPRExampleAppUITests.swift +++ b/Example/SPGDPRExampleAppUITests/SPGDPRExampleAppUITests.swift @@ -14,128 +14,123 @@ import Quick import XCTest class SPGDPRExampleAppUITests: QuickSpec { - var app: ExampleApp! + static var app: ExampleApp! - func acceptAtt() { - expect(self.app.attPrePrompt.okButton).toEventually(showUp()) + static func acceptAtt() { + expect(app.attPrePrompt.okButton).toEventually(showUp()) app.attPrePrompt.okButton.tap() - expect(self.app.attPrePrompt.attAlertAllowButton).toEventually(showUp()) + expect(app.attPrePrompt.attAlertAllowButton).toEventually(showUp()) app.attPrePrompt.attAlertAllowButton.tap() } - func acceptAll(onMessage message: FirstLayerMessage) { + static func acceptAll(onMessage message: FirstLayerMessage) { expect(message.messageTitle).toEventually(showUp()) message.acceptButton.tap() } - func showGDPRPMViaFirstLayerMessage() { - expect(self.app.gdprMessage.messageTitle).toEventually(showUp()) - self.app.gdprMessage.showOptionsButton.tap() - expect(self.app.gdprPM.messageTitle).toEventually(showUp()) + static func showGDPRPMViaFirstLayerMessage() { + expect(app.gdprMessage.messageTitle).toEventually(showUp()) + app.gdprMessage.showOptionsButton.tap() + expect(app.gdprPM.messageTitle).toEventually(showUp()) } // We are unable to reset ATT permissions on iOS < 15 so we need to make sure // the ATT expectations run only once per test suite. - func runAttScenario() { - if #available(iOS 15.0, *) { + static func runAttScenario() { + if app.shouldRunAttScenario { acceptAtt() - } else if app.shouldRunAttScenario { - if #available(iOS 14, *) { - acceptAtt() - } } } - override func spec() { + override class func spec() { beforeSuite { - self.continueAfterFailure = false - self.app = ExampleApp() - Nimble.AsyncDefaults.timeout = .seconds(30) - Nimble.AsyncDefaults.pollInterval = .milliseconds(300) + app = ExampleApp() + Nimble.PollingDefaults.timeout = .seconds(30) + Nimble.PollingDefaults.pollInterval = .milliseconds(300) } afterSuite { - Nimble.AsyncDefaults.timeout = .seconds(1) - Nimble.AsyncDefaults.pollInterval = .milliseconds(10) + Nimble.PollingDefaults.timeout = .seconds(1) + Nimble.PollingDefaults.pollInterval = .milliseconds(10) } - fit("Accept all through 1st layer messages") { - self.app.relaunch(clean: true, resetAtt: true, args: ["ccpa": false]) - self.runAttScenario() - self.acceptAll(onMessage: self.app.gdprMessage) -// self.acceptAll(onMessage: self.app.ccpaMessage) - self.acceptAll(onMessage: self.app.usnatMessage) - self.acceptAll(onMessage: self.app.globalCmpMessage) - self.acceptAll(onMessage: self.app.preferencesMessage) - expect(self.app.gdprPrivacyManagerButton).toEventually(showUp()) - expect(self.app.sdkStatusLabel).toEventually(containText("Finished")) - self.app.relaunch() - expect(self.app.sdkStatusLabel).toEventually(containText("Finished")) + it("Accept all through 1st layer messages") { + app.relaunch(clean: true, resetAtt: true, args: ["ccpa": false]) + runAttScenario() + acceptAll(onMessage: app.gdprMessage) +// acceptAll(onMessage: app.ccpaMessage) + acceptAll(onMessage: app.usnatMessage) + acceptAll(onMessage: app.globalCmpMessage) + acceptAll(onMessage: app.preferencesMessage) + expect(app.gdprPrivacyManagerButton).toEventually(showUp()) + expect(app.sdkStatusLabel).toEventually(containText("Finished")) + app.relaunch() + expect(app.sdkStatusLabel).toEventually(containText("Finished")) } it("Accepting All toggles all toggles on PM") { - self.app.relaunch(clean: true, resetAtt: false, args: ["ccpa": false, "att": false, "usnat": false, "preferences": false, "globalcmp": false]) - self.acceptAll(onMessage: self.app.gdprMessage) - - expect(self.app.gdprPrivacyManagerButton).toEventually(showUp()) - expect(self.app.sdkStatusLabel).toEventually(containText("Finished")) - self.app.gdprPrivacyManagerButton.tap() - expect(self.app.gdprPM).toEventually(showUp()) - expect(self.app.gdprPM.purposeToggles).toEventually(allPass(beToggledOn())) - - self.app.gdprPM.rejectAllButton.tap() - expect(self.app.gdprPrivacyManagerButton).toEventually(showUp()) - expect(self.app.sdkStatusLabel).toEventually(containText("Finished")) - self.app.gdprPrivacyManagerButton.tap() - expect(self.app.gdprPM).toEventually(showUp()) - expect(self.app.gdprPM.purposeToggles).toEventually(allPass(beToggledOff())) + app.relaunch(clean: true, resetAtt: false, args: ["ccpa": false, "att": false, "usnat": false, "preferences": false, "globalcmp": false]) + acceptAll(onMessage: app.gdprMessage) + + expect(app.gdprPrivacyManagerButton).toEventually(showUp()) + expect(app.sdkStatusLabel).toEventually(containText("Finished")) + app.gdprPrivacyManagerButton.tap() + expect(app.gdprPM).toEventually(showUp()) + expect(app.gdprPM.purposeToggles).toEventually(allPass(beToggledOn())) + + app.gdprPM.rejectAllButton.tap() + expect(app.gdprPrivacyManagerButton).toEventually(showUp()) + expect(app.sdkStatusLabel).toEventually(containText("Finished")) + app.gdprPrivacyManagerButton.tap() + expect(app.gdprPM).toEventually(showUp()) + expect(app.gdprPM.purposeToggles).toEventually(allPass(beToggledOff())) } it("Accept all through 2nd layer") { - self.app.relaunch(clean: true, resetAtt: true, args: ["att": false, "ccpa": false, "usnat": false, "preferences": false, "globalcmp": false]) - self.showGDPRPMViaFirstLayerMessage() - self.app.gdprPM.acceptAllButton.tap() - expect(self.app.sdkStatusLabel).toEventually(containText("Finished")) - self.app.relaunch() - expect(self.app.sdkStatusLabel).toEventually(containText("Finished")) + app.relaunch(clean: true, resetAtt: true, args: ["att": false, "ccpa": false, "usnat": false, "preferences": false, "globalcmp": false]) + showGDPRPMViaFirstLayerMessage() + app.gdprPM.acceptAllButton.tap() + expect(app.sdkStatusLabel).toEventually(containText("Finished")) + app.relaunch() + expect(app.sdkStatusLabel).toEventually(containText("Finished")) } it("Dismissing 2nd layer returns to first layer message") { - self.app.relaunch(clean: true, resetAtt: true, args: ["att": false, "ccpa": false, "usnat": false, "preferences": false, "globalcmp": false]) - self.showGDPRPMViaFirstLayerMessage() - self.app.gdprPM.cancelButton.tap() - expect(self.app.gdprMessage.messageTitle).toEventually(showUp()) + app.relaunch(clean: true, resetAtt: true, args: ["att": false, "ccpa": false, "usnat": false, "preferences": false, "globalcmp": false]) + showGDPRPMViaFirstLayerMessage() + app.gdprPM.cancelButton.tap() + expect(app.gdprMessage.messageTitle).toEventually(showUp()) } it("Consenting and Deleting custom vendor persist after relaunch") { - self.app.relaunch(clean: true, resetAtt: true, args: ["att": true, "ccpa": false, "usnat": false, "preferences": false, "globalcmp": false]) - self.runAttScenario() - self.acceptAll(onMessage: self.app.gdprMessage) + app.relaunch(clean: true, resetAtt: true, args: ["att": true, "ccpa": false, "usnat": false, "preferences": false, "globalcmp": false]) + runAttScenario() + acceptAll(onMessage: app.gdprMessage) - expect(self.app.sdkStatusLabel).toEventually(containText("Finished")) - expect(self.app.deleteCustomVendorsButton).toEventually(beEnabled()) - expect(self.app.customVendorLabel).toEventually(containText("Accepted")) - self.app.deleteCustomVendorsButton.tap() - expect(self.app.customVendorLabel).toEventually(containText("Rejected")) + expect(app.sdkStatusLabel).toEventually(containText("Finished")) + expect(app.deleteCustomVendorsButton).toEventually(beEnabled()) + expect(app.customVendorLabel).toEventually(containText("Accepted")) + app.deleteCustomVendorsButton.tap() + expect(app.customVendorLabel).toEventually(containText("Rejected")) - self.app.relaunch(args: ["att": false, "ccpa": false, "usnat": false, "preferences": false, "globalcmp": false]) + app.relaunch(args: ["att": false, "ccpa": false, "usnat": false, "preferences": false, "globalcmp": false]) - expect(self.app.deleteCustomVendorsButton).toEventually(beDisabled()) - expect(self.app.acceptCustomVendorsButton).toEventually(beEnabled()) - expect(self.app.customVendorLabel).toEventually(containText("Rejected")) + expect(app.deleteCustomVendorsButton).toEventually(beDisabled()) + expect(app.acceptCustomVendorsButton).toEventually(beEnabled()) + expect(app.customVendorLabel).toEventually(containText("Rejected")) - self.app.acceptCustomVendorsButton.tap() - expect(self.app.customVendorLabel).toEventually(containText("Accepted")) + app.acceptCustomVendorsButton.tap() + expect(app.customVendorLabel).toEventually(containText("Accepted")) - self.app.relaunch(args: ["att": false, "ccpa": false, "usnat": false, "preferences": false, "globalcmp": false]) + app.relaunch(args: ["att": false, "ccpa": false, "usnat": false, "preferences": false, "globalcmp": false]) - expect(self.app.deleteCustomVendorsButton).toEventually(beEnabled()) - expect(self.app.acceptCustomVendorsButton).toEventually(beDisabled()) - expect(self.app.customVendorLabel).toEventually(containText("Accepted")) + expect(app.deleteCustomVendorsButton).toEventually(beEnabled()) + expect(app.acceptCustomVendorsButton).toEventually(beDisabled()) + expect(app.customVendorLabel).toEventually(containText("Accepted")) } it("Shows a translated message") { - self.app.relaunch(clean: true, resetAtt: false, args: [ + app.relaunch(clean: true, resetAtt: false, args: [ "gdpr": true, "att": false, "ccpa": false, @@ -144,8 +139,8 @@ class SPGDPRExampleAppUITests: QuickSpec { "globalcmp": false, "language": SPMessageLanguage.Spanish.rawValue ]) - expect(self.app.sdkStatusLabel).toEventually(containText("Running")) - expect(self.app.gdprMessage.spanishMessageTitle).toEventually(showUp()) + expect(app.sdkStatusLabel).toEventually(containText("Running")) + expect(app.gdprMessage.spanishMessageTitle).toEventually(showUp()) } } } diff --git a/Example/SourcePointMetaAppUITests/AuthIDUITests.swift b/Example/SourcePointMetaAppUITests/AuthIDUITests.swift index 5e876d850..11204cd73 100644 --- a/Example/SourcePointMetaAppUITests/AuthIDUITests.swift +++ b/Example/SourcePointMetaAppUITests/AuthIDUITests.swift @@ -15,17 +15,17 @@ class AuthIDUITests: QuickSpec { var app: MetaApp! var propertyData = PropertyData() - override func spec() { + override class func spec() { beforeSuite { self.continueAfterFailure = false self.app = MetaApp() - Nimble.AsyncDefaults.timeout = .seconds(20) - Nimble.AsyncDefaults.pollInterval = .milliseconds(100) + Nimble.PollingDefaults.timeout = .seconds(20) + Nimble.PollingDefaults.pollInterval = .milliseconds(100) } afterSuite { - Nimble.AsyncDefaults.timeout = .seconds(1) - Nimble.AsyncDefaults.pollInterval = .milliseconds(10) + Nimble.PollingDefaults.timeout = .seconds(1) + Nimble.PollingDefaults.pollInterval = .milliseconds(10) } beforeEach { diff --git a/Example/SourcePointMetaAppUITests/Helpers/CustomMatchers.swift b/Example/SourcePointMetaAppUITests/Helpers/CustomMatchers.swift index b2b30dca2..0768d1364 100644 --- a/Example/SourcePointMetaAppUITests/Helpers/CustomMatchers.swift +++ b/Example/SourcePointMetaAppUITests/Helpers/CustomMatchers.swift @@ -14,7 +14,7 @@ import Quick public func containText(_ text: String) -> Predicate { return Predicate.simple("contain text") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.label.contains(text)) + return MatcherStatus(bool: actual.label.contains(text)) } } @@ -23,10 +23,10 @@ public func containText(_ text: String) -> Predicate { public func showUp() -> Predicate { return Predicate.simple("show up") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - if let timeout = TimeInterval(dispatchTimeInterval: Nimble.AsyncDefaults.timeout) { - return PredicateStatus(bool: actual.waitForExistence(timeout: timeout)) + if let timeout = TimeInterval(dispatchTimeInterval: Nimble.PollingDefaults.timeout) { + return MatcherStatus(bool: actual.waitForExistence(timeout: timeout)) } - return PredicateStatus(bool: actual.waitForExistence(timeout: 20)) + return MatcherStatus(bool: actual.waitForExistence(timeout: 20)) } } @@ -35,7 +35,7 @@ public func showUp() -> Predicate { public func showUp(in timeout: TimeInterval) -> Predicate { return Predicate.simple("show up") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } - return PredicateStatus(bool: actual.waitForExistence(timeout: timeout)) + return MatcherStatus(bool: actual.waitForExistence(timeout: timeout)) } } @@ -45,11 +45,11 @@ public func disappear() -> Predicate { return Predicate.simple("disappear") { actualExpression in guard let actual = try actualExpression.evaluate() else { return .fail } QuickSpec.current.expectation(for: NSPredicate(format: "exists == FALSE"), evaluatedWith: actual, handler: nil) - if let timeout = TimeInterval(dispatchTimeInterval: Nimble.AsyncDefaults.timeout) { + if let timeout = TimeInterval(dispatchTimeInterval: Nimble.PollingDefaults.timeout) { QuickSpec.current.waitForExpectations(timeout: timeout) - return PredicateStatus(bool: !actual.exists) + return MatcherStatus(bool: !actual.exists) } - return PredicateStatus(bool: actual.waitForExistence(timeout: 20)) + return MatcherStatus(bool: actual.waitForExistence(timeout: 20)) } } diff --git a/Example/SourcePointMetaAppUITests/MetaAppValidationUITests.swift b/Example/SourcePointMetaAppUITests/MetaAppValidationUITests.swift index 7707e3677..fd4b8e3e2 100644 --- a/Example/SourcePointMetaAppUITests/MetaAppValidationUITests.swift +++ b/Example/SourcePointMetaAppUITests/MetaAppValidationUITests.swift @@ -16,17 +16,17 @@ class MetaAppValidationUITests: QuickSpec { var app: MetaApp! var propertyData = PropertyData() - override func spec() { + override class func spec() { beforeSuite { self.continueAfterFailure = false self.app = MetaApp() - Nimble.AsyncDefaults.timeout = .seconds(20) - Nimble.AsyncDefaults.pollInterval = .milliseconds(100) + Nimble.PollingDefaults.timeout = .seconds(20) + Nimble.PollingDefaults.pollInterval = .milliseconds(100) } afterSuite { - Nimble.AsyncDefaults.timeout = .seconds(1) - Nimble.AsyncDefaults.pollInterval = .milliseconds(10) + Nimble.PollingDefaults.timeout = .seconds(1) + Nimble.PollingDefaults.pollInterval = .milliseconds(10) } beforeEach { diff --git a/Example/SourcePointMetaAppUITests/PMAsFirstLayerMessageUITests.swift b/Example/SourcePointMetaAppUITests/PMAsFirstLayerMessageUITests.swift index 9fd6715be..93a42ff08 100644 --- a/Example/SourcePointMetaAppUITests/PMAsFirstLayerMessageUITests.swift +++ b/Example/SourcePointMetaAppUITests/PMAsFirstLayerMessageUITests.swift @@ -15,17 +15,17 @@ class PMAsFirstLayerMessageUITests: QuickSpec { var app: MetaApp! var propertyData = PropertyData() - override func spec() { + override class func spec() { beforeSuite { self.continueAfterFailure = false self.app = MetaApp() - Nimble.AsyncDefaults.timeout = .seconds(20) - Nimble.AsyncDefaults.pollInterval = .milliseconds(100) + Nimble.PollingDefaults.timeout = .seconds(20) + Nimble.PollingDefaults.pollInterval = .milliseconds(100) } afterSuite { - Nimble.AsyncDefaults.timeout = .seconds(1) - Nimble.AsyncDefaults.pollInterval = .milliseconds(10) + Nimble.PollingDefaults.timeout = .seconds(1) + Nimble.PollingDefaults.pollInterval = .milliseconds(10) } beforeEach { diff --git a/Example/SourcePointMetaAppUITests/PrivacyManagerUITests.swift b/Example/SourcePointMetaAppUITests/PrivacyManagerUITests.swift index 89d012b6b..4ceeb90f0 100644 --- a/Example/SourcePointMetaAppUITests/PrivacyManagerUITests.swift +++ b/Example/SourcePointMetaAppUITests/PrivacyManagerUITests.swift @@ -15,17 +15,17 @@ class PrivacyManagerUITests: QuickSpec { var app: MetaApp! var propertyData = PropertyData() - override func spec() { + override class func spec() { beforeSuite { self.continueAfterFailure = false self.app = MetaApp() - Nimble.AsyncDefaults.timeout = .seconds(20) - Nimble.AsyncDefaults.pollInterval = .milliseconds(100) + Nimble.PollingDefaults.timeout = .seconds(20) + Nimble.PollingDefaults.pollInterval = .milliseconds(100) } afterSuite { - Nimble.AsyncDefaults.timeout = .seconds(1) - Nimble.AsyncDefaults.pollInterval = .milliseconds(10) + Nimble.PollingDefaults.timeout = .seconds(1) + Nimble.PollingDefaults.pollInterval = .milliseconds(10) } beforeEach { diff --git a/Example/SourcePointMetaAppUITests/SourcePointMetaAppUITests.swift b/Example/SourcePointMetaAppUITests/SourcePointMetaAppUITests.swift index a8e4a5521..54504260d 100644 --- a/Example/SourcePointMetaAppUITests/SourcePointMetaAppUITests.swift +++ b/Example/SourcePointMetaAppUITests/SourcePointMetaAppUITests.swift @@ -15,17 +15,17 @@ class SourcePointMetaAppUITests: QuickSpec { var app: MetaApp! var propertyData = PropertyData() - override func spec() { + override class func spec() { beforeSuite { self.continueAfterFailure = false self.app = MetaApp() - Nimble.AsyncDefaults.timeout = .seconds(20) - Nimble.AsyncDefaults.pollInterval = .milliseconds(100) + Nimble.PollingDefaults.timeout = .seconds(20) + Nimble.PollingDefaults.pollInterval = .milliseconds(100) } afterSuite { - Nimble.AsyncDefaults.timeout = .seconds(1) - Nimble.AsyncDefaults.pollInterval = .milliseconds(10) + Nimble.PollingDefaults.timeout = .seconds(1) + Nimble.PollingDefaults.pollInterval = .milliseconds(10) } beforeEach { diff --git a/Example/TVOSExampleAppUITests/NativePMUITests.swift b/Example/TVOSExampleAppUITests/NativePMUITests.swift index 78f24d500..4a044038d 100644 --- a/Example/TVOSExampleAppUITests/NativePMUITests.swift +++ b/Example/TVOSExampleAppUITests/NativePMUITests.swift @@ -24,10 +24,11 @@ extension XCUIElement { class NativePMUITests: QuickSpec { static var app: NativePMApp! static var timeout = 20 - static var gdprCategoriesCount = 12 + static var gdprCategoriesCount = 11 static var ccpaCategoriesCount = 3 - static var gdprCategoriePlusSpecialFeatures = 12 + static var gdprCategoriePlusSpecialFeatures = 11 static var gdprDefaultOnCategories = 3 + static var gdprDefaultLegIntOnCategories = 1 static var gdprVendors = 4 override func setUp() { @@ -207,7 +208,7 @@ class NativePMUITests: QuickSpec { app.backToHomeButton() app.homeButton.remotePress() app.ourPartnersButton.remotePress() - checkForAllVendors(on: app.gdprMessage, shouldBe: "On", totalVendors: 3) + checkForAllVendors(on: app.gdprMessage, shouldBe: "On", totalVendors: 4) remote.press(.down) remote.press(.down) app.saveAndExitInternalButton.remotePress() @@ -228,7 +229,7 @@ class NativePMUITests: QuickSpec { checkForAllCategories(on: app.gdprMessage, shouldBe: "On", totalCategories: 0) remote.press(.right) remote.press(.right) - checkForAllCategories(on: app.gdprMessage, shouldBe: "On", totalCategories: gdprDefaultOnCategories) + checkForAllCategories(on: app.gdprMessage, shouldBe: "On", totalCategories: gdprDefaultLegIntOnCategories) app.backToHomeButton() app.homeButton.remotePress() app.ourPartnersButton.remotePress() @@ -246,7 +247,7 @@ class NativePMUITests: QuickSpec { checkForAllCategories(on: app.gdprMessage, shouldBe: "On", totalCategories: 0) remote.press(.right) remote.press(.right) - checkForAllCategories(on: app.gdprMessage, shouldBe: "On", totalCategories: gdprDefaultOnCategories) + checkForAllCategories(on: app.gdprMessage, shouldBe: "On", totalCategories: gdprDefaultLegIntOnCategories) app.backToHomeButton() app.homeButton.remotePress() app.ourPartnersButton.remotePress() From fc7b0a2a3cd747153298c54075a6f8c1ede2a8b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Herculano?= <228650+andresilveirah@users.noreply.github.com> Date: Tue, 12 May 2026 14:22:17 +0200 Subject: [PATCH 11/13] improve GenericWebview spec attempting to solve flakiness --- .../GenericWebMessageViewControllerSpec.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Example/ConsentViewController_ExampleTests/GenericWebMessageViewControllerSpec.swift b/Example/ConsentViewController_ExampleTests/GenericWebMessageViewControllerSpec.swift index 90482bb30..9a8f6d54b 100644 --- a/Example/ConsentViewController_ExampleTests/GenericWebMessageViewControllerSpec.swift +++ b/Example/ConsentViewController_ExampleTests/GenericWebMessageViewControllerSpec.swift @@ -36,7 +36,7 @@ func renderingAppMock(messageReadyDelayInSeconds: Int) -> String { class FaultyRenderingAppMock: WKWebView { override func load(_ request: URLRequest) -> WKNavigation? { loadHTMLString( - renderingAppMock(messageReadyDelayInSeconds: 7), + renderingAppMock(messageReadyDelayInSeconds: 3), baseURL: URL(string: "https://example.com")! ) } @@ -45,7 +45,7 @@ class FaultyRenderingAppMock: WKWebView { class RenderingAppMock: WKWebView { override func load(_ request: URLRequest) -> WKNavigation? { loadHTMLString( - renderingAppMock(messageReadyDelayInSeconds: 2), + renderingAppMock(messageReadyDelayInSeconds: 1), baseURL: URL(string: "https://example.com")! ) } @@ -77,7 +77,7 @@ func loadMessage( messageId: "", contents: Data(), campaignType: campaignType, - timeout: 5.0, + timeout: 2.0, delegate: delegate, consentUUID: uuid ) @@ -95,7 +95,7 @@ class GenericWebMessageViewControllerSpec: QuickSpec { it("calls loaded when the rendering app dispatches a sp.showMessage event") { loadMessage(with: RenderingAppMock.self, delegate: delegate) - after(.seconds(6)) { + after(.seconds(3)) { expect(delegate.loadedWasCalled).to(beTrue()) expect(delegate.onErrorWasCalled).to(beFalse()) } @@ -103,7 +103,7 @@ class GenericWebMessageViewControllerSpec: QuickSpec { it("calls onError if .loaded() is not called on the delegate before the timeout") { loadMessage(with: FaultyRenderingAppMock.self, delegate: delegate) - after(.seconds(6)) { + after(.seconds(3)) { expect(delegate.loadedWasCalled).to(beFalse()) expect(delegate.onErrorWasCalled).to(beTrue()) } From 40f57ab1cc04ce1d57de9d6034d6198204c5f318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Herculano?= <228650+andresilveirah@users.noreply.github.com> Date: Tue, 12 May 2026 15:07:15 +0200 Subject: [PATCH 12/13] improve GenericWebview spec attempting to solve flakiness --- .../GenericWebMessageViewControllerSpec.swift | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Example/ConsentViewController_ExampleTests/GenericWebMessageViewControllerSpec.swift b/Example/ConsentViewController_ExampleTests/GenericWebMessageViewControllerSpec.swift index 9a8f6d54b..28d1cee0d 100644 --- a/Example/ConsentViewController_ExampleTests/GenericWebMessageViewControllerSpec.swift +++ b/Example/ConsentViewController_ExampleTests/GenericWebMessageViewControllerSpec.swift @@ -36,7 +36,7 @@ func renderingAppMock(messageReadyDelayInSeconds: Int) -> String { class FaultyRenderingAppMock: WKWebView { override func load(_ request: URLRequest) -> WKNavigation? { loadHTMLString( - renderingAppMock(messageReadyDelayInSeconds: 3), + renderingAppMock(messageReadyDelayInSeconds: 5), baseURL: URL(string: "https://example.com")! ) } @@ -77,7 +77,7 @@ func loadMessage( messageId: "", contents: Data(), campaignType: campaignType, - timeout: 2.0, + timeout: 3.0, delegate: delegate, consentUUID: uuid ) @@ -103,7 +103,7 @@ class GenericWebMessageViewControllerSpec: QuickSpec { it("calls onError if .loaded() is not called on the delegate before the timeout") { loadMessage(with: FaultyRenderingAppMock.self, delegate: delegate) - after(.seconds(3)) { + after(.seconds(4)) { expect(delegate.loadedWasCalled).to(beFalse()) expect(delegate.onErrorWasCalled).to(beTrue()) } @@ -121,8 +121,10 @@ class GenericWebMessageViewControllerSpec: QuickSpec { campaignType: .gdpr, uuid: "abc" ) - expect(delegate.actionCalledWith?.pmURL) - .toEventually(containQueryParam("consentUUID", withValue: "abc")) + after(.seconds(4)) { + expect(delegate.actionCalledWith?.pmURL) + .to(containQueryParam("consentUUID", withValue: "abc")) + } } } @@ -137,8 +139,10 @@ class GenericWebMessageViewControllerSpec: QuickSpec { campaignType: .ccpa, uuid: "abc" ) - expect(delegate.actionCalledWith?.pmURL) - .toEventually(containQueryParam("ccpaUUID", withValue: "abc")) + after(.seconds(4)) { + expect(delegate.actionCalledWith?.pmURL) + .to(containQueryParam("ccpaUUID", withValue: "abc")) + } } } } From 810f2d987a737e1c7fa42e431d3420ca28bfd6c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Herculano?= <228650+andresilveirah@users.noreply.github.com> Date: Tue, 12 May 2026 15:47:14 +0200 Subject: [PATCH 13/13] update GenericWebViewSpec to use .toEventually --- .../GenericWebMessageViewControllerSpec.swift | 33 ++++++++----------- 1 file changed, 13 insertions(+), 20 deletions(-) diff --git a/Example/ConsentViewController_ExampleTests/GenericWebMessageViewControllerSpec.swift b/Example/ConsentViewController_ExampleTests/GenericWebMessageViewControllerSpec.swift index 28d1cee0d..f63dda709 100644 --- a/Example/ConsentViewController_ExampleTests/GenericWebMessageViewControllerSpec.swift +++ b/Example/ConsentViewController_ExampleTests/GenericWebMessageViewControllerSpec.swift @@ -21,7 +21,7 @@ func renderingAppMock(messageReadyDelayInSeconds: Int) -> String {